html {
    scroll-behavior: smooth;
}

/* Global Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif !important;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    direction: rtl;
    text-align: right;


}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*=====================Start progress-bar-container===========الخط=====#=====*/
/* حاوية شريط التقدم مع خلفية شفافة */
#progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #0056D2, #0099ff);
    box-shadow: 0 2px 5px rgba(0, 86, 210, 0.4);
    transition: width 0.2s ease-out;
    border-radius: 2px;
}

@media (max-width: 1199.98px) {
    #progress-bar-container {
        height: 2px;
    }
}

/*=====================End progress-bar-container=====================*/
/*=====================Start Nav============ناف بار====#=====*/
.navbar {
    padding: 8px 0;
    background-color: #ffffff !important;
    top: 0px;
    height: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.navbar.scrolled {
    top: 0px !important;
    padding: 11px 0;
    width: 100% !important;
    border-radius: 0;
    box-shadow: 1px 4px 10px #0f11140f;
    transition: all 0.4s ease-in-out;
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 0px solid #0058d200 !important;
}

.navbar.scrolled .dropdown-menu {
    margin-top: 26px !important;
}

.navbar-brand {
    margin: 0;
    padding: 3px 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-width: 52px;
    height: auto;
    display: inline-block;
    margin-right: 20px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #00000000 !important;
}

.logo-box {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/*--------start custom-toggler----همبرجر-#--*/
/* إزالة الخلفية والحدود والظل تمامًا */
.custom-toggler {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
    color: #0056d2 !important;
}

/* إزالة أي تأثير عند التركيز */
.custom-toggler:focus,
.custom-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.custom-toggler i {
    font-size: 24px;
    color: #0056D2 !important;
    transition: color 0.3s ease-in-out;
}

.custom-toggler:hover i {
    color: #0056d2 !important;
}

/* إضافة تأثير انزلاق سلس للقائمة */
.navbar-collapse {
    transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* عند فتح القائمة، تظهر بسلاسة */
.collapse.show {
    display: block;
    opacity: 1;
}

/*--------start Navbar Content ----لينكات-#--*/
.navbar .nav-link {
    color: #0f1114;
    font-size: 18px !important;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    list-style-type: none;
    text-align: center;
    display: inline-block;
    border-radius: 8px;
    margin: 7px;
    transition: all 0.2s ease-in-out;
    padding: 2px 2px;
}

.navbar .nav-link:hover {
    background-color: #e1efff;
    color: #0056D2;
    box-shadow: 0 4px 6px #3489f844;
    transform: scale(1.08);
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link.active {
    font-size: 18px !important;
    font-weight: bold;
    background: #0056D2;
    color: #ffffff !important;
    text-align: center;
    justify-content: center;
    max-width: 100%;
}

/* --------.navbar-nav .nav-link.active ---- */
.dropdown-menu {
    text-align: right !important;
    border: 1px solid #0056D2;
    border-radius: 12px;
    padding: 10px;
    background: #ffffff;
    min-width: 200px;
    color: #0F1114;
    margin-top: 25px !important;
    pointer-events: none;
    opacity: 0;
    box-shadow: 1px 4px 10px #0f11141d;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;

}

/* تصميم العناصر داخل القائمة */
.dropdown-item {
    font-size: 18px !important;
    color: #0F1114 !important;
    font-weight: 400;

}

.dropdown-menu {
    animation: fadeIn 0.4s ease-in-out;

}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item:hover {
    background: #e1efff;
    border-radius: 8px;
    color: #0056D2 !important;
}

#servicesMenu .active {
    font-weight: 550 !important;
    background: #0056D2;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 18px !important;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    /* تأثير السلاسة */
}

/* تصميم الفاصل (divider) */
#servicesMenu .dropdown-divider {
    border-top: 1px solid #0056D2;
    /* لون الخط */
}

.nav-item.dropdown.show .dropdown-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-icon {
    font-size: 14px;
    margin-right: 5px;
    transition: transform 0.3s ease-in-out;
    color: #0F1114;
}


/* إخفاء سهم Bootstrap الافتراضي */
.custom-dropdown-toggle::after {
    display: none !important;
}

/* قلب السهم للأعلى عند فتح القائمة */
.nav-item.dropdown .custom-dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
    color: #0056d2;
}

/* تحسين حركة السهم عند الفتح والإغلاق */
.custom-dropdown-toggle .dropdown-icon {
    transition: transform 0.3s ease-in-out;
}


/*--------start .btn-success ----واتس اب-#-*/
/* تحسين زر واتساب داخل القائمة في الشاشات الصغيرة */
.navbar-nav .btn-success {
    display: block !important;
    width: 90% !important;
    margin: 15px auto;
    font-size: 16px !important;
    padding: 12px !important;
    border-radius: 8px !important;
    text-align: center;
    background-color: #0056D2 !important;

}

.nav-item.dropdown.show .dropdown-menu {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* تحسين التأثير عند التمرير */
.navbar-nav .btn-success:hover {
    background-color: #0056D2 !important;
    /* لون أخضر أغمق عند التحويم */
    transform: scale(1.0);
    /* تكبير بسيط عند التمرير */
    transition: all 0.3s ease-in-out;
}

/* تحسين زر واتساب داخل الـ Navbar في الشاشات الكبيرة */
.whatsapp-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    border-radius: 8px;
    /* جعل الزر أكثر نعومة */
    transition: all 0.3s ease-in-out;
    background-color: #0056D2 !important;
    /* لون أخضر أغمق عند التحويم */

}

/* تحسين الرابط داخل الزر */
.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    background-color: #0056D2 !important;
    border: none;

}

/* تحسين الأيقونة داخل الزر */
.whatsapp-button a i {
    font-size: 20px;
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

/* تحسين التأثير عند التحويم */
.whatsapp-button:hover {
    background-color: #0056D2 !important;
}

.whatsapp-button a:hover {
    animation: pulse 0.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: 4px 0;
        top: 0px;
        height: auto;
        width: auto;
        border-radius: 0px;
        border: 0px solid #0058d200;
        box-shadow: 1px 4px 10px #0f111406;

    }

    .navbar.scrolled {
        padding: 7px 0;
    }

    .navbar-brand img {
        max-width: 48px;

    }

    .custom-toggler {
        margin-left: 20px;
    }

    .custom-toggler i {
        font-size: 25px;

    }

    /*--------start Navbar Content ----لينكات-#--*/
    .navbar-nav {
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: inline-block;
        width: auto;
        text-align: center;
    }

    .navbar .nav-link {
        font-size: 16px !important;
        padding: 4px 2px;
        width: 60%;
    }


    .navbar-nav .nav-link.active {
        font-size: 16px !important;
    }

    .dropdown-menu {
        width: 80% !important;
        /* تصغير العرض */
        max-width: 350px !important;
        /* تحديد الحد الأقصى */
        margin: 0 auto !important;
        /* توسيط أفقياً */
        right: 0 !important;
        /* إلغاء انزياح */
        left: 0 !important;
        /* توسيط تام */
        transform: translateX(0%) !important;
        /* إلغاء أي ترجمة */
        text-align: center !important;
        /* توسيط النص */
    }

    .dropdown-menu .dropdown-item {
        text-align: center !important;
    }

    /* تصميم العناصر داخل القائمة */
    .dropdown-item {
        font-size: 16px !important;

    }

    .dropdown-item:hover {
        background: #e1efff;
        border-radius: 6px;
        color: #0056D2 !important;
    }

    #servicesMenu .active {
        font-size: 16px !important;

    }

    /* تصميم الفاصل (divider) */
    #servicesMenu .dropdown-divider {
        border-top: 1px solid #0056D2;
        /* لون الخط */
    }

    /*--------start .btn-success ----واتس اب-#-*/
    /* تحسين زر واتساب داخل القائمة في الشاشات الصغيرة */
    .navbar-nav .btn-success {
        width: 60% !important;
        margin: 15px auto;
        font-size: 16px !important;
        padding: 6px !important;

    }


}

/* Small devices (موبايل عادي من 576px إلى 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {

    .navbar {
        padding: 4px 0;
        top: 0px;
        height: auto;
        width: auto;
        border-radius: 0px;
        border: 0px solid #0058d200;
        box-shadow: 1px 4px 10px #0f111406;

    }

    .navbar.scrolled {
        padding: 7px 0;
    }

    .navbar-brand img {
        max-width: 48px;

    }

    .custom-toggler {
        margin-left: 0px;
    }

    .custom-toggler i {
        font-size: 25px;

    }

    /*--------start Navbar Content ----لينكات-#--*/
    .navbar-nav {
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: inline-block;
        width: auto;
        text-align: center;
    }

    .navbar .nav-link {
        font-size: 16px !important;
        padding: 4px 2px;
        width: 70%;
    }


    .navbar-nav .nav-link.active {
        font-size: 16px !important;
    }

    .dropdown-menu {
        width: 85% !important;
        /* تصغير العرض */
        max-width: 400px !important;
        /* تحديد الحد الأقصى */
        margin: 0 auto !important;
        /* توسيط أفقياً */
        right: 0 !important;
        /* إلغاء انزياح */
        left: 0 !important;
        /* توسيط تام */
        transform: translateX(0%) !important;
        /* إلغاء أي ترجمة */
        text-align: center !important;
        /* توسيط النص */
    }

    .dropdown-menu .dropdown-item {
        text-align: center !important;
    }

    /* تصميم العناصر داخل القائمة */
    .dropdown-item {
        font-size: 16px !important;

    }

    .dropdown-item:hover {
        background: #e1efff;
        border-radius: 6px;
        color: #0056D2 !important;
    }

    #servicesMenu .active {
        font-size: 16px !important;

    }

    /* تصميم الفاصل (divider) */
    #servicesMenu .dropdown-divider {
        border-top: 1px solid #0056D2;
        /* لون الخط */
    }

    /*--------start .btn-success ----واتس اب-#-*/
    /* تحسين زر واتساب داخل القائمة في الشاشات الصغيرة */
    .navbar-nav .btn-success {
        width: 70% !important;
        margin: 15px auto;
        font-size: 16px !important;
        padding: 6px !important;

    }

}

/* Medium devices (تابلت أفقي أو أجهزة 768px إلى 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    .navbar {
        padding: 4px 0;
        top: 0px;
        height: auto;
        width: auto;
        border-radius: 0px;
        border: 0px solid #0058d200;
        box-shadow: 1px 4px 10px #0f111406;

    }

    .navbar.scrolled {
        padding: 7px 0;
    }

    .navbar-brand img {
        max-width: 48px;

    }

    .custom-toggler {
        margin-left: 0px;
    }

    .custom-toggler i {
        font-size: 25px;

    }

    /*--------start Navbar Content ----لينكات-#--*/
    .navbar-nav {
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: inline-block;
        width: auto;
        text-align: center;
    }

    .navbar .nav-link {
        font-size: 16px !important;
        padding: 4px 2px;
        width: 80%;
    }


    .navbar-nav .nav-link.active {
        font-size: 16px !important;
    }

    .dropdown-menu {
        width: 90% !important;
        /* تصغير العرض */
        max-width: 450px !important;
        /* تحديد الحد الأقصى */
        margin: 0 auto !important;
        /* توسيط أفقياً */
        right: 0 !important;
        /* إلغاء انزياح */
        left: 0 !important;
        /* توسيط تام */
        transform: translateX(0%) !important;
        /* إلغاء أي ترجمة */
        text-align: center !important;
        /* توسيط النص */
    }

    .dropdown-menu .dropdown-item {
        text-align: center !important;
    }

    /* تصميم العناصر داخل القائمة */
    .dropdown-item {
        font-size: 16px !important;

    }

    .dropdown-item:hover {
        background: #e1efff;
        border-radius: 6px;
        color: #0056D2 !important;
    }

    #servicesMenu .active {
        font-size: 16px !important;

    }

    /* تصميم الفاصل (divider) */
    #servicesMenu .dropdown-divider {
        border-top: 1px solid #0056D2;
        /* لون الخط */
    }

    /*--------start .btn-success ----واتس اب-#-*/
    /* تحسين زر واتساب داخل القائمة في الشاشات الصغيرة */
    .navbar-nav .btn-success {
        width: 80% !important;
        margin: 15px auto;
        font-size: 16px !important;
        padding: 6px !important;

    }

    .navbar-brand img {
        max-width: 52px;
        height: auto;
        display: inline-block;
        margin-right: 0px;
    }

}

/* Large devices (شاشات لابتوب صغيرة من 992px إلى 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .navbar {
        top: 0px;
        height: auto;
        width: auto;
        border-radius: 0px;
        border: 0px solid #0058d200;
        box-shadow: 1px 4px 10px #0f111406;

    }

    .navbar-brand img {
        max-width: 52px;
        height: auto;
        display: inline-block;
        margin-right: 0px;
    }

}

@media (max-width: 575.98px) {}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}

/* Extra Large devices (لابتوب كبير أو شاشات أكبر من 1200px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* Extra Extra Large devices (شاشات ضخمة أكبر من 1400px) */
@media (min-width: 1400px) {}

/*===================== Start breadcrumb=====================*/
.breadcrumb-section {
    background-color: #e1efff !important;
    padding: 30px 0 !important;
    margin-top: 70px !important;
    position: relative;
    z-index: 1;
}

.breadcrumb-logo {
    max-width: 120px;
    margin-left: 22px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #0F1114 !important;
    text-decoration: none;
    font-weight: 550;
    font-size: 17px;
}

.breadcrumb-item a:hover {
    color: #0056D2 !important;
}

.breadcrumb-item.active {
    color: #0056D2;
    font-weight: 450;
    font-size: 17px;
}

.breadcrumb-title {
    font-size: 34px;
    font-weight: 450 !important;
    color: #0F1114;
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 380px) {
    .breadcrumb-section {
        padding: 60px 0;
    }

    .breadcrumb-logo {
        display: none;
    }

    .breadcrumb-title {
        font-size: 35px;
    }

}

@media (max-width: 575.98px) {

    .breadcrumb-logo {
        max-width: 100px;
        margin-left: 0px;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (min-width: 1200px) and (max-width: 1599.98px) {}

@media (min-width: 1600px) {}

@media (max-width: 1300px) {}

@media (max-width: 1100px) {}

@media (max-width: 900px) {}

@media (max-width: 850px) and (orientation: landscape) {}

/*===================== End breadcrumb=====================*/

/*===================== Start FAQ Section =====================*/
#faq {
    padding: 40px 0 !important;
    background-color: #ffffff !important;
    margin-top: 20px !important;
}

#faq h2 {
    font-size: 30px !important;
    font-weight: 450 !important;
    color: #0F1114 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#faq i {
    font-size: 30px !important;
    color: #0056D2 !important;
    margin-left: 10px;
    vertical-align: middle !important;

}

#faq .text-center {
    align-items: center;
    margin: 0 auto 30px;
}


.accordion {
    max-width: 90%;
    margin: auto;

}

/* تنسيق كل عنصر في القائمة */
.accordion-item {
    border: none;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;

}

/* زر السؤال */
.accordion-button {
    font-size: 18.5px !important;
    font-weight: 450px !important;
    color: #0F1114;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}

/* تغيير لون السؤال عند التحويم */
.accordion-button:hover {
    background-color: #ffffff;
    color: #0056D2;
}

/* تغيير لون الخلفية عند الفتح */
.accordion-button:not(.collapsed) {
    background-color: #0056D2 !important;
    color: white;
    box-shadow: none;
}

/* تصميم الإجابة */
.accordion-body {
    font-size: 17px;
    color: #0F1114;
    padding: 15px;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
    transition: all 0.5s ease-in-out;

}

/* عند فتح السؤال، تدور الأيقونة */
.accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* تأثير فتح وإغلاق الإجابة بسلاسة */
.accordion-collapse {
    transition: height 0.5s ease-in-out;
}

/* إزالة الظل والإطار عند فتح السؤال */
.accordion-button {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

/* عند الفتح */
.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

/* إزالة الإطار الأزرق عند التحديد بالفأرة */
.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* تنسيق العنصر بشكل عام بدون ظل */
.accordion-item {
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 575.98px) {

    /*===================== Start FAQ Section =====================*/
    #faq {
        padding: 35px 0 !important;


    }

    #faq h2 {
        font-size: 28px !important;

    }

    #faq i {
        font-size: 28px !important;


    }



    .accordion {
        max-width: 80%;
        margin: auto;

    }



    /* زر السؤال */
    .accordion-button {
        font-size: 18px !important;

    }

    /* تغيير لون السؤال عند التحويم */
    .accordion-button:hover {
        background-color: #ffffff;

    }

    /* تصميم الإجابة */
    .accordion-body {
        font-size: 17px;


    }


}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}

/* Extra Large devices (لابتوب كبير أو شاشات أكبر من 1200px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* Extra Extra Large devices (شاشات ضخمة أكبر من 1400px) */
@media (min-width: 1400px) {}

/*=====================  End FAQ Section =====================*/
/***************************policy-bar*********************************************/
/* تنسيق عام لقسم السياسات */
.policy-bar {
    background-color: #e1efff !important;
    font-size: 18px !important;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* تنسيق الروابط داخل القسم */
.policy-bar a {
    color: #0F1114 !important;
    transition: color 0.3s ease;
}

.policy-bar a:hover {
    color: #0056D2 !important;
    text-decoration: underline;
}

/* تنسيق استجابة على الشاشات الصغيرة */
@media (max-width: 767.98px) {
    .policy-bar .row {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .policy-bar .col-md-auto {
        margin-bottom: 10px;
    }

    .policy-bar a {
        display: inline-block;
        margin: 5px 6px;
    }
}

/*===================== Start footer-section ===========الفوتر==========*/
.footer-section {
    background-color: #f2f5fa !important;
    padding: 40px 0;
    border-top: 1px solid #f2f5fa;
    font-size: 18px;
    line-height: 1.5;

}

.footer-section h5 {
    color: #0056D2 !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section span,
.footer-section li,
.footer-section a {
    font-size: 18px;
    transition: color 0.3s ease;
}

.psmall {
    font-size: 18px !important;
    color: #0F1114;
    line-height: 1.4;

}

.footer-section ul {
    padding: 0;
    margin: 0;
    color: #262626;
    font-size: 18px !important;
    margin-top: 15px !important;
}

.footer-section ul li {
    list-style: none;
    gap: 8px;
    /* مسافة بين الأيقونة والنص */
}

.footer-section ul li i {
    font-size: 18px !important;
    color: #0056D2 !important;
    margin-left: 10px !important;
}

/* تنسيق زر واتساب ليبقى بنفس الحجم والتنسيق */
.whatsapp-link {
    color: inherit;
    /* يجعل لون النص متوافقًا مع باقي العناصر */
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px !important;
    /* توحيد حجم الأيقونة */
    text-decoration: none !important;
}

.whatsapp-link i {
    font-size: 18px !important;
    /* توحيد حجم الأيقونة */
    text-decoration: none !important;
}

.whatsapp-link:hover {
    color: #0056D2 !important;
    /* تغيير اللون عند التحويم ليكون بنفس لون واتساب */
}

.copy-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease-in-out;
}

.copy-item:hover {
    color: #0056D2;
}


.copy-icon {
    font-size: 16px;
    color: #888;
    transition: color 0.3s ease-in-out;
}

.copy-item:hover .copy-icon {
    color: #0056D2;
}

/* تنسيق الروابط السريعة */
/* تغيير لون النصوص داخل الروابط السريعة إلى الأسود */
.quick-links a {
    color: #0F1114 !important;
    font-size: 18px !important;
    transition: 0.3s;
    text-decoration: none !important;
    list-style-type: none;
}

.quick-links a:hover {
    color: #0056D2 !important;
    /* لون ذهبي عند التحويم */
    text-decoration: underline;
}


/* تنسيق أيقونات وسائل التواصل الاجتماعي */
.social-iconss a {
    font-size: 27px;
    color: #0056D2;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.social-iconss a:hover {
    color: #0F1114;
    transform: scale(1.2);

}

.footer-section .small {
    font-size: 18px;
}

/* ===== تنسيق الحقوق والنشر ==== */
.bg-black {
    background-color: #e1efff !important;
    padding: 5px 0;

}

.bg-black p {
    font-size: 18px;
    color: #0F1114;
}

.brand-name {
    color: #0056D2;
    font-weight: bold;

}

.custom-tooltip {
    position: absolute;
    top: -35px;
    right: 50%;
    transform: translateX(50%);
    background-color: #0056D2;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 999;
    opacity: 0;
    animation: fadeInOut 1s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(50%) translateY(5px);
    }

    20% {
        opacity: 1;
        transform: translateX(50%) translateY(0);
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(50%) translateY(-5px);
    }
}

@media (max-width: 357px) {
    .payment-icons img {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .policy-bar {
        font-size: 17px !important;

    }

    .footer-section {
        font-size: 17px;


    }


    .footer-section h5 {

        font-size: 22px !important;

    }

    .footer-section p,
    .footer-section span,
    .footer-section li,
    .footer-section a {
        font-size: 17px;

    }

    .psmall {
        font-size: 17px !important;


    }

    .footer-section ul {

        font-size: 17px !important;

    }



    .footer-section ul li i {
        font-size: 17px !important;

    }

    /* تنسيق زر واتساب ليبقى بنفس الحجم والتنسيق */
    .whatsapp-link {

        font-size: 17px !important;

    }

    .whatsapp-link i {
        font-size: 17px !important;

    }

    .copy-icon {
        font-size: 15px;

    }



    /* تنسيق الروابط السريعة */
    /* تغيير لون النصوص داخل الروابط السريعة إلى الأسود */
    .quick-links a {

        font-size: 17px !important;

    }

    /* تنسيق أيقونات وسائل التواصل الاجتماعي */
    .social-iconss a {
        font-size: 25px;

    }

    .footer-section .small {
        font-size: 17px;
    }



    .bg-black p {
        font-size: 17px;
        color: #0F1114;
    }



    .custom-tooltip {

        font-size: 13px;

    }


}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}

/* Extra Large devices (لابتوب كبير أو شاشات أكبر من 1200px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* Extra Extra Large devices (شاشات ضخمة أكبر من 1400px) */
@media (min-width: 1400px) {}

/*===================== start whatsapp ===================== */
.btn-whatsapp {
    position: fixed;
    bottom: 70px;
    /* المسافة من أسفل الصفحة */
    right: 15px;
    /* المسافة من يمين الصفحة */
    z-index: 1000;
    width: 65px;
    /* عرض الزر */
    height: 65px;
    /* ارتفاع الزر */
    border-radius: 50%;
    /* يجعل الزر دائرياً */
    background-color: #25d366;

    /* ظل خفيف */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: jump 2s infinite;
    /* تأثير النبض والقفز */
    z-index: 1000;
}

.btn-whatsapp,
.btn-whatsapp:hover,
.btn-whatsapp:focus,
.btn-whatsapp:active,
.btn-whatsapp img,
.btn-whatsapp img:hover,
.btn-whatsapp img:focus,
.btn-whatsapp img:active {
    box-shadow: none !important;
    outline: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    border: none !important;
    transition: none !important;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    /* تكبير الزر عند التمرير */
}

.btn-whatsapp img {
    width: 100px;
    /* عرض أيقونة واتساب */
    height: 100px;
    /* ارتفاع أيقونة واتساب */
}

/* تأثير القفز */
@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
        /* الموضع الطبيعي */
    }

    50% {
        transform: translateY(-10px);
        /* قفزة صغيرة */
    }
}

@media (max-width: 768px) {
    .btn-whatsapp {
        position: fixed;
        bottom: 70px;
        /* المسافة من أسفل الصفحة */
        right: 15px;
        /* المسافة من يمين الصفحة */
        z-index: 1000;
        width: 55px;
        /* عرض الزر */
        height: 55px;
        /* ارتفاع الزر */
        border-radius: 50%;
        /* يجعل الزر دائرياً */
        background-color: #25d366;
        /* لون خلفية واتساب */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* ظل خفيف */
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.3s ease;
        transition: transform 0.3s ease, opacity 0.3s ease;
        animation: jump 2s infinite;
        /* تأثير النبض والقفز */
        z-index: 1000;
    }

    .btn-whatsapp:hover {
        transform: scale(1.1);
        /* تكبير الزر عند التمرير */
    }

    .btn-whatsapp img {
        width: 80px;
        /* عرض أيقونة واتساب */
        height: 80px;
        /* ارتفاع أيقونة واتساب */
    }
}

@media (max-width: 480px) {
    .btn-whatsapp {
        position: fixed;
        bottom: 70px;
        /* المسافة من أسفل الصفحة */
        right: 15px;
        /* المسافة من يمين الصفحة */
        z-index: 1000;
        width: 55px;
        /* عرض الزر */
        height: 55px;
        /* ارتفاع الزر */
        border-radius: 50%;
        /* يجعل الزر دائرياً */
        background-color: #25d366;
        /* لون خلفية واتساب */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* ظل خفيف */
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.3s ease;
        transition: transform 0.3s ease, opacity 0.3s ease;
        animation: jump 2s infinite;
        /* تأثير النبض والقفز */
        z-index: 1000;
    }

    .btn-whatsapp:hover {
        transform: scale(1.1);
        /* تكبير الزر عند التمرير */
    }

    .btn-whatsapp img {
        width: 80px;
        /* عرض أيقونة واتساب */
        height: 80px;
        /* ارتفاع أيقونة واتساب */
    }
}

/*===================== End whatsapp ===================== */
/*===================== Start webkit-scrollbar ===================== */
::-webkit-scrollbar {
    width: 8px;
    /* عرض الشريط */
    height: auto;
    /* ارتفاع الشريط إذا كان أفقيًا */
}

::-webkit-scrollbar-track {
    background: #ffffff;
    /* لون المسار */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #0056D2, #007BFF);
    /* لون متدرج */
    /* لون مقبض الشريط */
    border-radius: 2px;
    /* حواف دائرية */
    transition: all 0.10s ease;
    /* السلاسة عند التحويم */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to right, #0056D2, #007BFF);
    /* لون متدرج */
    /* لون المقبض عند التمرير عليه */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* إضافة ظل خفيف */
    transition: all 0.10s ease;
    /* تحديد السلاسة */
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
        /* عرض أقل للشريط على الشاشات الصغيرة */

    }
}

/*===================== End webkit-scrollbar ===================== */