*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Tajawal',sans-serif;
}

body{
    background:#0B0B0F;
    color:#fff;
    overflow-x:hidden;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(11,11,15,.9);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(109,40,255,.15);
    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:900;
}

.logo span{
    color:#6D28FF;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#6D28FF;
}

.nav-btn{
    text-decoration:none;
    color:#fff;
    background:#6D28FF;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.nav-btn:hover{
    transform:translateY(-2px);
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:140px 20px 80px;
    background:
    radial-gradient(circle at top,
    rgba(109,40,255,.25),
    transparent 50%);
}

.hero-content{
    max-width:950px;
}

.badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(109,40,255,.1);
    border:1px solid rgba(109,40,255,.3);
    margin-bottom:25px;
    font-weight:700;
}

.hero h1{
    font-size:72px;
    line-height:1.2;
    font-weight:900;
    margin-bottom:25px;
}

.hero h1 span{
    display:block;
    color:#6D28FF;
}

.hero p{
    font-size:22px;
    color:#cfcfcf;
    line-height:1.8;
    max-width:750px;
    margin:auto;
    margin-bottom:45px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:45px;
}

.feature{
    background:#121218;
    border:1px solid rgba(109,40,255,.15);
    border-radius:18px;
    padding:24px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-5px);
    border-color:#6D28FF;
    box-shadow:0 0 25px rgba(109,40,255,.15);
}

.feature h3{
    font-size:18px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#6D28FF;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:12px;
    font-weight:800;
}

.secondary-btn{
    border:1px solid #6D28FF;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:12px;
    font-weight:800;
    transition:.3s;
}

.secondary-btn:hover{
    background:#6D28FF;
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .logo{
        font-size:24px;
    }

    .nav-btn{
        font-size:14px;
        padding:12px 18px;
    }
}




<!-- الخدماتcss  -->





.services-page{
    padding:150px 8% 80px;
    text-align:center;
}

.services-page h1{
    font-size:52px;
    margin-bottom:20px;
}

.services-page p{
    max-width:800px;
    margin:auto;
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.service-card{
    background:#121218;
    border:1px solid rgba(109,40,255,.15);
    border-radius:20px;
    padding:35px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    border-color:#6D28FF;
}

.service-card h2{
    margin-bottom:15px;
}

.featured{
    border:2px solid #6D28FF;
}




<!-- CONTACT US   -->





css
.contact-page{
    padding:160px 20px 80px;
    display:flex;
    justify-content:center;
}

.contact-container{
    width:100%;
    max-width:700px;
    text-align:center;
}

.contact-badge{
    display:inline-block;
    padding:12px 20px;
    border-radius:50px;
    border:1px solid rgba(109,40,255,.3);
    background:rgba(109,40,255,.1);
    margin-bottom:25px;
}

.contact-container h1{
    font-size:55px;
    margin-bottom:20px;
}

.contact-container p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:40px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    background:#121218;
    border:1px solid rgba(109,40,255,.15);
    border-radius:12px;
    color:white;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#6D28FF;
}

.contact-form button{
    background:#6D28FF;
    color:white;
    border:none;
    padding:18px;
    border-radius:12px;
    font-weight:800;
    cursor:pointer;
}

.contact-info{
    margin-top:40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.info-box{
    background:#121218;
    border:1px solid rgba(109,40,255,.15);
    border-radius:12px;
    padding:18px;
}

@media(max-width:768px){

    .contact-container h1{
        font-size:38px;
    }

    .contact-info{
        grid-template-columns:1fr;
    }

}



<!-- WHY US  -->



.why-us{
    background:#0f0f14;
    padding:100px 20px;
    direction:rtl;
    font-family:'Cairo',sans-serif;
}

.container{
    max-width:1200px;
    margin:auto;
}

.subtitle{
    display:block;
    text-align:center;
    color:#8b5cf6;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.why-us h2{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:60px;
    font-weight:800;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.card{
    background:linear-gradient(
        145deg,
        rgba(139,92,246,0.15),
        rgba(255,255,255,0.03)
    );
    border:1px solid rgba(139,92,246,0.25);
    border-radius:20px;
    padding:35px;
    text-align:center;
    backdrop-filter:blur(10px);
    transition:0.4s ease;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#8b5cf6;
    box-shadow:0 15px 40px rgba(139,92,246,0.25);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
}

.card p{
    color:#bdbdbd;
    line-height:1.8;
    font-size:15px;
}