*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#0a0f1c;
color:#e6edf3;
}

/* Header */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#0a0f1c;
position:fixed;
width:100%;
top:0;
z-index:1000;
border-bottom:1px solid #111827;
}

.logo{
font-size:24px;
font-weight:bold;
color:#ffffff;
}

.logo span{
color:#00f5ff;
}

nav a{
color:#cbd5e1;
text-decoration:none;
margin-left:25px;
transition:0.3s;
}

nav a:hover{
color:#00f5ff;
}


/* HERO */
/* HERO */
.hero{
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Background image */
.hero-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Overlay */
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(10,15,28,0.8),
        rgba(10,15,28,0.9)
    );
    z-index: 1;
}

/* Content */
.hero-content{
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1{
    font-size: 55px;
    color: #00f5ff;
    margin-bottom: 20px;
}

.hero p{
    font-size: 20px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

/* Overlay باش الكتابة تبان */
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.85)
    );
}

/* Content */
.hero-content{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.hero h1{
    font-size: 55px;
    color: #00f5ff; /* Gold */
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.hero p{
    font-size: 20px;
    margin-bottom: 30px;
    color: #eee;
}

.btn{
    padding: 14px 35px;
    background: #00f5ff;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn:hover{
    background:#00f5ff;
    transform: scale(1.05);
}


/* Services */
.services{
padding:120px 8%;
text-align:center;
}

.services h2{
color:#00f5ff;
margin-bottom:60px;
font-size:36px;
}

.service-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.card{
background:#111827;
padding:40px 30px;
width:300px;
border:1px solid #1f2937;
border-radius:15px;
transition:0.4s;
}

.card:hover{
transform:translateY(-10px);
border-color:#00f5ff;
box-shadow:0 10px 30px rgba(0,245,255,0.2);
}

.card h3{
margin-bottom:15px;
}

/* CTA */
.cta{
padding:100px 20px;
text-align:center;
background:#111827;
}

.cta h2{
margin-bottom:30px;
}

/* Footer */
footer{
text-align:center;
padding:30px;
background:#0a0f1c;
color:#64748b;
}

/* Animation */
@keyframes flow{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

/* Responsive */
@media(max-width:768px){
.hero h1{
font-size:32px;
}
header{
padding:20px;
}
}