*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#090909;

color:#ffffff;

overflow-x:hidden;

line-height:1.6;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

section{

padding:100px 8%;

}

h1,h2,h3{

font-weight:700;

}

p{

color:#cfcfcf;

}

::selection{

background:#67ff1f;

color:#000;

}

/* NAVBAR */

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(0,0,0,.7);

backdrop-filter:blur(12px);

}

.navbar{

max-width:1400px;

margin:auto;

padding:18px 8%;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:32px;

font-weight:800;

letter-spacing:2px;

}

.logo span{

color:#67ff1f;

}

.nav-links{

display:flex;

gap:35px;

list-style:none;

}

.nav-links a{

transition:.3s;

font-weight:500;

}

.nav-links a:hover{

color:#67ff1f;

}

.call-btn{

background:#67ff1f;

color:#000;

padding:12px 26px;

border-radius:40px;

font-weight:700;

transition:.3s;

}

.call-btn:hover{

transform:translateY(-3px);

box-shadow:0 0 20px #67ff1f;

}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:57% 43%;
    align-items:center;
    gap:40px;
}

.hero-left{
    flex:1;

}
.hero-right{
    flex:1;
    width:100%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}


.hero-right img{
    width:160%;
    max-width:none;
    height:auto;
    transform: translateX(60px);
}




.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margiheron-top:50px;
}





.stats h2{

font-size:38px;

color:#67ff1f;

margin-bottom:10px;

}

.stats span{

color:#ddd;

}

/* SERVICES */

.services{

background:#111;

text-align:center;

}

.services h2{

font-size:48px;

margin-bottom:60px;

}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.card{

background:#171717;

padding:45px 30px;

border-radius:20px;

border:1px solid #222;

transition:.35s;

}

.card:hover{

transform:translateY(-10px);

border-color:#67ff1f;

box-shadow:0 0 35px rgba(103,255,31,.2);

}

.icon{

font-size:50px;

margin-bottom:20px;

}

.card h3{

font-size:26px;

margin-bottom:15px;

}

.card p{

color:#bbb;

}

/* WHY US */

.why-us{

background:#090909;

text-align:center;

}

.why-us h2{

font-size:48px;

margin-bottom:60px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.why-card{

background:#151515;

padding:40px;

border-radius:20px;

border:1px solid #222;

transition:.3s;

}

.why-card:hover{

border-color:#67ff1f;

transform:translateY(-8px);

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

color:#67ff1f;

}
/* GALLERY */

.gallery{

background:#111;

text-align:center;

}

.gallery h2{

font-size:48px;

margin-bottom:15px;

}

.section-text{

max-width:700px;

margin:0 auto 50px;

color:#bdbdbd;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:25px;

}

.gallery-card{

overflow:hidden;

border-radius:20px;

border:1px solid #222;

}
.gallery-item{
    transition: .35s ease;
}

.gallery-item:hover{
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,255,0,.25);
}

.gallery-card img{
    width:100%;
    height:auto;
    display:block;
}



.gallery-card:hover img{

transform:scale(1.12);

}

/* REVIEWS */

.reviews{

background:#090909;

text-align:center;

}

.reviews h2{

font-size:48px;

margin-bottom:60px;

}

.reviews-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.review{

background:#151515;

padding:40px;

border-radius:20px;

border:1px solid #222;

font-size:20px;

transition:.35s;

}

.review:hover{

transform:translateY(-10px);

border-color:#67ff1f;

box-shadow:0 0 30px rgba(103,255,31,.2);

}

.review p{

margin:20px 0;

color:#cfcfcf;

}

.review h4{

color:#67ff1f;

font-size:20px;

}
/* CONTACT */

.contact{

background:#111;

text-align:center;

}

.contact h2{

font-size:48px;

margin-bottom:20px;

}

.contact p{

max-width:700px;

margin:0 auto 50px;

color:#bdbdbd;

}

.contact form{

max-width:750px;

margin:0 auto;

display:flex;

flex-direction:column;

gap:20px;

}

.contact input,

.contact textarea{

width:100%;

padding:18px 22px;

background:#1a1a1a;

border:1px solid #2d2d2d;

border-radius:15px;

color:#fff;

font-size:16px;

font-family:'Poppins',sans-serif;

outline:none;

transition:.3s;

}

.contact input:focus,

.contact textarea:focus{

border-color:#67ff1f;

box-shadow:0 0 15px rgba(103,255,31,.25);

}

.contact textarea{

resize:vertical;

min-height:180px;

}

.contact button{

background:#67ff1f;

color:#000;

border:none;

padding:18px;

border-radius:50px;

font-size:18px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.contact button:hover{

transform:translateY(-5px);

box-shadow:0 0 25px #67ff1f;

}

.contact-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:40px;

flex-wrap:wrap;

}

/* FOOTER */

footer{

background:#050505;

padding:60px 8%;

text-align:center;

border-top:1px solid #1e1e1e;

}

.footer-content h3{

font-size:36px;

margin-bottom:20px;

}

.footer-content span{

color:#67ff1f;

}

.footer-content p{

margin:8px 0;

color:#bdbdbd;

}

/* WHATSAPP */

.whatsapp-float{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

color:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.35);

z-index:9999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

}
/* RESPONSIVE */

@media(max-width:1100px){

.hero h1{

font-size:58px;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:900px){

.navbar{

padding:18px 5%;

}

.nav-links{

display:none;

}

.hero{

padding:120px 5% 80px;

height:auto;

min-height:100vh;

}

.hero h1{

font-size:46px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-green,

.btn-dark{

width:280px;

text-align:center;

}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
    width:100%;
}

section{

padding:80px 5%;

}

.services h2,

.why-us h2,

.gallery h2,

.reviews h2,

.contact h2{

font-size:38px;

}

.gallery-item img{

height:260px;

}

.contact-buttons{

flex-direction:column;

align-items:center;

}

.contact-buttons a{

width:280px;

text-align:center;

}

}

@media(max-width:600px){

.logo{

font-size:24px;

}

.hero h1{

font-size:34px;

line-height:1.2;

}

.hero p{

font-size:16px;

}

.services h2,

.why-us h2,

.gallery h2,

.reviews h2,

.contact h2{

font-size:30px;

}

.card,

.why-card,

.review{

padding:30px 22px;

}

.whatsapp-float{

width:58px;

height:58px;

font-size:28px;

right:18px;

bottom:18px;

}

}
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}



/* ===========================
   HOW IT WORKS
=========================== */

.process{
    padding:120px 8%;
    background:#111;
    text-align:center;
}

.process h2{
    font-size:52px;
    margin-bottom:70px;
    color:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.process-card{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:45px 30px;
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:#39ff14;
    box-shadow:0 20px 40px rgba(57,255,20,.2);
}

.step{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#39ff14;
    color:#000;
    font-size:32px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-card h3{
    color:#39ff14;
    font-size:28px;
    margin-bottom:20px;
}

.process-card p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:17px;
}

@media(max-width:900px){

.process-grid{
    grid-template-columns:1fr;
}

.process h2{
    font-size:40px;
}

}   /* <-- أضف هذا القوس */

/* ===========================
   FAQ
=========================== */

/* ===========================
   FAQ
=========================== */

.faq{
    padding:100px 8%;
    background:#0f0f0f;
}

.faq h2{
    text-align:center;
    font-size:46px;
    margin-bottom:60px;
    color:#fff;
}

.faq-container{
    max-width:1000px;
    margin:auto;
}

.faq-item{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    margin-bottom:20px;
    transition:.3s;
}

.faq-item:hover{
    border-color:#39ff14;
    box-shadow:0 15px 35px rgba(57,255,20,.15);
}

.faq-item h3{
    color:#39ff14;
    margin-bottom:15px;
    font-size:24px;
}

.faq-item p{
    color:#d0d0d0;
    line-height:1.8;
    font-size:17px;
}

.faq{
    padding:100px 10%;
    text-align:center;
}

.faq h2{
    font-size:56px;
    margin-bottom:60px;
    color:#fff;
    font-weight:700;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:25px;
    margin-bottom:20px;
    text-align:left;
    transition:.3s;
}

.faq-item:hover{
    border-color:#39ff14;
    box-shadow:0 0 20px rgba(57,255,20,.2);
}

.faq-item h3{
    color:#39ff14;
    margin-bottom:15px;
    font-size:24px;
}

.faq-item p{
    color:#ddd;
    line-height:1.7;
}

