        /* ================= إعدادات عامة ================= */
        :root {
            --dark-brown: #5a3c0b; /* الهيدر والفوتر */
            --gold-brown: #c48b28; /* الخلفيات الذهبية */
            --gold-light: #ebc176; /* درجات فاتحة */
            --light-bg: #fff5e1;   /* خلفية الصفحة */
            --gold-bg-card: #eacda3; /* لون خلفية النصوص في الكروت */
            --light-bg: #fdf8ef;
            --text-dark: #2c1e12;
            --white: #ffffff;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        /* ================= الهيدر (ثابت) ================= */
       header {
            position: fixed;
            background-color: var(--dark-brown);
            color: var(--white);
            padding: 10px 50px;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .top-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
            margin-bottom: 10px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .logo-img img { width: 100%; }

        .logo-text h1 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 2px;}
        .logo-text p { font-size: 0.8rem; color: #ddd; }

        .contact-info-top {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
        }
        
        .contact-info-top i { margin-left: 5px; color: var(--gold-brown); }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links li a {
            font-size: 0.95rem;
            font-weight: 600;
            transition: 0.3s;
        }
        .nav-links li a i { margin-left: 5px; font-size: 0.9rem; }
        .nav-links li a:hover { color: var(--gold-brown); }

        .cta-btn {
            background-color: #a82e2e;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .cta-btn:hover { background-color: #8b2626; }

        /* ================= البانر الرئيسي (الصورة الكبيرة فوق) ================= */
        .page-banner {
            width: 100%;
            height: 350px;
            background-color: #333; /* لون احتياطي */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 150px;/* عشان الهيدر الثابت */
            

        }

        .banner-img-placeholder {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-color: #555; /* مكان الصورة */
            /* background-image: url('banner.jpg'); */
            background-size: cover; background-position: center;
            opacity: 0.7;
        }
        
        .banner-content {
            position: relative; z-index: 2; text-align: center; color: white;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .banner-content h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }

        /* ================= عنوان المقدمة ================= */
        .intro-text {
            text-align: center;
            padding: 50px 20px 30px 20px;
            max-width: 900px;
            margin: 0 auto;
        }
        .intro-text h2 { color: var(--text-dark); margin-bottom: 15px; font-size: 1.8rem; font-weight: 800; }
        .intro-text p { color: #666; font-size: 1rem; font-weight: 600; line-height: 1.6; }

        /* ================= شبكة الكروت (Grid System) ================= */
        .cards-grid-section {
            padding: 0 5% 80px 5%;
        }

        .grid-container {
            display: grid;
            /* تقسيم الأعمدة: 3 أعمدة في الشاشات الكبيرة */
            grid-template-columns: repeat(3, 1fr);
            gap: 30px; /* المسافة بين الكروت */
        }

        .info-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* صورة الكارت */
        .card-image-box {
            width: 100%;
            aspect-ratio: 4/3; /* نسبة العرض للارتفاع */
            background-color: #ccc; /* لون رمادي مكان الصورة */
            border-radius: 15px;
            margin-bottom: -20px; /* تداخل بسيط مع النص تحت */
            z-index: 2;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            overflow: hidden;
            
            display: flex; align-items: center; justify-content: center;
            color: #555; font-weight: bold;
        }
        
        .card-image-box img { width: 100%; height: 100%; object-fit: cover; }

        /* نص الكارت */
        .card-text-box {
            background-color: var(--gold-bg-card); /* اللون البيج/الدهبي */
            width: 90%;
            padding: 35px 15px 15px 15px; /* padding-top كبير عشان التداخل */
            border-radius: 0 0 15px 15px;
            z-index: 1;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-text-box h3 {
            font-size: 1rem;
            color: var(--dark-brown);
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .card-text-box p {
            font-size: 0.85rem;
            color: #444;
        }

        /* الكارت الأخير المميز (في الوسط) */
        .last-card-container {
            grid-column: 1 / -1; /* يأخذ عرض الصفحة كامل */
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        .last-card-wrapper {
            width: 350px; /* عرض محدد للكارت الأخير */
        }


        /* ================= الفوتر (نفسه) ================= */
        .footer {
            background-color: var(--dark-brown);
            color: #d8c2a3;
            padding: 50px 20px 30px;
            direction: rtl;
            font-size: 15px;
            border-top: 4px solid #cfaa76;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
        }

        /* --- العمود الأيمن (اللوجو + الاسم + الوصف) --- */
        .col-right {
            flex: 1.2; /* أعطيته مساحة أكبر قليلاً لاستيعاب اللوجو والاسم */
            min-width: 300px;
            text-align: right;
        }

        /* حاوية تجمع اللوجو والاسم بجانب بعض */
        .brand-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .logo-container {
            background: #fff;
            padding: 5px;
            border-radius: 10px;
            flex-shrink: 0; /* منع اللوجو من الانكماش */
        }

        .logo-container img {
            width: 70px;
            height: auto;
            display: block;
        }

        .brand-text h2 {
            font-size: 20px;
            color: #eaddcf;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .brand-text h4 {
            font-size: 14px;
            color: #cbbba6;
            font-weight: normal;
        }

        .col-right p {
            line-height: 1.8;
            margin-bottom: 20px;
            color: #dccfb8;
            font-size: 14px;
            text-align: justify; /* محاذاة النص ليبدو مرتباً */
            padding-left: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
        }

        .social-icons .fb { background-color: #1877f2; color: white; }
        .social-icons .yt { background-color: #ff0000; color: white; }

        /* --- العمود الأوسط (الاقتباس ومعلومات الاتصال) --- */
        .col-center {
            flex: 1;
            min-width: 280px;
            text-align: center;
            padding-top: 20px; /* لضبط المحاذاة مع العمود اليمين */
        }

        .quote {
            font-size: 15px;
            margin-bottom: 30px;
            line-height: 1.7;
            color: #eaddcf;
            font-weight: bold;
        }

        .contact-label {
            margin-bottom: 15px;
            color: #cfaa76;
            font-weight: bold;
            font-size: 15px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #eaddcf;
            font-size: 14px;
            direction: ltr; /* لضبط ظهور الأرقام والكلمات الإنجليزية بشكل صحيح */
        }
        
        /* إعادة ترتيب المحتوى داخل عنصر الاتصال ليتناسب مع الاتجاه العربي */
        .contact-item span { order: 1; }
        .contact-item i { order: 2; color: #cfaa76; font-size: 16px; }

        /* --- العمود الأيسر (الروابط) --- */
        .col-left {
            flex: 0.8;
            min-width: 200px;
            text-align: right;
            padding-right: 20px;
        }

        .col-left h3 {
            font-size: 18px;
            margin-bottom: 25px;
            color: #eaddcf;
        }

        .links-list { list-style: none; }
        .links-list li { margin-bottom: 15px; }

        .links-list a {
            text-decoration: none;
            color: #dccfb8;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .links-list a:hover {
            color: #fff;
            transform: translateX(-5px);
        }

        .links-list i { color: #cfaa76; font-size: 14px; }
        /* ================= تجاوب الموبايل ================= */
        @media (max-width: 992px) {
            .grid-container { grid-template-columns: repeat(2, 1fr); } /* عمودين في التابلت */
        }

        @media (max-width: 768px) {
            header{ position: relative;}
            header .top-header, header .navbar { flex-direction: column; gap: 10px; }
            .nav-links { flex-direction: column; width: 100%; text-align: center; }
            
            .grid-container { grid-template-columns: 1fr; } /* عمود واحد في الموبايل */
            .last-card-wrapper { width: 100%; }
            
            .banner-content h1 { font-size: 1.8rem; }
        }
        img {
            width: 100%;
        }
        .bg{
            height: 100%;
        }
        @media (max-width: 480px) {
            header { padding: 10px 20px; width: 100%; position: relative;}
            .logo-text h1 { font-size: 1rem; }
            .contact-info-top { flex-direction: column; gap: 5px; font-size: 0.8rem; }
            .nav-links { flex-direction: column; gap: 15px; }
            .cta-btn { padding: 6px 12px; font-size: 0.8rem; }
        }
            .dropdown-content {
        display: none;
        position: absolute;
        background-color: var(--dark-brown);
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        border-radius: 5px;
    }
    .dropdown-content a {
        color: white;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        font-size: 0.9rem;
        text-align: right;
    }
    .dropdown:hover .dropdown-content {
        transition: 0.3s;
        display: block;
    }
