/* تعريف متغيرات الألوان - لوحة ألوان احترافية */
:root {
    --primary-color: #0f172a;    /* أزرق داكن جداً (فخم) */
    --accent-color: #3b82f6;     /* أزرق ساطع (للعناوين الفرعية والأيقونات) */
    --highlight-color: #f59e0b;  /* برتقالي ذهبي (للأزرار المميزة) */
    --light-bg: #f8fafc;         /* رمادي فاتح جداً للخلفيات */
    --text-font: 'Tajawal', sans-serif;
}

body {
    font-family: var(--text-font);
    background-color: #ffffff;
    overflow-x: hidden;
    color: var(--primary-color);
}

/* تنسيقات عامة */
.text-accent {
    color: var(--accent-color) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}

/* تنسيق الناف بار */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.navbar-brand {
    color: white !important;
    font-size: 1.6rem;
    transition: color 0.4s ease;
}
.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.4s ease;
}
.navbar.scrolled .nav-link {
    color: var(--primary-color) !important;
}
.nav-link:hover, .nav-link.active {
    color: var(--highlight-color) !important;
}

/* الأزرار المخصصة */
.btn-custom {
    background-color: var(--highlight-color);
    color: white;
    border: 2px solid var(--highlight-color);
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--highlight-color);
}
.navbar.scrolled .btn-custom:hover {
     color: var(--highlight-color);
     border-color: var(--highlight-color);
}

/* منطقة الهيرو (الواجهة) */
.hero-section {
    background: linear-gradient(135deg, #0a58ca  0%, #254c7dc7  100%),
     url('ras.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
    min-height: 90vh;
    padding-top: 80px;
    border-bottom-right-radius: 0; /* تم تعديلها لتناسب التصميم الجديد */
}

/* تنسيقات قسم الرسالة والأهداف */
.section-diagonal {
    position: relative;
    z-index: 1;
}
.section-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-bg);
    transform: skewY(-2deg);
    z-index: -1;
}

.mission-card {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}
.icon-wrapper-white {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}
.goals-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* تنسيق شعارات الشركاء */
.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 60px; /* توحيد ارتفاع الشعارات */
    width: auto;
    margin: 0 auto;
    display: block;
}
.grayscale-hover:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.partners-logos .col-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* قسم التواصل */
.icon-box-contact {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121e31;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-form .form-control, .contact-form .form-select {
    padding: 0.8rem 1rem;
    font-size: 1rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    box-shadow: none;
    border: 2px solid var(--accent-color) !important;
    background-color: white !important;
}


/* الفوتر */
.footer-custom {
    background-color: #0a0f1d; /* لون أغمق قليلاً من الأساسي */
    border-top: 1px solid rgba(255,255,255,0.1);
}