/* ===== english fonts ===== */

@font-face {
  font-family: 'sitelySignature-en';
  src: url('../fonts/en/SitelyFontSignature-Regular-en.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'sitelyregular-en';
  src: url('../fonts/en/SitelyFont-Regular-en.ttf') format('truetype');
  font-weight: 500;
}

/* ===== arabic fonts ===== */

@font-face {
  font-family: 'SitelyFont-Light-ar';
  src: url('../fonts/ar/SitelyFont-Light-ar.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'SitelyFont-Bold-ar';
  src: url('../fonts/ar/SitelyFont-Bold-ar.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'SitelyFont-Book-ar';
  src: url('../fonts/ar/SitelyFont-Book-ar.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'SitelyFont-Medium-ar';
  src: url('../fonts/ar/SitelyFont-Medium-ar.ttf') format('truetype');
  font-weight: 500;
}





:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#6b7280;
  --panel:#ffffff;
  --border:#e5e7eb;
  --accent1:#4300ff;
  --accent2:#0065f8;
  --accent3:#00caff;
  --accent4:#00ffde;
  --shadow:0 20px 50px rgba(2, 6, 23, .08);
}

.dark{
  --bg:#0b1220;
  --text:#e6edf7;
  --muted:#94a3b8;
  --panel:#0f172a;
  --border:#1f2a44;
  --shadow:0 20px 50px rgba(0,0,0,.45);
}


*{box-sizing:border-box}

html,body{ 
  margin:0;
  padding:0; 
  overflow-x: hidden;
}

body{
  background:var(--bg);
  color:var(--text);
  font:16px/1.5 system-ui, -apple-system, Segoe UI, Inter, Arial, sans-serif
}

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px
}








/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*-------------------------------- Hero Title --------------------------------*/

.hero{position:relative;min-height:64vh;display:grid;place-items:center;padding:10px 0}

.hero-bg{
  position:absolute; inset:0; pointer-events:none; z-index:0;
  font-family:'sitelyregular-en', system-ui, sans-serif;
  display:grid; place-items:center; gap:0.1em;
  font-weight:900; line-height:.8; text-align:center;
  font-size:clamp(42px, 10vw, 180px);
  --hero-ls-sm:-0.01em; --hero-ls-md:0.50em; --hero-ls-lg:0.10em;
  letter-spacing:var(--hero-ls-md);
  color:#4300ff;
}

@media (min-width:900px){
  .hero-bg{ letter-spacing:var(--hero-ls-lg); }
}
@media (max-width:600px){
  .hero-bg{ letter-spacing:var(--hero-ls-sm); }
}


.hero-bg span{ display:block }

.hero-bg-ar{
  direction:rtl;
  font-family:'SitelyFont-Bold-ar';
  letter-spacing:normal;
  word-spacing:.08em;     
  line-height:.85;
}


@media (max-width: 768px){
  .hero{
    min-height: 52vh;
    padding: 24px 0 16px;
  }

  .hero-bg{
    font-size: clamp(24px, 18vw, 62px);
    line-height: .9;
    letter-spacing: var(--hero-ls-sm);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 100px;
    gap: 0.8em;   
  }

  .hero-bg-ar{
    font-size: clamp(22px, 16vw, 51px);
    line-height: .95;
    word-spacing: .04em;
  }
}


@media (max-width: 768px){
  .hero{
    min-height: 52vh;
    padding: 24px 0 16px;
  }

  .hero-bg{
    font-size: clamp(24px, 18vw, 62px);
    line-height: .9;
    letter-spacing: var(--hero-ls-sm);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 100px;
    gap: 0.8em;   
  }

  .hero-bg-ar{
    font-size: clamp(22px, 16vw, 51px);
    line-height: .95;
    word-spacing: .04em;
  }
}



@media (max-width: 430px){
  .hero{
    min-height: 56vh;
    padding-top: 32px;
  }

  .hero-bg{
    font-size: clamp(22px, 14vw, 40px);
    gap: 0.25em;
    padding: 0 1rem;   
  }

  .hero-bg-ar{
    font-size: clamp(12px, 16vw, 41px);
  }
}



/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*-------------------------------- Hero Image --------------------------------*/



:root{
  --hero-fade-start: 78%;   
  --hero-fade-end:   100%;  
}

.hero-char{
  position: relative;
  z-index: 2;
  max-width: min(420px, 60vw);
  width: 100%;
  height: auto;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) var(--hero-fade-start),
    rgba(0,0,0,0) var(--hero-fade-end)
  );
          mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) var(--hero-fade-start),
    rgba(0,0,0,0) var(--hero-fade-end)
  );
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}



.hero-cta{
  position:absolute;
  left:min(6vw, 48px);
  bottom:60px;
  z-index:3;
  font-family: 'sitelyregular-en';
}

html[lang="ar"] .hero-cta{
  font-family: 'SitelyFont-Bold-ar';
}


@media (max-width: 768px){
  .hero-cta{
    display: none !important;
  }
}


/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*--------------------------- Services Pill in Hero --------------------------*/

.cta-pill{
  display:inline-flex;
  align-items:center;
  gap:20px;
  padding:11px 18px;
  border-radius:999px;
  background: transparent;
  border:1px solid var(--accent1);
  color:#000000;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 16px 40px rgba(0,101,248,.25);
}
body.dark .cta-pill{
  color:#ffffff;
}
.cta-pill i{background:#fff;color:#000;border-radius:999px;padding:6px}


/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------- stat card in hero ----------------------------*/

.hero{ position:relative; }
.hero-stat{
  position:absolute;
  font-family: 'sitelyregular-en';
  right:min(61vw, -100px);
  top:80%;
  transform:translateY(-50%);
  z-index:4;
  width: clamp(220px, 24vw, 300px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}

html[lang="ar"] .hero-stat{
  font-family: 'SitelyFont-Bold-ar';
}

.hero-stat .stat-top{
  display:flex; align-items:center; justify-content:space-between;
}
.hero-stat .num .n{
  font-size: clamp(38px, 4.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero-stat .badge-logo{
  width: 48px; height: 48px; border-radius: 14px;
  display:grid; place-items:center; font-weight:900;
  background: #eeeeee;
  color:#0a0f1b; box-shadow: inset 0 0 0 6px rgba(255,255,255,.6);
}
.hero-stat .divider{
  height:1px; background: var(--border); margin: 12px 0;
}
.hero-stat .stat-title{
  font-weight:700; margin-bottom:6px;
}
.hero-stat .stat-sub{
  font-size: 13px; color: var(--muted); line-height:1.4;
}

@media (max-width: 980px){
  .hero-stat{
    position: static;
    transform:none;
    margin-top: 14px;
    width: min(420px, 92%);
  }
}


.hero-stat .num{
  display:flex; align-items:baseline; gap:0;
}
.hero-stat .num .n{
  font-size: clamp(38px, 4.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .num .plus{
  font-weight: 900;
  color: var(--accent1);
  margin-inline-start: 4px; 
  line-height: 1;
  font-size: 2.5em;       
}



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

/* ===== Sections / cards ===== */
.section-title{margin:8px 0 12px 0}
.grid{display:grid;gap:14px}
.grid-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:900px){ .grid-3{grid-template-columns:1fr} }
.card{
  background:var(--panel);border:1px solid var(--border);border-radius:18px;padding:18px;box-shadow:var(--shadow)
}
.badge{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;background:#fff;border:1px solid var(--border)}
.dark .badge{background:#0b1327}








/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*-------------------------- Welcome & Sitely Words --------------------------*/


.welcomewords-marquee{
  margin:0;
  padding:10px 0;
  overflow:hidden;
  white-space:nowrap;
  width:100%;
  background:#fff;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;

  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

body.dark .welcomewords-marquee{
  background:#0b1220;
  border-color:#1f2a44;
}

.welcomewords-track{
  display:inline-block;
  padding:0.75rem 0;

  animation: none !important;
  transform: translate3d(0,0,0);
}

.welcomewords-item,
.welcomewords-itemarabic{
  display:inline-block;
  margin:0 2rem;
  color: var(--accent1);
  font-size:1rem;
  vertical-align:middle;
  font-family: 'sitelyregular-en';
}

.welcomewords-itemarabic{ font-family: 'SitelyFont-Bold-ar'; }

.welcomewords-item i,
.welcomewords-itemarabic i{
  margin-inline-end:0.4rem;  
  border:1px solid #00e3ff;
  border-radius:50%;
  padding:0.3rem;
}


@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } 
}
@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}


.welcomewords-item,
.welcomewords-itemarabic{
  display: inline-flex;
  align-items: center;    
  gap: .5rem;              
  line-height: 1.2;       
}


.wel-icon{
  width: 36px;             
  height: 36px;
  object-fit: contain;
  border: 1.5px solid #00e3ff;
  border-radius: 50%;
  padding: 6px;            
  
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*------------------------------ Our Work Cards ------------------------------*/


.casesec{ padding:188px 0 70px; text-align:center; position:relative; }

.casesec-lead{
  font-weight:900; line-height:1.2;
  font-size:clamp(22px, 3.2vw, 36px);
  letter-spacing:-.015em; 
  margin:0 0 80px; 
  font-family: 'sitelyregular-en';
}

html[lang="ar"] .casesec-lead{
  font-family: 'SitelyFont-Bold-ar';
}


.casesec-lead .blue{ color:#0065f8; font-weight:900; font-family: 'sitelyregular-en'; }

html[lang="ar"] .casesec-lead .blue{
  font-family: 'SitelyFont-Bold-ar';
}

.casesec-lead .accent{
  background: linear-gradient(90deg,#4300ff,#0065f8,#00caff,#00ffde);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-weight:900;
  font-family: 'sitelyregular-en';
}

html[lang="ar"] .casesec-lead .accent{
  font-family: 'SitelyFont-Bold-ar';
}


.casesec-wrap{
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
  gap:min(3vw,28px);
}


.casesec-side{
  font-weight:900; letter-spacing:-.02em; color:#0b0b0b;
  font-size:clamp(28px, 5.2vw, 64px);
  opacity:.95; user-select:none;
  font-family: 'sitelyregular-en';

}


html[lang="ar"] .casesec-side{
  font-family: 'SitelyFont-Bold-ar';
}

.casesec-side.right{ text-align:right;  }

.casesec-side.left{ text-align:left; transform: translateX(100px);}

html[lang="ar"] .casesec-side.left{
  transform: translateX(50px);
}


.case-stack{
  position:relative;
  width:clamp(260px, 32vw, 420px);
  aspect-ratio:1/1;
  margin-inline:auto;
}
.case-card{
  position:absolute; inset:0;
  border-radius:22px;
  object-fit:cover; width:100%; height:100%;
  box-shadow: 0 16px 36px rgba(2,6,23,.18), 0 3px 8px rgba(2,6,23,.08);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .3s, filter .3s;
  cursor:pointer; outline:none;
}

.case-card{ transform: translateX(calc(var(--pos,0) * 26px))
                      translateY(calc(var(--pos,0) * -8px))
                      rotate(calc(var(--pos,0) * -4deg))
                      scale(calc(1 - (var(--pos,0) * .05)));
  z-index: calc(100 - var(--pos,0));
  filter: saturate(calc(1 - var(--pos,0)*.25)) brightness(calc(1 - var(--pos,0)*.04));
}

body.dark .casesec-side{ color:#f5f7ff; }

.case-stack{
  position: relative;
  isolation: isolate;      
}

.casesec { position: relative; }

.casesec-corner{
  position: absolute;
  top: -22px;               
  left: -180px;             
  width: clamp(90px, 12vw, 180px);
  height: auto;
  
  opacity: .95;
  pointer-events: none;
  z-index: 0;               
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.12));
}

.casesec-lead, .casesec-wrap { position: relative; z-index: 1; }

@media (max-width: 640px){
  .casesec-corner{ top:-14px; left:-14px; width:120px; }
}



@media (max-width: 768px){
  .casesec-side{
    display:none;
  }

  .casesec-wrap{
    grid-template-columns: 1fr;  
    justify-items: center;      
  }

  .case-stack{
    width: min(320px, 85vw);     
  }
}





/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*--------------------------------- dino Game --------------------------------*/

.brand-section {
  background: #ffffff;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  font-family: 'sitelyregular-en';
}

.headline {
  position: relative;              
  display: inline-block;
  margin: 0 auto 2rem;
  font-weight: 900;
  line-height: 1.05;
  color: #000;
  font-size: clamp(40px, 4.5vw, 70px);
  padding-inline-end: 5.5rem;       
}

.highlight,
.exclaim,
.quotes {
  color: var(--accent1);
}

html[lang="ar"] .headline{
  font-family: 'SitelyFont-Bold-ar','Tajawal',system-ui,sans-serif;
  letter-spacing: normal;
  word-spacing: .06em;
}

.brand-mascot{
  position: absolute;
  top: -10px;
  inset-inline-end: -220px;         
  width: 300px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
  z-index: 2;
}

html[lang="ar"] .brand-mascot{
  inset-inline-end: 1000px;  
}


#dinoGame {
  display: block;
  margin: 1.5rem auto 0;
  background: #f9f9f9;
  border-radius: 14px;

  width: 100%;
  max-width: 800px;
  height: auto;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);

  transform: perspective(1000px) rotateX(2deg);
  transition: transform 0.3s ease;
}

#dinoGame:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(1deg);
}


body.dark .brand-section{
  background: #0b1220;
  color: #eaf2ff;
}
body.dark .headline{ color:#eaf2ff; }
body.dark .highlight,
body.dark .exclaim,
body.dark .quotes{ color: var(--accent1); }

body.dark #dinoGame{
  background: #0f172a;
  box-shadow:
    0 10px 28px rgba(0,0,0,.45),
    0 1px 0 rgba(255,255,255,.06) inset,
    0 0 0 1px rgba(255,255,255,.06);
}




@media (max-width: 768px){
  .brand-section{
    padding: 3.5rem 1rem 3rem;
  }

  .headline{
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.1;
    padding-inline-end: 1.2rem;   
    margin-bottom: 1.8rem;
  }

  .brand-mascot{
    width: 140px;  
    right: -16px;              
    top: -58px;
  }

  #dinoGame{
    margin: 1.2rem auto 0;
    border-radius: 12px;
    transform: perspective(800px) rotateX(1deg);
  }
}


@media (max-width: 420px){
  .headline{
    font-size: clamp(24px, 10vw, 34px);
    padding-inline-end: 3.6rem;
  }
  .brand-mascot{
    width: 110px;
    top: -16px;
  }
}





/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*---------------------- We Can Create \ Develop Pills -----------------------*/

.pile-sec{
  margin: 64px auto 96px;
  max-width: 1080px;
  padding: 0 16px;
}

.pile-title{
  font: 800 clamp(28px,4.4vw,56px)/1.05 'sitelyregular-en', system-ui, sans-serif;
  text-align: center;
  letter-spacing: .02em;
  color:#1b1d22;
  margin-bottom: 18px;
}

body.dark .pile-title{ color:#ffffff; }

html[lang="ar"] .pile-title{
  font-family: 'SitelyFont-Bold-ar';
}

.pile-title .accent{
  background: linear-gradient(90deg,#4300ff,#0065f8,#00caff,#00ffde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pill-bin{
  position: relative;
  height: clamp(320px, 52vw, 420px);
  border-radius: 18px;
  border: 2px solid #e9eef9;
  background:
    radial-gradient(80% 60% at 70% 0%, rgba(67,0,255,.08), transparent 60%),
    linear-gradient(180deg, #ffffff, #f8fbff 70%);
  box-shadow: 0 12px 40px rgba(12, 26, 75, .08);
  overflow: hidden;        
  isolation: isolate;
}

body.dark .pill-bin{
  position: relative;
  height: clamp(320px, 52vw, 420px);
  border-radius: 18px;
  border: 2px solid #1a2b4e;
  background:
    radial-gradient(80% 60% at 70% 0%, rgba(67,0,255,.08), transparent 60%),
    linear-gradient(180deg, #0b1220, #0b1220 70%);
  box-shadow: 0 12px 40px rgba(12, 26, 75, .08);
  overflow: hidden;        
  isolation: isolate;
}

.pill{
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 9px 18px;
  border-radius: 999px;

  background: var(--pill-color, #e7f0ff);

  background-image:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,0)),
    radial-gradient(circle at 15% 0%, rgba(255,255,255,.9), transparent 55%);
  background-blend-mode: soft-light;

  color: #0d1b2a;
  font: 700 14px/1.1 'sitelyregular-en', system-ui, sans-serif;
  letter-spacing: .01em;
  white-space: nowrap;
  user-select: none;
  cursor: grab;

  box-shadow:
    0 14px 28px rgba(15,23,42,.25),
    0 4px 8px rgba(15,23,42,.18),
    0 0 0 1px rgba(255,255,255,.7) inset,
    0 1px 0 rgba(255,255,255,.9) inset;

  transform-origin: 50% 50%;
  will-change: transform;
}

.pill::before{
  content:"";
  position:absolute;
  inset:2px 3px auto 3px;
  height:52%;
  border-radius:inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,0));
  opacity:.95;
  pointer-events:none;
}

.pill::after{
  content:"";
  position:absolute;
  inset:auto 6px 4px 6px;
  height:16px;
  border-radius:999px;
  background: radial-gradient(ellipse at center, rgba(15,23,42,.26), transparent 65%);
  opacity:.7;
  pointer-events:none;
}

.pill:active{
  cursor: grabbing;
}

.pill .dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.9) inset,
    0 2px 4px rgba(15,23,42,.35);
}


.pill.dragging{
  box-shadow:
    0 20px 40px rgba(15,23,42,.35),
    0 0 0 1px rgba(255,255,255,.8) inset,
    0 1px 0 rgba(255,255,255,1) inset;
}



.pill, .pill *{
  -webkit-user-drag:none;
}

.pill-ar{
  direction: rtl;
  position:absolute;
  left: 10px;
  text-align: right;
  font-family: 'SitelyFont-Light-ar', 'Tajawal', system-ui, sans-serif;
}


@media (max-width: 768px){
  .pill-bin{
    height: clamp(260px, 60vw, 340px);   
  }

  .pill{
    padding: 5px 10px;                
    gap: .35rem;                       
    font: 700 11px/1.1 'sitelyregular-en', system-ui, sans-serif; 
    box-shadow:
      0 9px 18px rgba(15,23,42,.22),
      0 3px 6px rgba(15,23,42,.15),
      0 0 0 1px rgba(255,255,255,.7) inset,
      0 1px 0 rgba(255,255,255,.9) inset;
  }

  .pill .dot{
    width: 7px;
    height: 7px;
  }

  .pill-ar{
    font-size: 11px;                  
  }
}

/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*-------------------------------- The 2 Tape --------------------------------*/

.tape-divider{
  position: relative;
  width: 100%;
  height: 100px;
}

:root{
  --tape-bg: #ffffff;
  --tape-shadow: rgba(15,23,42,.25);
  --tape-border: rgba(0,0,0,.03);
  --tape-accent: #4300ff;    
}

body.dark{
  --tape-bg: #0b1220;
  --tape-shadow: rgba(0,0,0,.85);
  --tape-border: rgba(15,23,42,.6);
  --tape-accent: #00e3ff;   
}


.tape-strip{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--tape-rotate, -12deg));

  width: 140%;      
  background: var(--tape-bg);
  box-shadow:
    0 18px 35px var(--tape-shadow),
    0 0 0 1px var(--tape-border);
  padding: 14px 0;
  overflow: hidden;         
  pointer-events: none;     
}


.tape-strip-alt{
  --tape-rotate: 12deg;   
}

.tape-track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: none !important;   
}

.tape-seq{
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
}

.tape-text{
  white-space: nowrap;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--tape-accent);
}

.tape-en{
  font-family: 'sitelyregular-en', system-ui, sans-serif;
}

.tape-ar{
  font-family: 'SitelyFont-Bold-ar', 'Tajawal', system-ui, sans-serif;
}

.tape-sep{
  font-size: 18px;
  opacity: .6;
  color: var(--tape-accent);
}

@keyframes tape-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}



/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*--------------------------------- About Us ---------------------------------*/

.about-sec{
  max-width: 1100px;
  margin: 64px auto;
  padding: 0 16px;
}

.about-card{
  display: flex;
  gap: 32px;
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 18px 40px rgba(15,23,42,.10),
    0 0 0 1px rgba(148,163,184,.18);
}

body.dark .about-card{
  background: #0b1220;
  box-shadow:
    0 22px 60px rgba(0,0,0,.9),
    0 0 0 1px rgba(30,64,175,.45);
}

.about-media{
  flex: 0 0 40%;
  border-radius: 22px;
  overflow: hidden;
}

.about-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.about-eyebrow{
  font: 700 13px/1.1 'sitelyregular-en', system-ui, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6366f1;
  margin: 0 0 4px;
}


.about-heading{
  font: 800 clamp(24px, 3vw, 32px)/1.1 'sitelyregular-en', system-ui, sans-serif;
  color: #0f172a;
  margin: 0 0 8px;
}

.about-body{
  margin: 0;
  font: 400 15px/1.7 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4b5563;
}

body.dark .about-heading{
  color: #e5e7eb;
}
body.dark .about-body{
  color: #9ca3af;
}
body.dark .about-eyebrow{
  color: #a5b4fc;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1.5px solid #a855f7;
  font: 600 14px/1 'sitelyregular-en', system-ui, sans-serif;
  color: #6b21a8;
  background: transparent;
  text-decoration: none;
  transition: all .18s ease-out;
}

.about-btn:hover{
  background: linear-gradient(90deg,#4300ff,#00caff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(37,99,235,.35);
}

body.dark .about-btn{
  border-color: #38bdf8;
  color: #e0f2fe;
}
body.dark .about-btn:hover{
  background: linear-gradient(90deg,#0ea5e9,#22c55e);
  box-shadow: 0 15px 34px rgba(15,118,110,.55);
}

html[lang="ar"] .about-card{
  direction: rtl;
  flex-direction: row-reverse;
  text-align: right;
}

html[lang="ar"] .about-eyebrow,
html[lang="ar"] .about-heading{
  font-family: 'SitelyFont-Bold-ar', 'Tajawal', system-ui, sans-serif;
}

html[lang="ar"] .about-body{
  font-family: 'SitelyFont-Light-ar', 'Tajawal', system-ui, sans-serif;
}

@media (max-width: 768px){
  .about-card{
    flex-direction: column;
    padding: 20px;
  }
  html[lang="ar"] .about-card{
    flex-direction: column; 
  }
  .about-media{
    flex-basis: auto;
  }
}






/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*------------------------------ Dino Character ------------------------------*/

.brand-section{
  position: relative;
  max-width: 1080px;
  margin: 64px auto;
  padding: 0 16px;
}

.brand-badge{
  position: absolute;
  top: -10px;
  right: -220px;             
  width: 280px;
  max-width: 24vw;
  pointer-events: none;
  user-select: none;

  filter: drop-shadow(0 10px 25px rgba(15,23,42,.25));
  transition: transform .25s ease-out, filter .25s ease-out;
}

.brand-badge:hover{
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 14px 32px rgba(37,99,235,.45));
}

body.dark .brand-badge{
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.9));
}

@media (max-width: 768px){
  .brand-badge{
    width: 88px;
    top: -6px;
    right: 4px;
  }
}





/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*---------------------------------- Footer ----------------------------------*/



.site-footer{
  position: relative;
  margin-top: 72px;
  padding: 20px 0 26px;
  
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  padding:12px 18px;
  border-radius:18px;

  background: rgba(255,255,255,.96);
  box-shadow:
    0 10px 28px rgba(15,23,42,.18),
    0 0 0 1px rgba(229,231,235,.95);

  backdrop-filter: blur(16px);
}

body.dark .footer-row{
  background: rgba(15,23,42,.94);
  box-shadow:
    0 18px 36px rgba(0,0,0,.9),
    0 0 0 1px rgba(30,64,175,.65);
}


.footer-meta{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-mini-logo{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: contain;
  padding: 3px;

  background: #ffffff;

  border: 1px solid rgba(248,250,252,.9);
}

body.dark .footer-mini-logo{
  box-shadow:
    0 8px 18px rgba(0,0,0,.85);
  border-color: rgba(15,23,42,.9);
}


.footer-text{
  font-size:12px;
  color:#4b5563;
  white-space:nowrap;
}

body.dark .footer-text{
  color:#e5e7eb;
}

.footer-icon{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  padding:5px 10px;
  border-radius:999px;

  background:#0f172a;
  color:#e5e7eb;
  font-size:13px;
  text-decoration:none;

  box-shadow:0 4px 10px rgba(15,23,42,.55);
  transition:
    transform .15s ease-out,
    box-shadow .15s ease-out,
    background .15s ease-out,
    color .15s ease-out;
}

.footer-icon i{
  font-size:14px;
}


.footer-icon span{
  font-size:11px;
}


.footer-icon:hover{
  transform:translateY(-1px);
  background:linear-gradient(135deg,#4300ff,#00caff);
  box-shadow:0 8px 18px rgba(37,99,235,.75);
  color:#ffffff;
}

body.dark .footer-icon{
  background:#020617;
}
body.dark .footer-icon:hover{
  background:linear-gradient(135deg,#0ea5e9,#22c55e);
  box-shadow:0 10px 22px rgba(6,95,70,.95);
}


@media (max-width: 640px){
  .footer-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-text{
    white-space:normal;
  }
  .footer-social{
    align-self:stretch;
    justify-content:space-between;
  }
}



/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*---------------------------------- Navbar ----------------------------------*/

.site-top{ position:sticky; top:0; z-index:50;}

.navbar{display:grid; font-family: 'sitelyregular-en'; grid-template-columns:auto 1fr auto;align-items:center;gap:12px;padding:14px 0}

html[lang="ar"] .navbar{
  font-family: 'SitelyFont-Bold-ar';
}

.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:12px;
  color:var(--text); 
  background:var(--panel); 
  border:1px solid var(--border); 
  box-shadow:0 6px 18px rgba(0,0,0,.06)
}

.icon-btn:hover{
  transform:translateY(-1px)
}

.right-icons{
  display:flex;
  gap:10px
}

.pill-nav{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:center;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 22px;
  box-shadow:var(--shadow)
}

.pill-nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.3px;
  padding:6px 8px;
  border-radius:8px;
  position:relative
}

.pill-nav a.active::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-10px;
  width:28px;
  height:3px;
  border-radius:2px;
  background:linear-gradient(90deg,var(--accent2),var(--accent3))
}

body[dir="rtl"] .navbar{grid-template-columns:auto 1fr auto}

body[dir="rtl"] .pill-nav{direction:rtl}


.site-top{
  padding: 16px 0 10px;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.nav-brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  text-decoration:none;
  
  background:#ffffff;
  box-shadow:
    0 10px 24px rgba(15,23,42,.15),
    0 0 0 1px rgba(229,231,235,.9);
  color:#0f172a;
}

.nav-brand-logo{
  width:28px;
  height:28px;
  border-radius:8px;
  object-fit:contain;
}

.nav-brand-name{
  font-family: 'sitelyregular-en';
}

body.dark .nav-brand{
  background:#020617;
  box-shadow:
    0 12px 28px rgba(0,0,0,.9),
    0 0 0 1px rgba(30,64,175,.6);
  color:#e5e7eb;
}


.pill-nav{
  display:flex;
  align-items:center;
  gap:8px;
}

.pill-nav a{
  padding:6px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  font-family: 'sitelyregular-en';
  color:#111827;
  text-decoration:none;
  box-shadow:0 4px 10px rgba(15,23,42,.07);
  transition:background .15s ease-out, color .15s ease-out, box-shadow .15s ease-out, border-color .15s ease-out;
}


html[lang="ar"] .pill-nav a{
  font-family: 'SitelyFont-Medium-ar';
}

.pill-nav a:hover{
  border-color:#4300ff;
  box-shadow:0 6px 14px rgba(67,0,255,.25);
}

.pill-nav a.active{
  background:linear-gradient(90deg,#4300ff,#0065f8,#00caff);
  color:#ffffff;
  border-color:transparent;
  box-shadow:0 8px 18px rgba(37,99,235,.6);
}


body.dark .pill-nav a{
  background:#020617;
  border-color:#1f2937;
  color:#e5e7eb;
}
body.dark .pill-nav a:hover{
  border-color:#38bdf8;
  box-shadow:0 6px 16px rgba(8,47,73,.8);
}
body.dark .pill-nav a.active{
  background:linear-gradient(90deg,#4300ff,rgb(29, 31, 125),rgb(3, 33, 57));
  box-shadow:0 8px 20px rgba(7, 1, 50, 0.95);
}


.nav-actions{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px;
  border-radius:999px;
  background:#ffffff;
  box-shadow:
    0 10px 24px rgba(15,23,42,.15),
    0 0 0 1px rgba(229,231,235,.9);
}

body.dark .nav-actions{
  background:#020617;
  box-shadow:
    0 12px 28px rgba(0,0,0,.9),
    0 0 0 1px rgba(30,64,175,.6);
}


.nav-actions .nav-icon{
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:none;
  color:#0f172a;
  font-size:13px;
  cursor:pointer;
  transition:background .15s ease-out, color .15s ease-out, box-shadow .15s ease-out, transform .12s ease-out;
}

.nav-actions .nav-icon:hover{
  background:#f3f4ff;
  box-shadow:0 4px 10px rgba(129,140,248,.45);
  transform:translateY(-1px);
}

body.dark .nav-actions .nav-icon{
  color:#e5e7eb;
}

body.dark .nav-actions .nav-icon:hover{
  background:#0b1120;
  box-shadow:0 4px 10px rgba(15,23,42,.85);
}


@media (max-width: 768px){
  .navbar{
    gap:10px;
  }
  .pill-nav{
    flex-wrap:wrap;
    justify-content:center;
  }
}



.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
  margin-right: 10px;
}

html[lang="ar"] .nav-right{
    margin-left: 10px;
  }


.nav-burger{
  display:none;              
  width:32px;
  height:32px;
  border-radius:999px;
  border:none;
  padding:0;
  cursor:pointer;
  background:#ffffff;
  position:relative;
  box-shadow:0 4px 10px rgba(15,23,42,.4);
}

.nav-burger span{
  position:absolute;
  left:8px;
  right:8px;
  height:2px;
  border-radius:999px;
  background:#060707;
  transition:
    transform .22s ease,
    opacity .16s ease,
    top .22s ease;
}


.nav-burger span:nth-child(1){ top:9px; }
.nav-burger span:nth-child(2){ top:15px; }
.nav-burger span:nth-child(3){ top:21px; }


.nav-burger.is-open span:nth-child(1){
  top:15px;
  transform:rotate(45deg);
}
.nav-burger.is-open span:nth-child(2){
  opacity:0;
}
.nav-burger.is-open span:nth-child(3){
  top:15px;
  transform:rotate(-45deg);
}


body.dark .nav-burger{
  background:#e5e7eb;
  box-shadow:0 4px 10px rgba(0,0,0,.8);
}
body.dark .nav-burger span{
  background:#020617;
}

@media (max-width: 768px){

  .navbar{
    gap:10px;
  }

  .nav-burger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav-actions{
    padding:3px;
  }

  .pill-nav{
    position:fixed;
    top:100px;                                
    left:50%;
    transform:translate(-50%, -140%);      
    width:min(90%, 340px);                  
    padding:10px 12px 14px;

    display:flex;
    flex-direction:column;
    gap:6px;

    background:rgba(255,255,255,.98);
    backdrop-filter:blur(18px);
    box-shadow:0 18px 40px rgba(15,23,42,.25);
    border-radius:16px;

    opacity:0;
    pointer-events:none;
    transition:
      transform .24s cubic-bezier(.22,.61,.36,1),
      opacity .2s ease-out;
    z-index:40;
  }

  body.dark .pill-nav{
    background:rgba(15,23,42,.98);
    box-shadow:0 18px 50px rgba(0,0,0,.9);
  }

  .pill-nav.is-open{
    transform:translate(-50%, 0);           
    opacity:1;
    pointer-events:auto;
  }

  .pill-nav a{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  body.nav-menu-open::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.35);
    backdrop-filter:blur(2px);
    z-index:30;
  }



  .nav-brand-logo{
    width:18px;
    height:18px;
  }
  
  .nav-brand{
    margin-left: 10px;
  }

  html[lang="ar"] .nav-brand{
    margin-right: 10px;
  }
}




/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 
/*--Services Style Down--Services Style Down--Services Style Down--Services Style Down--Services Style Down--*/ 

.services-hero{
  margin: 42px 0 40px;
  text-align: center;
}

.services-eyebrow{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  background:rgba(67,0,255,.06);
  color:#4300ff;
  font-family:'sitelyregular-en';
}

html[lang="ar"] .services-eyebrow{
  font-family:'SitelyFont-Bold-ar';
  letter-spacing:normal;
  font-size:13px;
}

.services-title{
  margin:14px 0 10px;
  font: 800 clamp(26px,4.2vw,40px)/1.1 'sitelyregular-en';
  letter-spacing:-.02em;
  color:#0b0b0b;
}

html[lang="ar"] .services-title{
  font-family:'SitelyFont-Bold-ar','Tajawal',system-ui,sans-serif;
}

.services-title .accent{
  background:linear-gradient(90deg,#4300ff,#0065f8,#00caff,#00ffde);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.services-subtitle{
  max-width:620px;
  margin:0 auto;
  font-size:14px;
  line-height:1.6;
  color:#4b5563;
}

html[lang="ar"] .services-subtitle{
  font-family:'SitelyFont-Light-ar','Tajawal',system-ui,sans-serif;
}



.services-list{
  margin-bottom:80px;
}

.services-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.service-card{
  position:relative;
  border-radius:18px;
  width: 90%;
  height: 90%;
  overflow:hidden;
  background:#ffffff;
  box-shadow:
    0 14px 35px rgba(15,23,42,.08),
    0 0 0 1px rgba(15,23,42,.04);
  display:flex;
  flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 18px 40px rgba(15,23,42,.16),
    0 0 0 1px rgba(15,23,42,.06);
}

.service-thumb{
  width:100%;
  aspect-ratio: 1 / 1;
  overflow:hidden;
}

.service-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.service-body{
  padding:16px 16px 18px;
  text-align:left;
}

html[lang="ar"] .service-body{
  text-align:right;
  font-family:'SitelyFont-Light-ar';
}

.service-title{
  margin:0 0 6px;
  font-size:16px;
  font-weight:800;
  color:#111827;
  font-family:'sitelyregular-en';
}

html[lang="ar"] .service-title{
  font-family:'SitelyFont-Bold-ar';
}


.service-desc{
  margin:0 0 12px;
  font-size:13px;
  line-height:1.6;
  color:#4b5563;
}

.service-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:12px;
  margin-top:auto;
}

.service-price-label{
  opacity:.7;
}

.service-price{
  font-weight:800;
  color:#4300ff;
}


body.dark .services-title{ color:#f9fafb; }
body.dark .services-subtitle{ color:#9ca3af; }
body.dark .services-eyebrow{
  background:rgba(0,227,255,.08);
  color:#00e3ff;
}

body.dark .service-card{
  background:#020617;
  box-shadow:
    0 18px 45px rgba(0,0,0,.8),
    0 0 0 1px rgba(148,163,184,.18);
}

body.dark .service-card:hover{
  box-shadow:
    0 22px 55px rgba(0,0,0,.9),
    0 0 0 1px rgba(148,163,184,.25);
}

body.dark .service-title{ color:#e5e7eb; }
body.dark .service-desc{ color:#9ca3af; }
body.dark .service-price{ color:#00e3ff; }


@media (max-width:768px){
  .services-hero{
    margin:2px 0 28px;
  }
  .service-body{
    padding:14px 14px 16px;
  }

  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card{
    width: 100%;   
  }
}



/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 
/*--Client Style Down--Client Style Down--Client Style Down--Client Style Down--Client Style Down--*/ 



.clients-hero {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.clients-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.9;
  position: relative;
  z-index: 5;
}

.clients-title {
  font-size: 26px;
  line-height: 1.3;
  margin: 12px 0 8px;
  position: relative;
  z-index: 5;
}

.clients-subtitle {
  font-size: 14px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.clients-section {
  margin-top: 24px;
  position: relative;
  z-index: 5; 
}

.clients-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  
  gap: 22px;
  justify-items: center;
  position: relative;
  z-index: 6;
}

.client-pill-card {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 7;
}


.client-pill-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 230px;
  position: relative;
  z-index: 8;
}

@media (max-width: 1024px) {
  .clients-pill-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-pill-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    
  }
}

@media (max-width: 480px) {
  .clients-pill-grid {
    grid-template-columns: 1fr;
  }
}

.client-logo-card {
  width: 230px;
  height: 230px;
  border-radius: 28px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  position: relative;
  z-index: 9; 
}

.client-logo-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 28px;
  object-fit: contain;
}

.client-logo-letter {
  font-size: 48px;
  font-weight: 800;
  color: #0064ff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


.client-info-pill {
  margin-top: 4px;
  width: 100%;              
  min-height: 64px;
  border-radius: 999px;    
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.20),
    rgba(255,255,255,0.06)
  );
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 12px 30px rgba(15,23,42,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  z-index: 9; 
}

.client-info-text {
  text-align: left;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.client-info-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.client-info-type {
  font-size: 11px;
  color: #4b5563;
}

body.dark .client-info-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

body.dark .client-info-type {
  font-size: 11px;
  color: #ffffff;
}
.client-view-btn {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 6px 18px;
  border: none;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: #111827;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(255,255,255,0.98),
    rgba(229,231,235,0.9)
  );
  box-shadow: 0 3px 0 rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
  position: relative;
  z-index: 10;
}

.client-view-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
  filter: brightness(1.03);
}

.client-view-btn.disabled {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
}

@media (max-width: 600px) {
  .clients-title {
    font-size: 22px;
  }
  .client-logo-card {
    width: 170px;
    height: 170px;
    border-radius: 24px;
  }
  .client-pill-inner {
    width: 170px;
  }
}




/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 
/*--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--Contact Style Down--*/ 



.contact-main-shell {
  padding: 24px 0 40px;
  background: #ffffffff;
}

.contact-main-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 1px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(229,231,235,0.9);
  background: linear-gradient(135deg, rgba(229,231,235,0.9), rgba(209,213,219,0.7));
  overflow: hidden;
}

.contact-main-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  z-index: 1;
}


.contact-main-card::before,
.contact-main-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: conic-gradient(
    from 40deg,
    rgba(0,102,255,0.0),
    rgba(0,204,255,0.55),
    rgba(204,0,255,0.45),
    rgba(255,153,0,0.4),
    rgba(0,102,255,0.0)
  );
  filter: blur(30px);
  opacity: 0.9;
  z-index: 0;
}

.contact-main-card::before {
  top: -90px;
  inset-inline-start: -90px;
}

.contact-main-card::after {
  bottom: -90px;
  inset-inline-end: -90px;
}

.contact-main-inner {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: radial-gradient(circle at top, rgba(248,250,252,0.97), #ffffff);
}

.contact-main-rtl .contact-main-inner {
  flex-direction: row-reverse;
  text-align: right;
}

.contact-main-left {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 5/3;
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(229,231,235,0.9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-main-right {
  flex: 1;
  min-width: 0;
}


.contact-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-bottom: 18px;
}
.contact-info-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(248,250,252,0.9));
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow:
    0 10px 24px rgba(15,23,42,0.10),
    inset 0 0 0 0.5px rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  flex-shrink: 0;
}

.contact-pill-icon.phone     { background: #16a34a; }
.contact-pill-icon.email     { background: #2563eb; }
.contact-pill-icon.facebook  { background: #1877f2; }
.contact-pill-icon.instagram { background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5); }
.contact-pill-icon.whatsapp  { background: #22c55e; }
.contact-pill-icon.tiktok    { background: #000000; }
.contact-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pill-label {
  font-size: 11px;
  color: #6b7280;
}
.pill-value {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.contact-cta-row {
  margin-top: 4px;
}
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid #a855f7;
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #7c3aed;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(124,58,237,0.18);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}
.contact-cta-btn:hover {
  transform: translateY(-1px);
  background: #faf5ff;
  box-shadow: 0 14px 26px rgba(124,58,237,0.25);
}


@media (max-width: 960px) {
  .contact-main-inner {
    flex-direction: column;
    padding: 22px 20px;
  }
  .contact-main-rtl .contact-main-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-main-left {
    flex: 0 0 auto;
    width: 100%;
  }
  .contact-main-right {
    width: 100%;
  }
  .contact-pill-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-cta-row {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .contact-hero-card {
    border-radius: 18px;
    padding: 12px 14px 16px;
  }
  .contact-hero-title {
    font-size: 22px;
  }
  .contact-main-card {
    border-radius: 26px;
  }
  .contact-main-inner {
    padding: 18px 16px 22px;
    gap: 18px;
  }
  .contact-image-frame {
    max-width: 280px;
    border-radius: 24px;
  }
}



.contact-social-row {
  margin-top: 14px;
  display: flex;
  flex-direction: column;    
  align-items: flex-start;   
  gap: 6px;
}


.contact-main-rtl .contact-social-row {
  align-items: flex-end;
}

.contact-social-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  white-space: nowrap;
  margin-inline-end: 0;      
}


.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;  
}


.contact-main-rtl .contact-social-list {
  justify-content: flex-end;
}


@media (max-width: 640px) {
  .contact-social-row {
    align-items: center;
    text-align: center;
  }
  .contact-social-list {
    justify-content: center;
  }
}


.contact-social-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(248,250,252,0.55)
  );
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow:
    0 14px 32px rgba(15,23,42,0.22),
    inset 0 0 0 0.5px rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(0) translateZ(0);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.contact-social-pill::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(56,189,248,0.9),
    rgba(129,140,248,0.9),
    rgba(236,72,153,0.9)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.12s ease;
}

.contact-social-pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(15,23,42,0.30),
    inset 0 0 0 0.5px rgba(255,255,255,0.9);
  border-color: rgba(129,140,248,0.9);
}

.contact-social-pill:hover::before {
  opacity: 1;
}

.contact-social-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #ffffff, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;  
  box-shadow:
    0 6px 14px rgba(15,23,42,0.30),
    0 0 0 1px rgba(148,163,184,0.7);
  flex-shrink: 0;
}

.contact-social-icon i {
  font-size: 14px;
}

.contact-social-text {
  white-space: nowrap;
}

.social-facebook {
  border-color: rgba(24,119,242,0.7);
  box-shadow:
    0 14px 32px rgba(37,99,235,0.20),
    inset 0 0 0 0.5px rgba(255,255,255,0.75);
}

.social-instagram {
  border-color: rgba(214,41,118,0.7);
  box-shadow:
    0 14px 32px rgba(216,70,141,0.18),
    inset 0 0 0 0.5px rgba(255,255,255,0.75);
}

.social-whatsapp {
  border-color: rgba(34,197,94,0.7);
  box-shadow:
    0 14px 32px rgba(22,163,74,0.20),
    inset 0 0 0 0.5px rgba(255,255,255,0.75);
}

.social-tiktok {
  border-color: rgba(15,23,42,0.85);
  box-shadow:
    0 14px 32px rgba(15,23,42,0.30),
    inset 0 0 0 0.5px rgba(255,255,255,0.75);
}









.dark .contact-main-shell {
  background: radial-gradient(circle at top, #0f172a, #0f172a);
  border-radius: 40px;
}


.dark .contact-main-card {
  box-shadow:
    0 26px 70px rgba(0,0,0,0.75),
    0 0 0 1px rgba(30,64,175,0.65);
  background: linear-gradient(135deg, #0f172a, #020617);
}


.dark .contact-main-bg {
  background: radial-gradient(circle at top, #020617, #020617);
}


.dark .contact-main-card::before,
.dark .contact-main-card::after {
  background: conic-gradient(
    from 40deg,
    rgba(37,99,235,0.0),
    rgba(56,189,248,0.7),
    rgba(236,72,153,0.6),
    rgba(251,191,36,0.5),
    rgba(37,99,235,0.0)
  );
  filter: blur(40px);
}


.dark .contact-main-inner {
  background: radial-gradient(circle at top, #020617, #020617);
}


.dark .contact-image-frame {
  background: radial-gradient(circle at 0% 0%, #1f2937, #020617);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.9),
    0 0 0 1px rgba(30,64,175,0.6);
}


.dark .contact-info-pill {
  background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.88));
  border: 1px solid rgba(51,65,85,0.9);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.8),
    inset 0 0 0 0.5px rgba(148,163,184,0.18);
}

.dark .pill-label {
  color: #9ca3af;
}

.dark .pill-value {
  color: #e5e7eb;
}

/* CTA button */
.dark .contact-cta-btn {
  background: radial-gradient(circle at 0% 0%, #4c1d95, #1e1b4b);
  color: #f9fafb;
  border-color: #a855f7;
  box-shadow:
    0 18px 40px rgba(88,28,135,0.6),
    0 0 0 1px rgba(192,132,252,0.7);
}

.dark .contact-cta-btn:hover {
  background: radial-gradient(circle at 0% 0%, #6d28d9, #312e81);
  box-shadow:
    0 22px 55px rgba(88,28,135,0.8),
    0 0 0 1px rgba(216,180,254,0.9);
}

/* === Social strip === */
.dark .contact-social-label {
  color: #9ca3af;
}

.dark .contact-social-pill {
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.96),
    rgba(15,23,42,0.88)
  );
  border-color: rgba(51,65,85,0.9);
  color: #e5e7eb;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.9),
    inset 0 0 0 0.5px rgba(148,163,184,0.22);
}

.dark .contact-social-pill::before {
  /* keep the nice rainbow glow but stronger on dark */
  background: linear-gradient(
    135deg,
    rgba(56,189,248,0.9),
    rgba(129,140,248,0.9),
    rgba(236,72,153,0.9)
  );
}

/* Icon bubble in social pill */
.dark .contact-social-icon {
  background: radial-gradient(circle at 30% 0%, #111827, #020617);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.9),
    0 0 0 1px rgba(148,163,184,0.7);
}

/* Brand accents – keep the colors but slightly muted */
.dark .social-facebook {
  border-color: rgba(59,130,246,0.85);
}

.dark .social-instagram {
  border-color: rgba(236,72,153,0.85);
}

.dark .social-whatsapp {
  border-color: rgba(34,197,94,0.85);
}

.dark .social-tiktok {
  border-color: rgba(148,163,184,0.9);
}
