/* Background Image Styles - Clean and Clear */

/* خلفية الصورة مع شفافية معتدلة */
body {
    background-image: url('../images/1.png');
    background-size: cover; /* تغطي كامل الشاشة */
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* طبقة شفافة بسيطة فوق الخلفية */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.78); /* شفافية أقل لحماية القراءة */
    z-index: -1;
}

/* للأجهزة الصغيرة */
@media (max-width: 768px) {
    body {
        background-size: cover;
    }
    
    body::before {
        background: rgba(255, 255, 255, 0.80); /* شفافية أقل على الجوال */
    }
}

@media (max-width: 480px) {
    body::before {
        background: rgba(255, 255, 255, 0.82); /* حماية أكبر للنص على الشاشات الصغيرة */
    }
}

/* خلفية الشريط العلوي - نظيفة */
.header {
    background: rgba(37, 99, 235, 0.98) !important;
    backdrop-filter: blur(10px);
    position: relative;
}

/* خلفية المحتوى */
.container {
    position: relative;
    z-index: 1;
}

/* تحسين شكل البطاقات */
.job-card,
.application-form,
.login-box,
.contact-form-wrapper,
.admin-table {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Hero Section - اجعل المحتوى يطفو فوق الخلفية مع طبقة شفافة */
.hero-section {
    background: rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(6px);
    position: relative;
}

/* Footer - نظيف */
.footer {
    background: rgba(31, 41, 55, 0.98) !important;
    backdrop-filter: blur(10px);
    position: relative;
}

