* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; /* أو الخط المستخدم في موقعك */
}
.main-header {
    background-color: #000000;
    padding: 1px 5%; /* زيادة المسافة شوية عشان يبقى فخم */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 150px; /* نفس حجم اللوجو في الصورة */
}

.nav-links {
    display: flex;
    list-style: none;

}

.nav-links li a {
    color: #ffffff; /* أبيض سادة زي الصورة */
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px; /* خط رفيع وصغير زي الصورة */
    font-weight: 650;
    text-transform: uppercase; /* حروف كبيرة إجباري */
    transition: opacity 0.3s;
}


.menu-toggle {
    display: none;
    color: #ffffff;
    font-size: 23px;
}

.white-page {
    height: 100vh;
}

/* --- تنسيق الموبايل --- */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 140px;
        right: -100%;
        background-color: #000000;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: 0.4s;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        margin: 25px 0;
    }
}
















.about-hero-section {
    /* ضيف مسافة فوق عشان الهيدر الأسود ومسافة تحت للشياكة */
    padding: 250px 10% 120px; 
    text-align: center;
    
    /* هنا بنحط الصورة وبنضيف فوقيها طبقة ضلمة خفيفة (Overlay) عشان الكلام الأبيض ينطق */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('bx.jpg');
    
    background-size: cover; /* عشان الصورة تملى السكشن كله */
    background-position: center; /* سنتر الصورة */
    background-attachment: scroll; /* حركة الـ Parallax الشيك وأنت بتعمل Scroll */
    
    color: #ffffff; /* حولنا لون الكلام للأبيض عشان يظهر فوق الصورة */
}

.main-title {
    font-size: 48px;
    color: #ffffff; /* تأكيد اللون الأبيض */
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #ffffff; /* الخط الصغير برضه يبقى أبيض */
    margin: 20px auto;
}

.sub-title {
    font-size: 20px;
    color: #f0f0f0; /* أبيض هادي شوية */
    line-height: 1.8;
}

/* ضبط المقاسات للموبايل (iPhone 11 Pro Max) */
@media screen and (max-width: 768px) {
    .about-hero-section {
        padding: 250px 5% 60px;
    }
    .main-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    .sub-title {
        font-size: 16px;
    }
}




















.services-section {
    padding: 80px 5%;
    background-color: #ffffff; /* مكملين على البياض عشان النضافة */
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* رص تلقائي احترافي */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #eee; /* برواز خفيف جداً عشان يحدد الكارت */
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); /* حركة خفيفة لما تلمس الكارت */
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: #000000; /* أيقونات سوداء فخمة */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* الموبايل */
@media screen and (max-width: 768px) {
    .services-section {
        padding: 50px 5%;
    }
}














.stats-section {
    background-color: #f9f9f9; /* رمادي فاتح جداً لكسر اللون */
    padding: 80px 5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 30px;
    flex: 1;
    min-width: 200px;
    position: relative;
}

/* خط فاصل رفيع بين الأرقام */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #ddd;
}

.stat-number {
    font-size: 45px;
    font-weight: 900;
    color: #000000; /* الرقم بالأسود عشان يظهر على الرمادي */
    margin-bottom: 10px;
    display: block;
}

.stat-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666; /* لون هادي للنص */
}

/* للموبايل (iPhone 11 Pro Max) */
@media screen and (max-width: 768px) {
    .stat-item:after {
        display: none; /* نشيل الخطوط الفاصلة في الموبايل */
    }
    .stat-item {
        flex: 1 1 50%;
        padding: 20px 10px;
    }
    .stat-number {
        font-size: 32px;
    }
}























.why-us-section {
    padding: 80px 10%;
    background-color: #fcfcfc; /* لون رمادي خفيف جداً لكسر البياض */
}

.why-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-line-left {
    width: 50px;
    height: 4px;
    background-color: #000;
    margin-bottom: 30px;
}

.why-text ul {
    list-style: none;
}

.why-text ul li {
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.why-text ul li i {
    color: #000; /* علامة الصح بالأسود */
    margin-top: 5px;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 10px; /* زوايا ناعمة */
    box-shadow: 20px 20px 0px #000; /* حركة احترافية: برواز أسود خلف الصورة */
}

/* للموبايل (iPhone 11 Pro Max) */
@media screen and (max-width: 768px) {
    .why-container {
        flex-direction: column;
        text-align: center;
    }
    .why-text ul li {
        text-align: left;
    }
    .why-image img {
        box-shadow: 10px 10px 0px #000;
    }
}




















.main-footer {
    background-color: #111; /* أسود فخم */
    color: #fff;
    padding: 80px 6% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-about p {
    color: #888;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover { color: #fff; padding-left: 5px; }

.footer-contact p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 12px;
    letter-spacing: 1px;
}

/* الموبايل */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .social-links { justify-content: center; }
    .footer-contact p { justify-content: center; }
}
footer img {
    width: 200px !important; 
    height: auto !important;
    max-height: 200px !important;
    object-fit: contain !important;
}

















/* تنسيق الزرار العايم */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999; /* عشان يفضل فوق كل السكاشن */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* حركة النبض (Pulse) عشان تلفت الانتباه */
.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* النص اللي بيظهر لما الماوس ييجي عليه (اختياري) */
.float-text {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .float-text {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
}

/* للموبايل: نصغر الحجم شوية عشان مياخدش مساحة */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
    .float-text { display: none; } /* نخفي النص في الموبايل */
}


