/* Base */
*{box-sizing:border-box}html{scroll-behavior:smooth}
body{margin:0;background:#0b0b0b;color:#e5e7eb;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,'Noto Sans',sans-serif}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 16px}
.muted{opacity:.75}.small{font-size:.875rem}

/* Navbar */
.navbar{position:sticky;top:0;backdrop-filter:blur(8px);background:rgba(0,0,0,.6);border-bottom:1px solid rgba(255,255,255,.08);z-index:50}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700}
.brand img{width:28px;height:28px;border-radius:6px}
.navbar nav{display:flex;align-items:center;gap:16px}
.navbar a{color:#e5e7eb;text-decoration:none;opacity:.85}
.navbar a:hover{opacity:1}
.btn{background:#00bfff;color:#001018;border:0;border-radius:10px;padding:10px 14px;font-weight:700;cursor:pointer;text-decoration:none}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,.18);color:#e5e7eb}
.lang-btn{background:#111;border:1px solid rgba(255,255,255,.18);color:#e5e7eb;border-radius:8px;padding:8px 10px;cursor:pointer}




.hero {
  background: url('assets/images/') no-repeat center;
  background-size: cover;
  padding: 120px 0;
}
.hero h1 {
  background-color: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 8px;
}


.hero h1 {
  position: relative;
  color: #fff;
  text-shadow: 0 0 20px #00ffd5, 0 0 40px #0077ff;
}


/* Floating WhatsApp */
/* أيقونة واتساب العائمة */
/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-in-out;
  z-index: 1000;
}



.project video {
  max-width: 500px; /* حجم الفيديو */
  width: 90%; /* يتقلص على الشاشات الصغيرة */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.project video:hover {
  transform: scale(1.02);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

/*----------*/





/* Hero */
.hero{padding:64px 0 24px}
.hero h1{font-size:clamp(28px,5vw,56px);line-height:1.1}
.hero-actions{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}

/* Sections */
.section{padding:56px 0}
.section h2{font-size:clamp(22px,3.3vw,34px);margin:0 0 20px}

/* Tabs */
.tabs{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:16px}
.tab{background:#111;border:1px solid rgba(255,255,255,.12);color:#e5e7eb;border-radius:999px;padding:8px 14px;cursor:pointer}
.tab.active,.tab:hover{background:#00bfff;color:#001018;border-color:transparent}

/* Grid */
.grid{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));gap:16px}
@media(min-width:700px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.grid{grid-template-columns:repeat(3,1fr)}}
.card{background:#111;border:1px solid rgba(255,255,255,.12);border-radius:14px;overflow:hidden}
.card-media{aspect-ratio:16/9;background:#0d0d0d;display:flex;align-items:center;justify-content:center}
.card-media img,.card-media video{width:100%;height:100%;object-fit:cover}
.card-body{padding:12px 14px;display:flex;align-items:center;justify-content:space-between}
.tag{font-size:.75rem;padding:4px 8px;border-radius:999px;background:rgba(255,255,255,.08)}
.title{font-weight:700}

/* Contact */
.contact-form .row{display:grid;gap:12px;grid-template-columns:1fr}
@media(min-width:700px){.contact-form .row{grid-template-columns:1fr 1fr}}
.field{display:flex;flex-direction:column;gap:6px}
input,textarea{background:#0f0f0f;border:1px solid rgba(255,255,255,.12);border-radius:10px;color:#e5e7eb;padding:10px 12px}
input:focus,textarea:focus{outline:2px solid #00bfff}

/* Footer */
.footer{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;opacity:.85}
.footer .container{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
