/* الألوان والهوية الجديدة */
:root {
    --dl-blue: #2266D0; /* أزرق الشعار */
    --dl-grey: #4D4D4D; /* رمادي الشعار */
    --dl-dark: #1a1a1a;
    --dl-light: #f4f7f6;
}

/* الهيدر */
.main-header { background: #fff; padding: 20px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.05); sticky: top; }
.header-flex { display: flex; justify-content: space-between; align-items: center; direction: rtl; }
.logo img { max-height: 55px; }
.site-nav ul { display: flex; list-style: none; gap: 20px; }
.site-nav a { color: var(--dl-grey); font-weight: bold; text-decoration: none; transition: 0.3s; }
.site-nav a:hover { color: var(--dl-blue); }

/* قسم Hero */
.hero-section { 
    background: linear-gradient(rgba(34, 102, 208, 0.9), rgba(26, 26, 26, 0.9)), url('images/hero-bg.jpg'); 
    background-size: cover; color: #fff; padding: 100px 0; text-align: center; 
}
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.btn-primary { background: var(--dl-blue); color: #fff; padding: 12px 30px; border-radius: 5px; text-decoration: none; display: inline-block; margin-top: 20px; }
.hero-content h1 { 
    font-size: 3rem; 
    margin-bottom: 20px; 
    color: #ffffff; /* أضف هذا السطر لجعله أبيض */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* إضافة ظل خفيف لزيادة الوضوح */
}

/* البطاقات (Blocks) */
.blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.block { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; transition: 0.4s; }
.block:hover { transform: translateY(-10px); }
.icon-box { font-size: 40px; margin-bottom: 20px; }

/* معرض الأعمال */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.project-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.1); text-align: center; }
.project-item img { width: 100%; height: auto; }
.project-item h3 { padding: 15px; font-size: 16px; color: var(--dl-grey); }

/* الفوتر */
.site-footer { background: var(--dl-dark); color: #fff; padding: 60px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.f-logo { max-height: 50px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.copyright { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; text-align: center; font-size: 13px; }

