/**
 * @file
 * Subtheme specific CSS.
 */


 /*************************  ***************************************/


    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }

#navbar-main {
  
  direction: ltr;
}






/************************* ميثاق الأخلاقيات ***************************************/




        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', 'Tajawal', 'Segoe UI', 'Tahoma', sans-serif;
            line-height: 1.6;
            color: #1a2e1a;
            scroll-behavior: smooth;
            background: #eef2f5;
        }

        /* الحاوية الرئيسية */
        .wrapper1 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============= الرأس مع صورة خلفية خفيفة ============= */
        .hero1 {
            text-align: center;
            padding: 3rem 1rem 2.5rem;
            margin-bottom: 2.5rem;
            border-radius: 0 0 50px 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        /* صورة الخلفية - غير بارزة (خفيفة) */
        .hero1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            opacity: 0.12;
            z-index: 0;
        }
        
        /* محتوى الرأس فوق الصورة */
        .hero-content1 {
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(2px);
            border-radius: 40px;
            padding: 1.8rem;
            max-width: 85%;
            margin: 0 auto;
        }
        
        .hero1 h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1a5c2a, #0e3a1a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.8rem;
        }
        .hero1 p {
            font-size: 1.2rem;
            color: #4a6b3a;
            font-weight: 500;
        }
        .badge1 {
            background: #c9a52c;
            display: inline-block;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #ffffff;
            font-weight: 600;
        }

        /* ============= شبكة البطاقات ============= */
        .cards-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.2rem;
            margin: 2rem 0 3rem;
        }

        /* تصميم الكارد */
        .card1 {
            background: #ffffff;
            border-radius: 28px;
            padding: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(26, 92, 42, 0.2);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* شريط علوي باللون الأخضر الغامق */
        .card1::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 8px;
            background: linear-gradient(90deg, #1a5c2a, #2d7a3a, #1a5c2a);
            z-index: 1;
        }

        /* تأثير الزوم للأمام عند مرور الماوس */
        .card1:hover {
            transform: scale(1.03) translateY(-8px);
            box-shadow: 0 28px 45px -12px rgba(0, 0, 0, 0.2);
            border-color: #c9a52c;
        }

        /* محتوى الكارد */
        .card-content1 {
            padding: 2rem 1.8rem 1.5rem;
            flex: 1;
        }

        /* عنوان الكارد باللون الأخضر الغامق */
        .card1 h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a5c2a;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid #c9a52c;
            display: inline-block;
            position: relative;
        }

        /* قائمة الجمل المستقلة */
        .card1 ul {
            list-style: none;
            margin-top: 0.8rem;
        }
        .card1 li {
            font-size: 0.98rem;
            color: #2c4a2a;
            margin-bottom: 1rem;
            padding-right: 0.8rem;
            line-height: 1.55;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
        /* نقاط بلون أصفر داكن/ذهبي */
        .card1 li::before {
            content: "";
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #c9a52c;
            border-radius: 50%;
            margin-left: 0.7rem;
            margin-top: 0.6rem;
            flex-shrink: 0;
            box-shadow: 0 0 0 2px #f5e6c0;
        }

        /* ============= رابط المعلومات أسفل الكارد ============= */
        .more-info-link1 {
            padding: 1rem 1.8rem 1.8rem;
            border-top: 1px solid #e8e0cc;
            text-align: center;
        }
        
        .info-link1 {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #1a5c2a;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            background-color: #f5f0e0;
        }
        
        /* تأثير الرابط عند المرور */
        .info-link1:hover {
            background-color: #c9a52c;
            color: #ffffff;
            transform: translateX(-5px);
        }
        
        /* سهم بسيط بدون أيقونة */
        .info-link1::after {
            content: "←";
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }
        
        .info-link1:hover::after {
            transform: translateX(-4px);
        }

        /* ============= منطقة زر التحميل ============= */
        .download-wrapper1 {
            display: flex;
            justify-content: center;
            margin: 1.5rem 0 2rem;
        }
        .pdf-btn1 {
            background-color: #1a5c2a;
            color: #ffffff;
            padding: 1rem 2.8rem;
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 60px;
            text-decoration: none;
            transition: all 0.35s ease;
            display: inline-block;
            border: none;
            font-family: inherit;
            cursor: pointer;
            text-align: center;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 20px rgba(26, 92, 42, 0.3);
            position: relative;
            overflow: hidden;
        }
        /* تأثير الزر عند المرور: يتغير اللون ويعمل زوم */
        .pdf-btn1:hover {
            background-color: #c9a52c;
            color: #1a3a1a;
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 15px 30px rgba(201, 165, 44, 0.4);
        }
        .pdf-btn1:active {
            transform: scale(0.98);
        }

        /* ============= تذييل أنيق ============= */
        .footer1 {
            background: linear-gradient(135deg, #1a5c2a, #0e3a1a);
            color: #fef5e0;
            text-align: center;
            padding: 1.5rem 1rem;
            margin-top: 3rem;
            border-radius: 30px 30px 0 0;
        }
        .footer1 p {
            margin: 0.3rem 0;
            font-size: 0.85rem;
            font-weight: 400;
        }
        .footer1 small {
            opacity: 0.85;
            font-size: 0.75rem;
        }

        /* ============= زر الصعود (لون أصفر داكن) ============= */
        .scroll-top1 {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 52px;
            height: 52px;
            background: #c9a52c;
            color: #1a5c2a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
            border: none;
            font-family: monospace;
            z-index: 99;
        }
        .scroll-top1.show1 {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top1:hover {
            background: #a88520;
            transform: translateY(-6px) scale(1.05);
            color: #ffffff;
            box-shadow: 0 12px 25px rgba(168, 133, 32, 0.4);
        }

        /* ============= نصوص إضافية ============= */
        .note-text1 {
            text-align: center;
            font-size: 0.72rem;
            color: #7a8a6a;
            margin-top: -0.5rem;
            margin-bottom: 1rem;
        }

        /* ============= استجابة للشاشات ============= */
        @media (max-width: 850px) {
            .wrapper1 {
                padding: 0 1.2rem;
            }
            .hero1 h1 {
                font-size: 1.8rem;
            }
            .hero-content1 {
                padding: 1rem;
                max-width: 95%;
            }
            .card1 h3 {
                font-size: 1.5rem;
            }
            .cards-grid1 {
                gap: 1.5rem;
            }
            .card-content1 {
                padding: 1.5rem;
            }
            .more-info-link1 {
                padding: 0.8rem 1.5rem 1.5rem;
            }
        }
        @media (max-width: 550px) {
            .hero1 h1 {
                font-size: 1.5rem;
            }
            .pdf-btn1 {
                padding: 0.8rem 1.6rem;
                font-size: 0.9rem;
            }
            .scroll-top1 {
                width: 44px;
                height: 44px;
                font-size: 1.6rem;
            }
            .card1 li {
                font-size: 0.88rem;
            }
            .hero-content1 {
                background: rgba(255, 255, 255, 0.85);
            }
            .info-link1 {
                font-size: 0.8rem;
            }
        }
















/************************* الطاقم الإداري ***************************************/

       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: #f0f3f7;
            color: #1e2a1e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* حاوية الصفحة الرئيسية مع تدرج خفيف - class2 */
        .page-wrapper2 {
            max-width: 1400px;
            margin: 0 auto;
            background: #eef2e6;
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
            border-radius: 32px 32px 0 0;
            overflow: hidden;
        }

        /* محتوى رئيسي - class2 */
        .main-content2 {
            padding: 2rem 2rem 1rem;
        }

        /* عنوان الصفحة - class2 */
        .hero-title2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .hero-title2 h1 {
            font-size: 3.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2f6b2f, #5a7a3a);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.05);
            letter-spacing: -0.5px;
        }

        /* قسم المدير: لوحده في المستوى الأول مع تصميم مميز - class2 */
        .principal-section2 {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }
        /* كارد المدير المميز - class2 */
        .principal-card2 {
            width: 360px;
            background: linear-gradient(145deg, #ffffff, #fefcf0);
            border-radius: 48px;
            overflow: hidden;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2), 0 0 0 1px #e2e9d3 inset;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid #d4e0be;
            position: relative;
        }
        /* أيقونة النجمة SVG بدلاً من النص ⭐ */
        .principal-card2::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            width: 32px;
            height: 32px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5b042' stroke='%23f5b042' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.6;
            z-index: 2;
            pointer-events: none;
        }
        .principal-card2:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 32px 44px rgba(44, 66, 24, 0.25);
            border-color: #c2d69b;
        }
        .principal-img2 {
            background: linear-gradient(135deg, #a9b591, #c2d6a5);
            text-align: center;
            padding: 2rem 0 1.5rem;
        }
        .principal-img2 img {
            width: 170px;
            height: 170px;
            object-fit: cover;
            border-radius: 50%;
            border: 6px solid #fff9e8;
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
            transition: transform 0.4s;
            background: #fff;
        }
        .principal-card2:hover .principal-img2 img {
            transform: scale(1.05);
        }
        .principal-info2 {
            padding: 1.8rem 1.5rem 2rem;
            text-align: center;
        }
        .principal-info2 h3 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #2a541a;
            margin-bottom: 0.3rem;
            letter-spacing: -0.3px;
        }
        .principal-info2 .role2 {
            font-size: 1.2rem;
            font-weight: 800;
            background: #f7f0cf;
            display: inline-block;
            padding: 0.3rem 1.6rem;
            border-radius: 40px;
            color: #4f752a;
            margin-bottom: 1rem;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.02), 0 2px 5px rgba(0,0,0,0.05);
        }
        .principal-info2 .desc2 {
            font-size: 0.9rem;
            color: #4e6240;
            font-weight: 500;
            line-height: 1.5;
        }
        .badge-leader2 {
            display: inline-block;
            background: #e8d685;
            color: #3a5927;
            border-radius: 40px;
            padding: 0.2rem 0.8rem;
            font-size: 0.7rem;
            font-weight: bold;
            margin-top: 10px;
        }

        /* SVG icon styles */
        .svg-icon {
            width: 1.2em;
            height: 1.2em;
            vertical-align: middle;
            display: inline-block;
            margin-left: 6px;
            stroke-width: 1.5;
        }
        .svg-icon-sm {
            width: 1em;
            height: 1em;
        }
        .svg-icon-lg {
            width: 1.8rem;
            height: 1.8rem;
        }

        /* قسم النواب: كاردين اسفل كارد المدير (بجانب بعضهما) - class2 */
        .deputies-section2 {
            margin-bottom: 3.5rem;
        }
        .deputies-title2 {
            text-align: center;
            margin-bottom: 1.8rem;
            position: relative;
        }
        .deputies-title2 h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: #3f6130;
            display: inline-block;
            background: #eef3e3;
            padding: 0.2rem 1.8rem;
            border-radius: 60px;
            letter-spacing: -0.2px;
        }
        .deputies-container2 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        /* تصميم كاردات النواب (أنيق ولكن أقل فخامة من المدير) - class2 */
        .deputy-card2 {
            background: #ffffff;
            border-radius: 32px;
            width: 280px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: all 0.35s ease;
            border: 1px solid #dee8cf;
        }
        .deputy-card2:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 28px rgba(59, 78, 33, 0.15);
            border-color: #bdd490;
        }
        .deputy-img2 {
            background: #eef2e2;
            text-align: center;
            padding: 1.5rem 0 1rem;
        }
        .deputy-img2 img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #fef9e3;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        .deputy-card2:hover .deputy-img2 img {
            transform: scale(1.02);
        }
        .deputy-info2 {
            padding: 1.2rem 1rem 1.6rem;
            text-align: center;
        }
        .deputy-info2 h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #3a6227;
            margin-bottom: 0.2rem;
        }
        .deputy-info2 .role2 {
            font-size: 0.9rem;
            font-weight: 700;
            background: #eef0e3;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            color: #587c31;
            margin-bottom: 0.6rem;
        }
        .deputy-info2 .desc2 {
            font-size: 0.8rem;
            color: #6a7c56;
            font-weight: 500;
        }

        /* القسم الخاص بالجدول (6 أشخاص) - class2 */
        .staff-section2 {
            background: #f8faf3;
            border-radius: 48px;
            padding: 1.8rem 1.5rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 8px 18px rgba(0,0,0,0.05);
            border: 1px solid #dde5cf;
        }

        .staff-section2 h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c5230;
            border-right: 7px solid #b7cf7a;
            padding-right: 1rem;
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* الجدول بتصميم حديث - مع جعل الكتابة في المنتصف */
        .staff-table-wrapper2 {
            overflow-x: auto;
            border-radius: 28px;
        }
        .staff-table2 {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(0,0,0,0.03);
        }
        .staff-table2 thead tr {
            background: #51a351;
            color: #2c5230;
        }
        .staff-table2 th {
            font-weight: 800;
            font-size: 1.1rem;
            padding: 1.2rem 0.8rem;
            text-align: center;
            vertical-align: middle;
            border-bottom: 2px solid #bacc99;
        }
        .staff-table2 td {
            padding: 1rem 0.7rem;
            text-align: center;
            vertical-align: middle;
            border-bottom: 1px solid #e5edd9;
            font-weight: 500;
            transition: all 0.2s ease;
            background-color: #fff;
        }
        /* تأثير hover لصفوف الجدول */
        .staff-table2 tbody tr:hover td {
            background-color: #f7fceb;
            transform: scale(1.003);
            box-shadow: inset 0 0 0 1px #d2e2b5;
            cursor: default;
        }
        .staff-table2 tbody tr {
            transition: 0.2s;
        }
        .staff-table2 td:first-child, .staff-table2 th:first-child {
            border-right: none;
        }

        /* زر الصعود السريع (اخضر + اصفر) - class2 */
        .scroll-top-btn2 {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: linear-gradient(145deg, #f5c542, #e0aa2e);
            color: #2f4d2d;
            width: 55px;
            height: 55px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: all 0.25s;
            z-index: 99;
            border: none;
            outline: none;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }
        .scroll-top-btn2.show2 {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top-btn2:hover {
            background: linear-gradient(145deg, #f3cf5e, #f0bc30);
            transform: translateY(-5px) scale(1.07);
            box-shadow: 0 16px 28px rgba(0,0,0,0.25);
            color: #1e3a1a;
        }

        /* تذييل الصفحة - class2 */
        .footer2 {
            background: #1a5c2a;
            color: #eaf3df;
            text-align: center;
            padding: 1.8rem 1rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            border-top: 3px solid #cfdfaa;
        }
        .footer2 p {
            margin: 0.3rem 0;
        }

        /* استجابة للأجهزة الصغيرة */
        @media (max-width: 850px) {
            .main-content2 {
                padding: 1.2rem;
            }
            .principal-card2 {
                width: 300px;
            }
            .deputy-card2 {
                width: 260px;
            }
            .staff-table2 th, .staff-table2 td {
                font-size: 0.85rem;
                padding: 0.8rem 0.4rem;
            }
            .hero-title2 h1 {
                font-size: 2.5rem;
            }
            .principal-card2::before {
                width: 26px;
                height: 26px;
                top: 15px;
                left: 15px;
            }
        }

        @media (max-width: 650px) {
            .deputies-container2 {
                gap: 1.2rem;
            }
            .staff-section2 h2 {
                font-size: 1.4rem;
            }
            .hero-title2 h1 {
                font-size: 2.2rem;
            }
            .principal-card2::before {
                width: 22px;
                height: 22px;
                top: 12px;
                left: 12px;
            }
        }

        /* تأثيرات دخول لطيفة */
        .principal-card2, .deputy-card2, .staff-table2 {
            animation: fadeSlideUp2 0.5s ease backwards;
        }
        .principal-card2 { animation-delay: 0.05s; }
        .deputy-card2:nth-child(1) { animation-delay: 0.15s; }
        .deputy-card2:nth-child(2) { animation-delay: 0.25s; }
        @keyframes fadeSlideUp2 {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }  












/************************* الصفحة الفاصلة بين التخصصات ***************************************/


 *33 {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body33 {
            font-family: 'Amiri', 'Traditional Arabic', 'Tajawal', 'Segoe UI', serif;
            background: linear-gradient(145deg, #f1f1f1 0%, #e5ecd9 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            color: #2c4a2a;
        }

        .main-card33 {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            background: #f6faf2;
            border-radius: 64px 64px 48px 48px;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(160, 130, 55, 0.12);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        /* قسم العنوان - مساحة مصغرة كما في الكود الأصلي */
        .hero-arabic33 {
            background: #ffffff;
            padding: 1.5rem 2rem;
            text-align: center;
            position: relative;
            border-bottom: 3px solid #d4b87a;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        .hero-arabic33::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 100%;
            background: linear-gradient(270deg, rgba(220, 195, 120, 0.03), transparent);
            pointer-events: none;
        }

        .hero-arabic33::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 100%;
            background: linear-gradient(90deg, rgba(220, 195, 120, 0.03), transparent);
            pointer-events: none;
        }

        .main-title33 {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Amiri', 'Traditional Arabic', 'Tajawal', serif;
            color: #1e4620;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.04);
            letter-spacing: 1px;
            display: inline-block;
        }

        .main-title33 span {
            color: #c29a2e;
            font-weight: 800;
        }

        .sub-letters33 {
            font-size: 0.9rem;
            color: #8b7355;
            margin-top: 8px;
            letter-spacing: 0.5px;
            font-weight: 500;
            border-top: 1px solid #e6d5b3;
            display: inline-block;
            padding-top: 8px;
            font-family: 'Amiri', serif;
        }

        .home-btn-wrapper33 {
            padding: 0.8rem 2rem;
            background: #f5f8f0;
            display: flex;
            justify-content: flex-start;
            border-bottom: 1px solid #e2e8d8;
        }

        .home-btn33 {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #2c5e2a, #1e4620);
            padding: 8px 22px;
            border-radius: 60px;
            text-decoration: none;
            color: #fff7e8;
            font-weight: bold;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
            border: 1px solid #d4af5a;
            font-family: 'Amiri', 'Tajawal', sans-serif;
        }

        .home-btn33 svg {
            width: 18px;
            height: 18px;
            fill: #f3da9b;
            transition: 0.3s;
        }

        .home-btn33:hover {
            background: #c49f2b;
            color: #1e4620;
            transform: translateY(-3px);
            box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
        }

        .home-btn33:hover svg {
            fill: #1e4620;
        }

        .levels-container33 {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 2.5rem 2.5rem;
            background: #eef5e9;
            justify-content: center;
        }

        .level-card33 {
            flex: 1;
            min-width: 280px;
            background: linear-gradient(135deg, #ffffff, #fefcf5);
            border-radius: 48px;
            padding: 2.2rem 1.8rem;
            text-align: center;
            transition: all 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.2);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(180, 145, 70, 0.25);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .level-card33::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 8px;
            height: 100%;
            background: #c29a2e;
            border-radius: 48px 0 0 48px;
            transition: width 0.35s ease, background 0.3s;
        }

        .level-card33::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(194, 154, 46, 0.02), transparent 70%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .level-card33:hover::after {
            opacity: 1;
        }

        .level-card33:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: 0 35px 45px -18px rgba(0, 0, 0, 0.2);
            background: #ffffff;
            border-color: #c29a2e;
        }

        .level-card33:hover::before {
            width: 12px;
            background: #e6b422;
        }

        .level-title33 {
            font-size: 2.2rem;
            font-weight: 800;
            font-family: 'Amiri', 'Tajawal', serif;
            color: #1e4620;
            margin-bottom: 0.8rem;
            letter-spacing: -0.3px;
            position: relative;
            display: inline-block;
        }

        .level-title33::after {
            content: "";
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 50px;
            height: 3px;
            background: #c29a2e;
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .level-card33:hover .level-title33::after {
            width: 80px;
            background: #e6b422;
        }

        .years-badge33 {
            display: inline-block;
            background: #f0e9db;
            color: #8b6b2c;
            padding: 5px 18px;
            border-radius: 40px;
            font-weight: bold;
            font-size: 0.85rem;
            margin: 0.8rem 0 0.5rem 0;
            transition: all 0.25s;
            font-family: 'Amiri', monospace;
            letter-spacing: 0.5px;
        }

        .level-card33:hover .years-badge33 {
            background: #e6b422;
            color: #1e4620;
            box-shadow: 0 4px 14px rgba(198, 158, 46, 0.25);
            transform: translateY(-2px);
        }

        .level-description33 {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a6845;
            margin: 1.2rem 0 0.3rem 0;
            font-weight: 500;
            font-family: 'Amiri', 'Segoe UI', serif;
        }

        .footer-elegant33 {
            background: #1e4620;
            color: #ffffff;
            text-align: center;
            padding: 1.2rem;
            font-size: 0.9rem;
            border-top: 3px solid #e6b422;
            font-family: 'Amiri', serif;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        @media (max-width: 850px) {
            .levels-container33 {
                flex-direction: column;
                padding: 1.8rem 1.5rem;
                gap: 1.8rem;
            }
            .main-title33 {
                font-size: 2.2rem;
            }
            .level-title33 {
                font-size: 1.8rem;
            }
            .hero-arabic33 {
                padding: 1.2rem 1rem;
            }
        }

        @media (max-width: 550px) {
            body33 {
                padding: 1rem;
            }
            .level-card33 {
                padding: 1.5rem;
            }
            .level-title33 {
                font-size: 1.6rem;
            }
            .level-description33 {
                font-size: 0.9rem;
            }
            .years-badge33 {
                font-size: 0.75rem;
                padding: 4px 14px;
            }
        }

        .level-card33 {
            animation: fadeInUp33 0.65s ease backwards;
        }
        .level-card33:first-child {
            animation-delay: 0.1s;
        }
        .level-card33:last-child {
            animation-delay: 0.2s;
        }
        @keyframes fadeInUp33 {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        ::-webkit-scrollbar {
            width: 7px;
        }
        ::-webkit-scrollbar-track {
            background: #e2ecd9;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: #c29a2e;
            border-radius: 10px;
        }













/*************************                              ***************************************/