<style>
/* ============================================================
   تصميم الهيدر الجديد: زوايا سفلية معكوفة مع خط بلون الشعار
   ============================================================ */

/* --- 1. هيدر الجوال (MOBILE) --- */
.dev3-mobile-header {
    border-bottom-left-radius: 35px !important;
    border-bottom-right-radius: 35px !important; 
    border-bottom: 3px solid #2f8f98 !important;
    background-color: #ffffff !important;
}

/* --- 2. هيدر اللابتوب (DESKTOP) --- */
@media (min-width: 992px) {
    /* الهيدر الأساسي والحاوية الرئيسية */
    header, 
    #fixed-header {
        border-bottom-left-radius: 45px !important;
        border-bottom-right-radius: 45px !important;
        border-bottom: 4px solid #2f8f98 !important;
        background-color: #ffffff !important;
    }

    /* الأقسام الداخلية (السر هنا: نخفي الزوايا المربعة اللي كانت تغطي على الانحناء) */
    .dev3-main, 
    .dev3-header-main,
    .dev3-menu {
        border-bottom-left-radius: 41px !important; /* انحناء متناسق مع الإطار الخارجي */
        border-bottom-right-radius: 41px !important;
        border-bottom: none !important; /* إزالة أي خطوط سفلية قديمة */
        background-color: transparent !important; /* جعلها شفافة ليظهر الإطار الأساسي */
    }
}
</style>
<style>
/* ============================================================
   تصميم الهيدر الجديد: زوايا سفلية معكوفة مع خط بلون الشعار (نسخة آمنة)
   ============================================================ */

/* --- 1. هيدر سطح المكتب (DESKTOP) --- */
#fixed-header {
    border-bottom-left-radius: 45px !important; /* عكفة الزاوية اليسرى */
    border-bottom-right-radius: 45px !important; /* عكفة الزاوية اليمنى */
    border-bottom: 4px solid #2f8f98 !important; /* الإطار السفلي بلون الشعار */
    background-color: #ffffff !important; /* خلفية بيضاء */
}

/* --- 2. هيدر الجوال (MOBILE) --- */
.dev3-mobile-header {
    border-bottom-left-radius: 35px !important; /* عكفة أقل للجوال لتناسب الشاشة */
    border-bottom-right-radius: 35px !important; 
    border-bottom: 3px solid #2f8f98 !important; /* الإطار السفلي بلون الشعار */
    background-color: #ffffff !important; /* خلفية بيضاء */
}

/* إزالة أي خطوط سفلية قديمة من القالب الأساسي لتجنب التعارض */
.dev3-main {
    border-bottom: none !important;
}
</style>
///
/* تنسيق الفوتر العائم */
.footer-wrapper {
    background-color: #ffffff !important;
    border-radius: 30px !important; /* حواف معكوفة */
    margin: 20px !important; /* ليعطي إيحاء العوم */
    padding: 40px 20px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; /* الظل ليعطي بروز */
    border: 2px solid #2f8f98 !important; /* إطار بنفس لون الهوية */
}

/* توسيط المحتوى */
.footer .row, .footer .wedgit {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* تحسين شكل الروابط */
.footer ul {
    padding: 0 !important;
    list-style: none !important;
}
.footer ul li a {
    color: #333 !important;
    text-decoration: none !important;
    margin-bottom: 8px !important;
    display: block !important;
}