*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Cairo', sans-serif;
}

body{
    background:#0b1b2b;
    color:#fff;
}

/* Container */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
header{
    background:#0f2740;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:22px;
    font-weight:700;
}

.logo .orange{
    color:#ff7a18 !important;
}

.logo .white{
    color:#ffffff !important;
}.nav{
    list-style:none;
    display:flex;
    gap:20px;
    justify-content:flex-end;
    direction:rtl;
}

.nav li a{
    text-decoration:none;
    color:#fff;
    transition:0.3s;
}

.nav li a:hover{
    color:#ff7a18;
}
.social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}

.social-icons{
    display:flex;
    justify-content:center;
    margin:20px 0;
}

.social-icons a{
    display:inline-flex;
}

.social-icon{
    width:48px;
    height:48px;
    object-fit:contain;
    transition:.3s;
}

.social-icon:hover{
    transform:translateY(-4px) scale(1.08);
}
@media (max-width:768px){
    .social-icons{
        margin:15px 0;
    }
 
    .social-icons a{
        width:45px;
        height:45px;
    }
}  
/* WhatsApp button */
.whatsapp-btn{
    background:#25d366;
    padding:8px 15px;
    border-radius:25px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}

.hero{
    width:100%;
    aspect-ratio:1600 / 800;
    background:url("../images/arco-hr.jpg") center center no-repeat;
    background-size:cover;
    background-color:#102a45;
    position:relative;
}


/* شاشات كبيرة */
@media (max-width:1400px){
    .hero{
        aspect-ratio:1600 / 800;
        background-position:center center;
    }
}


/* لابتوب */
@media (max-width:1200px){
    .hero{
        aspect-ratio:1600 / 800;
        background-position:center center;
    }
}


/* تابلت */
@media (max-width:1024px){
    .hero{
        aspect-ratio:1600 / 800;
        background-position:center center;
    }
}


/* موبايل */
@media (max-width:768px){
    .hero{
        aspect-ratio:1600 / 800;
        background-position:center center;
    }
}


/* موبايل متوسط */
@media (max-width:600px){
    .hero{
        aspect-ratio:1600 / 800;
        background-position:center center;
    }
}


/* موبايل صغير */
@media (max-width:480px){
    .hero{
        aspect-ratio:1600 / 800;
        background-position:center center;
    }
}


/* موبايل صغير جدًا */
@media (max-width:360px){
    .hero{
        aspect-ratio:1600 / 800;
        background-position:center center;
    }
}/* Services */
.services{
    padding:60px 0;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.box{
    background:#102a45;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}


.box img{
    width:300px;
    height:200px;
    object-fit:cover;

    padding:10px;
    background:#fff;

    border:4px solid #ff7a18;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    margin-bottom:20px;

    transition:.4s;
}

.box:hover img{
    transform:scale(1.08) rotate(2deg);
}
.box h3{
    color:#ff7a18;
    margin-bottom:10px;
}

/* About */
.about{
    padding:60px 0;
    text-align:center;
    background:#0f2740;
}

.about h2{
    color:#ff7a18;
    margin-bottom:15px;
}
/* Responsive */
@media(max-width:768px){
    .grid{
        grid-template-columns:1fr;
    }

    .nav{
        display:none;
    }

    .hero h1{
        font-size:26px;
    }
}





.menu-toggle{
    display:none;
    width:40px;
    height:40px;
    background:#ff7a18;
    color:#fff;
    border-radius:9px;
    font-size:28px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.menu-toggle:hover{
    background:#ffa24a;
    transform:scale(1.05);
}

.box-link{
    display:block;
    text-decoration:none;
    color:inherit;
}


/* الموبايل */
@media (max-width:768px){

    .menu-toggle{
        display:flex;
    }

    .nav{
        display:none;
        position:absolute;
        top:70px;
        right:15px;
        width:230px;
        background:#102a45;
        border-radius:12px;
        box-shadow:0 10px 25px rgba(0,0,0,.3);
        overflow:hidden;
 
    justify-content:flex-end; /* تبدأ من اليمين */

    }

    .nav.active{
        display:block;
    }

    .nav li{
        display:block;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav li:last-child{
        border:none;
    }

    .nav li a{
        display:block;
        padding:15px;
    }
}


.floating-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 25px rgba(37,211,102,.45);
    z-index:9999;
    transition:.3s;
    animation:whatsappPulse 2s infinite;
}

.floating-whatsapp img{
    width:36px;
    height:36px;
}

.floating-whatsapp:hover{
    transform:scale(1.12);
    box-shadow:0 12px 35px rgba(37,211,102,.7);
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){
    .floating-whatsapp{
        width:58px;
        height:58px;
        bottom:20px;
        right:20px;
    }

    .floating-whatsapp img{
        width:32px;
        height:32px;
    }
}





footer{
    background:#0b1b2b;
    padding:18px 0;
}

/* مهم جدًا: يمنع أي override */
.footer-flex{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:row;
    gap:18px;
    flex-wrap:wrap;
    text-align:center;
}

/* النص */
.footer-text{
    color:#fff !important;   /* 🔥 أهم سطر */
    font-size:14px;
    opacity:0.95;
    display:inline-block;
    align-items:center;
    gap:8px;
}

/* الفاصل */
.divider{
    width:1px;
    height:18px;
    background:rgba(255,255,255,0.35);
}

/* اللينك البرتقالي */
.brand{
    color:#ff7a18 !important;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

/* hover احترافي */
.brand:hover{
    color:#ffa24a;
    text-shadow:0 0 10px rgba(255,122,24,0.5);
}












/* Extra Boxes */
.extra-box{
    min-height:280px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:#102a45;
    position:relative;
    overflow:hidden;
}


.extra-box::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:5px;
    background:#ff7a18;
}


.extra-box h1{
    color:#ff7a18;
    font-size:28px;
    margin:15px 0;
}


.extra-box p{
    color:#fff;
    font-size:17px;
    line-height:1.8;
}


.box-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#0f2740;
    border:3px solid #ff7a18;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    transition:.4s;
}


.extra-box:hover .box-icon{
    transform:rotate(10deg) scale(1.1);
}


.extra-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}



.about-card h3 {
    color: #ff7a18;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-intro {
    text-align: center;
    line-height: 1.9;
    margin-bottom: 30px;
}




.jobs-section{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.jobs-section h3{
    color:#ff7a18;
    font-size:22px;
    margin-bottom:15px;
    font-weight:700;
}

.jobs-btn{
    display:inline-block;
    background:#ff7a18;
    color:#fff;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.jobs-btn:hover{
    background:#e86d12;
    transform:translateY(-2px);
}

.box-title{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin: 20px 0 15px;
    color: #ffffff;
}

.box-title span{
    color: #ff7a18;
}

@media (max-width: 768px){
    .box-title{
        font-size: 22px;
        line-height: 1.4;
    }
} 


.orange-icon{
    color:#f28c28;
    font-size:18px;
}
.logo-link{
    text-decoration:none;
    color:inherit;
}

.logo-link:hover{
    text-decoration:none;
}