:root{
  --bg:#080607;
  --card:#0f0f10;
  --muted:#bdb6b6;
  --accent:#C0584F;
  --accent-dark:#C0584F;
  --glass: rgba(255,255,255,0.04);
  --radius:18px;
  --container:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family: 'Montserrat', sans-serif;
  margin:0;
  background: linear-gradient(180deg, #000000 0%, #000000 100%);
  color:#eee;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.4;
}

/* layout */
.container{max-width:var(--container);margin:0 auto;padding:22px}

.site-header{position:sticky;top:0;z-index:50;background:transparent;padding:16px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;align-items:center;gap:10px}
.logo{width:40px;height:40px;object-fit:cover;border-radius:8px;box-shadow:0 6px 18px rgba(0,0,0,0.6)}
.brand-name{font-weight:700;letter-spacing:0.6px}

.nav{display:flex;gap:18px;align-items:center}
.nav a{color:#ddd;text-decoration:none;font-weight:600}
.btn-outline{padding:8px 14px;border-radius:999px;border:1px solid rgba(255,255,255,0.08);background:transparent;color:#fff;text-decoration:none}

/* mobile nav */
.nav-toggle{display:none;background:transparent;border:0;color:#fff;font-size:22px}

/* hero */
.hero{min-height:520px;display:flex;align-items:center;justify-content:center;position:relative;background-image:url('/mnt/data/71c621ff-fb01-45dd-83a4-e3c94335e312.png');background-size:cover;background-position:center}
.hero-overlay{width:100%;background:linear-gradient(180deg, rgba(8,8,8,0.45) 0%, rgba(2,2,2,0.8) 100%);padding:80px 0}
.hero-content{text-align:center;color:#fff;margin:0 auto;max-width:900px}
.hero-title{font-size:34px;margin:0;font-weight:800;letter-spacing:1px}
.hero-title span{color:var(--accent);display:block;margin-top:8px}
.hero-sub{color:var(--muted);margin:16px 0 26px;font-weight:500}
.hero-cta{display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  transform: translateY(190px);} 
.btn-primary{background: linear-gradient(180deg, #ffffff 0%, #e5e5e5 100%);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0px 4px 14px rgba(255, 255, 255, 0.2),
  inset 0px -1px 3px rgba(0,0,0,0.15);
  transition: 0.2s ease;
  backdrop-filter: blur(6px);}
  .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 18px rgba(255, 255, 255, 0.35),
              inset 0px -1px 3px rgba(0,0,0,0.25);
}
/* --- CTA WRAPPER --- */
.hero-cta{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  transform: translateY(190px);
}


/* --- PRIMARY BUTTON (Premium Style) --- */
.btn-pro{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 32px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.35);
  border-radius:40px;
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition:0.25s ease;
  box-shadow:0 0 18px rgba(255,255,255,0.1);
}

/* subtle inner shine */
.btn-pro::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition:0.4s;
}

.btn-pro:hover::before{
  left:100%;
}

.btn-pro:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 0 20px rgba(255,255,255,0.3);
}

/* arrow small motion */
.btn-pro .arrow{
  transition:0.25s ease;
}
.btn-pro:hover .arrow{
  transform:translateX(5px);
}


/* --- OUTLINE Button (secondary clean style) --- */
.btn-outline{
  padding:12px 26px;
  border-radius:40px;
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
  text-decoration:none;
  font-weight:500;
  backdrop-filter:blur(6px);
  transition:0.25s;
}

.btn-outline:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.35);
  transform:translateY(-2px);
}

.btn-ghost{display:inline-block;background:transparent;border:1px solid rgba(255,255,255,0.08);padding:10px 18px;border-radius:999px;color:#fff;text-decoration:none}

/* sections */
.section{padding:60px 0}
.section-title{font-weight:800;font-size:20px;margin-bottom:18px;display:flex;align-items:center;gap:12px}
.tag{background:var(--glass);color:var(--accent);padding:6px 10px;border-radius:12px;font-weight:700}

/* services list */
.services-list{display:flex;flex-direction:column;gap:12px;margin-top:18px}
.service-card{display:flex;align-items:center;justify-content:space-between;background:rgba(255,255,255,0.02);padding:16px;border-radius:999px;border:1px solid rgba(255,255,255,0.02);box-shadow:0 8px 24px rgba(0,0,0,0.6)}
.service-left{font-weight:600}
.service-left .index{display:inline-block;margin-left:10px;color:var(--muted);font-weight:700}
.see-more{background:linear-gradient(90deg,rgba(255,255,255,0.03),rgba(255,255,255,0.01));border:1px solid rgba(255,255,255,0.06);color:#fff;padding:8px 14px;border-radius:999px}

/* portfolio carousel */
.portfolio-carousel{display:flex;align-items:center;gap:12px;position:relative}
.carousel-track{display:flex;gap:16px;overflow:hidden;scroll-behavior:smooth;padding:10px 0;width:100%}
.card.project{min-width:320px;border-radius:14px;background:linear-gradient(180deg,#111,#0a0a0a);box-shadow:0 10px 30px rgba(0,0,0,0.6);overflow:hidden;position:relative}
.card.project img{width:100%;height:180px;object-fit:cover;display:block}
.proj-meta{padding:12px;font-weight:700}

/* carousel buttons */
.carousel-btn{background:linear-gradient(180deg,rgba(255,255,255,0.03),rgba(255,255,255,0.01));border:0;padding:12px 14px;border-radius:10px;color:#fff;cursor:pointer}

/* pricing */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}
.price-card{background:linear-gradient(180deg,rgba(255,255,255,0.02),rgba(255,255,255,0.01));padding:20px;border-radius:18px;text-align:center}
.featured{transform:translateY(-10px);box-shadow:0 20px 50px rgba(0,0,0,0.7)}
.pc-head{font-weight:800}
.pc-price{font-size:26px;margin:12px 0;font-weight:800}
.pc-list{list-style:none;padding:0;margin:0 0 12px}

/* contact */
.contact-inner{text-align:center}
.contact-bar{display:flex;gap:14px;align-items:center;justify-content:center;flex-wrap:wrap;margin-top:16px}
.contact-item{background:rgba(255,255,255,0.02);padding:10px 14px;border-radius:12px}

/* footer */
.site-footer{padding:30px 0;background:#060606;margin-top:40px}
.footer-grid{display:flex;justify-content:space-between;gap:20px;align-items:flex-start}

/* responsive */
@media (max-width:920px){
  .hero-title{font-size:28px}
  .pricing-grid{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:block}
  .carousel-track{gap:12px}
  .card.project{min-width:260px}
}

@media (max-width:520px){
  .hero{min-height:420px}
  .hero-content{padding:0 16px}
  .services-list .service-card{padding:12px}
  .branding-small{display:none}
}
/* Glass Navbar */
.glass-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  background: rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 15px 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo + text */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

/* Links */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #C0584F;
}

.contact-btn:hover {
  background: #C0584F;
}

/* HERO */
.hero {
  height: 90vh;
  background-image: url('/mnt/data/1f0d3c2d-7daf-4820-8afd-de546cf57a8c.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  text-align: center;
  position: relative;
  top: 40%;
  transform: translateY(-50%);
  color: white;
  margin-top: 100px; /* كبّر الرقم باش تهبط أكثر */
}

.hero h1 {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 span {
  color: #C0584F;
}

.hero strong {
  color: #C0584F;
}

.hero p {
  margin-top: 10px;
  color: #ddd;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 18px;
}


/* NAVBAR SMALL + CLEAN */
.navbar {
  width: 100%;
  max-width: 990px;       /* صغير واحترافي */
  padding: 4px 20px;      /* هادي كتخلي البار رقيق جداً */
  height: 48px;           /* باش نتحكمو فالسماكة بدقة */
  border-radius: 40px;    
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 100px;     /* أصغر من قبل */
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
/* LEFT SIDE */
.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  width: 130px;        /* قدّر الحجم اللي بغيتي */
  height: auto;
  object-fit: contain;
  background: none;   /* مهم */
  box-shadow: none;   /* مهم */
  border-radius: 0;   /* باش مايتقصّش اللوغو */
}


/* CENTER MENU */
.nav-center {
  color: #C0584F;
  list-style: none;
  display: flex;
  gap: 28px;
  transform: translateX(-20px);
}

.nav-center li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}

.nav-center li a:hover {
  color: #C0584F;
}

/* RIGHT BUTTON */
.contact-btn {
  background: #C0584F;
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  margin-right: -10px;   /* 🔥 هادي كتقرّب البوتون لليمن */
}

.contact-btn:hover {
  opacity: 0.85;
}

/* FIX RTL PROBLEM */
body {
  direction: ltr;
  text-align: left;
}
.hero-img {
  width: 100%;
  max-width: 600px;
  margin-top: 40px; /* المسافة بين الكتابة والصورة */
  display: block;
}
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-center li a {
  font-weight: 400; /* Light */
}
.hero h1 {
  font-weight: 600; /* SemiBold */
}
.hero p {
  font-weight: 400; /* Regular */
}
.hero-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title .highlight {
  color: #C0584F;     /* اللون اللي بغيتي */
  display: inline;    /* مهم باش يبقى فبلاصتو وما يخسر السطر */
  font-weight: 700;   /* نفس السمك ديال النص */
}
/* Fade + Slide Up */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealAnim 1s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.3s; }
.reveal.delay-2 { animation-delay: 0.6s; }
.reveal.delay-3 { animation-delay: 0.9s; }

@keyframes revealAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Letter spacing animation (optional effect) */
.hero-title span {
  display: inline-block;
  animation: letterPop 0.8s ease forwards;
  opacity: 0;
}

@keyframes letterPop {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}
#changing-text {
  display: inline-block;
  animation: fadeText 0.8s ease;
}

@keyframes fadeText {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ======= Glassmorphism Navbar ======= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 40px;

  background: rgba(255, 255, 255, 0.05);      /* زجاجي */
  backdrop-filter: blur(18px);                /* Blur */
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Border خفيف */
  
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 0 0 30px 30px; /* باش يجي فيه بزاوية ناعمة */
}
.navbar a {
  color: #eee;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.navbar a:hover {
  color: var(--accent);
  opacity: 1;
}

/* nav center */
.nav-center {
  color: #ffffff;
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* contact button */
.contact-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.25s ease;
}

.contact-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* mobile */
.nav-toggle {
  display: none;
}
/* ===== GLOBAL SECTION ===== */
.services-section {
  padding: 80px 0;
  background: #0c0c0c;
  font-family: "Poppins", sans-serif;
}

.services-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 45px;
  font-weight: 600;
}

.services-title span {
  display: block;
  font-size: 16px;
  color: #ff6b5c;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 500;
}

/* ===== GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 32px;
}

/* ===== SERVICE BOX ===== */
.service-box {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -60%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(255, 90, 70, 0.25), transparent 60%);
  opacity: 0;
  transition: 0.6s ease;
}

.service-box:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.service-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ===== INFO ===== */
.service-box .info h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.service-box .info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 26px;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== BUTTON ===== */
.more-btn {
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.3s ease;
}

.more-btn i {
  transition: transform 0.35s;
  display: inline-block;
}

.more-btn:hover i {
  transform: translateX(5px);
}

.more-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.services-section {
  padding: 120px 0;
}

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.25);
}

.service-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #fff;
}

.service-card p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

/* responsiveness */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
body {
}


/* SERVICE ITEMS */
.service-list {
display: flex;
flex-direction: column;
gap: 22px;
}


.service-item {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(12px);
border-radius: 45px;
padding: 26px 35px;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid rgba(255, 255, 255, 0.15);
}


.service-item .num {
font-size: 22px;
opacity: 0.8;
margin-right: 10px;
}


.service-item .text {
flex: 1;
margin-left: 20px;
font-size: 22px;
font-weight: 300;
}


/* BUTTON */
.see-more {
background: #b6423c;
border: none;
padding: 12px 26px;
border-radius: 35px;
color: #fff;
font-weight: 500;
font-size: 17px;
display: flex;
align-items: center;
gap: 10px;
position: relative;
}


.dot {
width: 15px;
height: 15px;
background: #fff;
border-radius: 50%;
display: inline-block;
}
/* SERVICES HEADER */
.services-header {
  margin-top: -60px;       /* 🔥 يطلع الفوق */
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* SMALL TAG (Our Specialization) */
.tagline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tagline .line {
  width: 40px;
  height: 2px;
  background: #C0584F;
  border-radius: 10px;
}

.tagline p {
  font-size: 14px;
  color: #ccc;
  letter-spacing: 1px;
  font-weight: 300;
}

/* SERVICES BADGE WITH GLASS EFFECT */
.services-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.08);      /* زجاج خفيف */
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

/* ARROW */
.services-badge .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C0584F;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}



.description {
width: 45%;
font-size: 17px;
line-height: 23px;
text-align: right;
}


/* SERVICE ITEMS */
.service-list {
display: flex;
flex-direction: column;
gap: 22px;
}


.service-item {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(12px);
border-radius: 45px;
padding: 5px 5px;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid rgba(255, 255, 255, 0.15);
margin-right: 10px;

  max-width: 70%; /* باش العرض يكون ثابت */
  width: 80%; /* باش كلشي يبقى متساوي */
}

.service-item .num {
font-size: 20px;
opacity: 0.8;
margin-right: 10px;
}


.service-item .text {
flex: 1;
margin-left: 20px;
font-size: 20px;
font-weight: 300;
}


/* BUTTON */
.see-more {
background: #b6423c;
border: none;
padding: 12px 26px;
border-radius: 35px;
color: #fff;
font-weight: 500;
font-size: 17px;
display: flex;
align-items: center;
gap: 10px;
position: relative;
}


.dot {
width: 15px;
height: 15px;
background: #fff;
border-radius: 50%;
display: inline-block;
}
.cb-summary-header h2 span{ display:inline-block; padding:0.08em 0.18em; background:linear-gradient(90deg, rgba(255,255,255,0.03), transparent); border-radius:6px; }

    /* Layout for cards */
    .cb-summary-cards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:20px 28px;
      align-items:start;
    }

    /* column */
    .cb-summary-col{ display:flex; flex-direction:column; gap:18px; }

    /* Card */
    .cb-summary-card{
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border:1px solid rgba(255,255,255,0.04);
      padding:12px;
  border-radius:10px;  /* كان var(--radius) */
      box-shadow: 0 6px 18px rgba(2,6,23,0.6);
      transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s;
      overflow:hidden;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .cb-summary-card:hover{ transform: translateY(-8px); box-shadow: 0 18px 40px rgba(2,6,23,0.8); }

    /* Some cards are bigger (preview large) */
    .cb-summary-card.large{ padding:20px; grid-row:span 2; }

    /* card preview */
    .cb-card{ display:flex; flex-direction:column; gap:12px; width:100%; }
    .cb-card-preview{ width:100%; border-radius:10px; overflow:hidden; background:var(--glass); min-height:90px; display:flex; align-items:center; justify-content:center; }
    .cb-card-preview img, .cb-card-preview video{ width:100%; height:auto; display:block; object-fit:cover; }

    .cb-card-title{ font-size:16px; font-weight:700; margin-top:6px; }
    .cb-card-text{ color:var(--muted); font-size:14px; line-height:1.45; }

    /* small preview style */
    .cb-card-preview.-sm{ min-height:70px; }

    /* left summary text (top-left single thin card) */
    .cb-summary-text{ color:var(--muted); font-size:15px; padding:8px; }

    /* CTA */
    .cb-summary-more{ display:flex; justify-content:center; margin-top:22px; }
    .cb-btn{
      display:inline-grid;
      place-items:center;
      padding:12px 20px;
      border-radius:999px;
      font-weight:700;
      text-decoration:none;
      background:linear-gradient(90deg,var(--accent), #b6423c 120%);
      color:#fff;
      box-shadow: 0 8px 30px rgba(124,92,255,0.18);
      border:none;
      transition: transform .18s, box-shadow .18s, opacity .18s;
    }
    .cb-btn:hover{ transform:translateY(-3px); box-shadow: 0 16px 40px rgba(124,92,255,0.26); }

    /* Responsive */
    @media (max-width:900px){
      .cb-summary-cards{ grid-template-columns:1fr; }
      .cb-summary-header{ text-align:center; }
      .cb-summary-header h2{ justify-content:center; }
      body{ padding:22px; }
    }

    @media (max-width:420px){
      .cb-summary-container{ padding:14px; }
      .cb-card-title{ font-size:15px; }
      .cb-card-text{ font-size:13px; }
    }
.pricing-section {
    padding: 120px 0;
    background: radial-gradient(circle at top, #000000, #000000);
    text-align: center;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.pricing-title {
    font-size: 52px;
    margin-bottom: 12px;
    font-weight: 600;
}

.pricing-subtitle {
    opacity: 0.7;
    margin-bottom: 60px;
    font-size: 18px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.price-card {
    width: 330px;
    padding: 40px 35px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0px 20px 40px rgba(0,0,0,0.35);
    text-align: left;
    position: relative;
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
}

.plan-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 16px;
    opacity: 0.6;
    font-weight: 400;
}

.plan-features li {
    margin-bottom: 12px;
    opacity: 0.85;
    font-size: 15px;
}

.plan-btn {
    margin-top: 25px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-radius: 50px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.plan-btn:hover {
    background: #ddd;
}

/* Popular badge */
.popular {
    border: 1px solid rgba(255,255,255,0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #fff;
    color: #000;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: 600;
}
/* نخلي الكارطات فسطّر واحد */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 5px; /* المسافة بين الكارطات */
  flex-wrap: nowrap; /* باش يبقاو فسطّر واحد */
}

/* نصغّر الكارطات */
.price-card {
  transform: scale(0.85); /* بدّلها 0.80 ولا 0.75 كيف بغيت */
  transform-origin: top center;
}

/* باش مايبانوش كبار */
.price-card {
  width: 500px; /* تقدّر تنقصها 260px إذا بغيتي أصغر */
}
/* الحاوية العامة */
.video-wrapper {
    position: relative;
    width: 100vw;         /* عرض الشاشة كامل */
    height: 90vh;         /* الطول */
    overflow: visible !important;   /* باش الفيديو يخرج */
}

/* الفيديو */
.video-full {
    position: absolute;
    top: 0;
    left: 50%;
    width: 130vw !important;   /* ⬅️ هنا الزيادة فالجوانب */
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* الكتابة فوق الفيديو */
.video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.video-text h1 {
    font-size: 50px;
    font-weight: 700;
}
.intro-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8%;
  gap: 60px;
}

.intro-left video{
  width: 450px;
  border-radius: 10px;
}

.intro-right{
  max-width: 480px;
  font-size: 20px;
  line-height: 1.6;
}

.intro-btn{
  display: inline-block;
  margin-top: 30px;
  padding: 18px 40px;
  border: 2px solid #000;
  border-radius: 50px;
  font-size: 20px;
}
@media(max-width:900px){
  .intro-section{
    flex-direction: column;
    text-align: center;
  }

  .intro-left video{
    width: 100%;
    max-width: 400px;
  }
}

.intro-left{
  margin-top: -100px;
}
.intro-section{
  margin-top: -100px;
}
.intro-btn{
  display: inline-block;
  margin-top: 40px;
  padding: 15px 45px;
  border-radius: 50px;
  border: 2px solid #fff; /* ولا black مهم اللون */
  font-size: 20px;
}
.intro-btn{
  color: #fff;
  text-decoration: none;
}
.intro-btn{
  display: inline-block;
  margin-top: 40px;
  padding: 15px 45px;
  border-radius: 50px;
  border: 2px solid #fff;
  font-size: 20px;
  color: #fff;
  text-decoration: none; /* هادي كتزيل الخط */
}
.intro-section{
  background: #000 !important;
}
@media(max-width:900px){
  .intro-section{
    flex-direction: column;
    text-align: center;
  }

  .intro-left video{
    width: 100%;
    transform: translate(0,0);
  }

  .intro-right{
    width: 100%;
  }
}
/* ====== INTRO TEXT FIX ====== */
.intro-right{
  max-width: 420px;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  z-index: 5;
}

.intro-right p{
  font-weight: 300;
  opacity: .85;
}
.intro-right{
  text-align: left;
  margin-left: -30px; /* باش تقرّب شوية للفيديو */
}
@media(max-width:900px){
  .intro-right{
    text-align: center;
    margin-left: 0;
  }
}
.intro-right{
  text-align: left;
}
.intro-left video{
  transform: translateX(-50px);
  transition: .4s;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* مهم */
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55); /* غامّق باش تبان الكتابة */
  z-index: 2;
}

.hero-content{
  position: relative;
  z-index: 3; /* فوق كلشي */
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;

  display: flex;
  align-items: center;   /* كيرجع النص فالنص عموديا */
  justify-content: center; /* اختياري */
  padding: 0; /* مهم بزاف */
  margin: 0; /* باش متكونش مسافة */
}
.hero-content{
  transform: translateY(-250px);
}
.hero{
  transform: translateY(-60px);
}
.cb-tophead-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 150px 0 80px;
  text-align: center;
}

.cb-tophead-title h1 {
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

.cb-tophead-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 768px) {
  .cb-tophead-title h1 {
    font-size: 38px;
  }
  .cb-tophead-text p {
    font-size: 8px;
  }
}
.cb-tophead-container{
  transform: translateY(-100px);
}
.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordUp .6s ease forwards;
}

.word-reveal span:nth-child(1) { animation-delay: .1s; }
.word-reveal span:nth-child(2) { animation-delay: .2s; }
.word-reveal span:nth-child(3) { animation-delay: .3s; }
.word-reveal span:nth-child(4) { animation-delay: .4s; }
.word-reveal span:nth-child(5) { animation-delay: .5s; }
.word-reveal span:nth-child(6) { animation-delay: .6s; }

@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.subtitle {
  color: white;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* نخبي النص الأول */
.subtitle::after,
.subtitle::before {
  content: "";
}

/* ندير split تلقائي */
.subtitle {
  display: inline-block;
  overflow: hidden;
}

.subtitle span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}

.subtitle span:nth-child(2){
  animation-delay: .2s; /* غير نص فاصل صغير */
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.preview {
  position: relative;
  width: 100%;
  height: 80vh; /* زيدها اذا بغيتي */
  overflow: hidden;
  margin: 120px 0;
  border-radius: 30px;
}

.preview-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -90%);
  border-radius: 30px;
  animation: zoomVid 10s ease-in-out infinite;
}
@keyframes zoomVid {
  0% {transform: translate(-50%, -50%) scale(1);}
  50% {transform: translate(-50%, -50%) scale(1.07);}
  100% {transform: translate(-50%, -50%) scale(1);}
}

.preview-video{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%) scale(1.15);
  animation: zoomVid 12s ease-in-out infinite;
  object-fit: cover;
}

@keyframes zoomVid{
  0%{
    transform: translate(-50%, -50%) scale(1.05);
  }
  50%{
    transform: translate(-50%, -50%) scale(1.15);
  }
  100%{
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.preview-box{
  max-width: 1100px; /* زيد هادي */
}
.preview-media video{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: auto;
  height:100%;
}
/* تأثير hover */
.cb-splitshow-preview-media:hover img {
  transform: scale(1.1);
}
.cb-splitshow-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 0;
}

.cb-splitshow-preview {
  overflow: hidden;
  border-radius: 25px;
}

.cb-splitshow-preview-media img {
  width: 100%;
  display: block;
  transform: scale(1.08);
  transition: transform 0.5s ease;
}

.cb-splitshow-preview-media:hover img {
  transform: scale(1.15);
}


video.hero-img {
    width: 100%;
    margin: 90px auto;
    display: block;
    border-radius: 40px;
    margin-top: 5px;   /* طلّع شوية */
}
.video-hero {
    position: relative;
    width: 100%;
    height: 85vh; /* يمكنك تغييرها: 70vh / 100vh */
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* هادي لي كتخلي الفيديو يشد من القنت تال القنت */
    
}

.video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.video-text h1 {
    font-size: 65px;
    font-weight: 700;
}

.video-text p {
    font-size: 30px;
    opacity: 0.8;
}
/* Layout */
.cb-summary-container {
  width: 100%;
  padding: 60px 0;
}

.cb-summary-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Grid */
.cb-summary-cards {
  display: flex;
  gap: 40px;
}

.cb-summary-col {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Cards */
.cb-summary-card {
  position: relative;
  transition: 0.3s;
}

.cb-card {
  display: block;
  text-decoration: none;
  color: white;
}

.cb-card-preview {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.cb-card-preview-media img,
.cb-card-preview-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video hidden by default */
.cb-card-preview-media.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s;
}

/* Hover: show video */
.cb-card:hover .cb-card-preview-media.video {
  opacity: 1;
}

/* Caption */
.cb-card-caption {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.4;
}

/* Button */
.cb-summary-more {
  text-align: center;
  margin-top: 50px;
}

.cb-btn_cta {
  padding: 14px 32px;
  border: 1px solid white;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.cb-btn_cta:hover {
  background: white;
  color: black;
}
/* container */
.container{
  max-width:1200px;
  margin:0 auto;
}

/* header */
.summary-header{margin-bottom:18px}
.title{
  font-size:28px;
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:600;
}
.title-accent{
  background:linear-gradient(90deg,var(--accent),#06b6d4);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  padding-right:6px;
}

/* layout: 2 columns */
.summary-cards{
  display:flex;
  gap:24px;
  align-items:flex-start;
}
.col{flex:1;display:flex;flex-direction:column;gap:18px}

/* card */
.card{
  --tx: 0px;
  --ty: 0px;
  --s: 1;
  position:relative;
  overflow:visible;
  border-radius:14px;
  cursor:pointer;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms;
  transform: translate3d(var(--tx), var(--ty), 0) scale(var(--s));
  will-change: transform;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:10px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow: 0 6px 30px rgba(2,6,23,0.6);
  border: 1px solid rgba(255,255,255,0.03);
}

/* glassy hover shadow + border */
.card:hover{
  transform: translate3d(var(--tx), calc(var(--ty) - 6px), 0) scale(calc(var(--s) + 0.01));
  box-shadow: 0 18px 40px rgba(2,6,23,0.75);
  border:1px solid rgba(255,255,255,0.06);
}

/* media */
.card-media{
  width:120px;
  height:72px;
  flex:0 0 120px;
  border-radius:10px;
  overflow:hidden;
  background:var(--surface);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
  transform-origin:center;
}
.card-media.-sm{width:84px; height:56px; flex:0 0 84px}

.card-media img{
  width:110%;
  height:110%;
  object-fit:cover;
  transform:translate3d(0,0,0);
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}

/* caption */
.card-caption{
  font-size:14px;
  color:var(--text);
  line-height:1.2;
}

/* small CTA */
.more{margin-top:28px}
.center{text-align:center}
.btn-cta{
  display:inline-block;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  background:linear-gradient(90deg,var(--accent),#ffffff);
  color:#fff;
  box-shadow: 0 8px 28px rgba(139,92,246,0.15);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.btn-cta:hover{transform:translateY(-4px); box-shadow:0 18px 40px rgba(255, 255, 255, 0.18);}

/* custom cursor */
.cursor{
  width:24px;height:24px;border-radius:50%;
  position:fixed;pointer-events:none;z-index:9999;
  background:transparent;border:2px solid rgba(255,255,255,0.14);
  transform:translate3d(-50%,-50%,0);
  mix-blend-mode:screen;
  transition: transform 120ms ease, opacity 250ms linear;
  opacity:0;
  backdrop-filter: blur(2px);
}

/* clicked ripple effect (tiny) */
.card.clicked{
  transform: scale(0.995) translateY(1px);
  transition: transform 160ms ease;
}

/* responsive */
@media (max-width:880px){
  .summary-cards{flex-direction:column}
  body{padding:18px}
  .card-media{width:100px;height:64px}
}

/* accessibility focus */
.card-link:focus .card{outline:3px solid rgba(139,92,246,0.14); outline-offset:4px}

/* subtle entrance animation */
.card{opacity:0; transform-origin:center; animation: enter .6s forwards ease;}
.card:nth-child(1){animation-delay:0.02s}
.card:nth-child(2){animation-delay:0.06s}
.card:nth-child(3){animation-delay:0.12s}
.card:nth-child(4){animation-delay:0.18s}
@keyframes enter{
  to {opacity:1; transform: translate3d(var(--tx),var(--ty),0) scale(var(--s));}
}





/* تخليها ثابتة غير داخل FEATURED PROJECTS */
.cb-summary-content h2 span {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px; /* زيد أو نقص */
}

.cb-summary-content.-rt:first-of-type {
  margin-top: -20px;
}
.card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    text-align: left;
}

nav {
    width: 100%;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(12px);
    z-index: 1000;
}

nav .logo {
    width: 130px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li {
    font-size: 17px;
    cursor: pointer;
}

nav ul li:hover {
    opacity: 0.5;
}

/* زر المنيو فالموبايل */
.menu-btn {
    display: none;
    font-size: 35px;
    cursor: pointer;
}

/* ===================== */
/*       MOBILE          */
/* ===================== */

@media (max-width: 850px) {

    nav {
        padding: 12px 6%;
    }

    /* كنبينو زر المنيو */
    .menu-btn {
        display: block;
        user-select: none;
    }

    /* كيختفي الـ UL فالوضع العادي */
    nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        padding: 25px 0;
        text-align: center;
        gap: 25px;
        display: none;
    }

    /* ملي كيتفتح */
    nav ul.active {
        display: flex;
    }

    nav ul li {
        font-size: 22px;
        color: #fff;
    }
}
.project-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap; /* مهم باش فالموبايل ميخرجوش */
}

.project-tabs .tab {
    padding: 12px 25px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.project-tabs .tab.active {
    background: #000;
    color: #fff;
}

/* ============  MOBILE  ============ */
@media (max-width: 850px) {
    .project-tabs {
        gap: 10px;
    }

    .project-tabs .tab {
        padding: 10px 18px;
        font-size: 15px;
        border-radius: 6px;
    }
}

/* ============  SMALL MOBILE  ============ */
@media (max-width: 500px) {
    .project-tabs .tab {
        padding: 8px 15px;
        font-size: 14px;
    }
}
nav ul li a {
    text-decoration: none;   /* تحييد الخط تحت الرابط */
    color: inherit;          /* يرجع اللون الأصلي بلا ما يتبدل */
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    opacity: 0.6;            /* تأثير زوين فـ hover */
}
/* زر المنيو مخبي فالديسكتوب */
.menu-btn {
  display: none;
  font-size: 35px;
  cursor: pointer;
  color: #fff;
}

/* MOBILE */
@media (max-width: 850px) {

  .menu-btn {
    display: block;
  }

  nav ul {
    display: none; /* ⛔ مخبيين فالأول */
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    gap: 25px;
    padding: 30px 0;
    text-align: center;
  }

  nav ul.active {
    display: flex; /* ✅ كيبانو غير ملي نضغط */
  }
}
