
:root{
  --brand:#f1c40f;
  --brand-2:#0833fe;
  --ink:#1e1e2a;
  --muted:#6d7179;
  --bg:#f6f7fb;      /* fallback if video fails */
  --card:#ffffff;
  --radius:22px;
  --shadow: 0 10px 28px rgba(0,0,0,.08);
}

*{ box-sizing:border-box }

html,body{
  margin:0;
  padding:0;
  font-family:'Tajawal',system-ui,-apple-system,Segoe UI,Roboto,Arial,'Noto Kufi Arabic',sans-serif;
  background:var(--bg);   /* shows only while video loads/fails */
  color:var(--ink);
}

a{ color:inherit; text-decoration:none }
.container{ max-width:1200px; margin:auto; padding:0 24px }

/* Ensure page content can sit above the video */
body{ position:relative; z-index:0 }

/* ===== Full-page background video ===== */
.site-bg-video{
  position:fixed;
  inset:0;
  z-index:0;               /* behind content (z:1) but above the page background */
  overflow:hidden;
  pointer-events:none;      /* never block clicks */
}

.site-bg-video .bgv{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;         /* fill screen without distortion */
}

/* Gentle tint so foreground text stays readable */
.site-bg-video .bgv-tint{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* Make sure your main sections render above the video */
header, main, section, footer, .container{ position:relative; z-index:1 }


/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ------------------------ NAVBAR ------------------------ */

.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border: 0;

  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
  will-change: transform, opacity;
}

.navbar.at-top{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


.navbar .inner{
  min-height: 46px;          
  padding: 20px 12px 16px;    
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
}

.navbar-spacer{ height: 82px; } 

.brand{
  justify-self:start; 
  display:flex; align-items:center; gap:10px;
  font-weight:900; font-size:22px; color:#0f131a; text-decoration:none;
  letter-spacing:-.3px;
}
.brand .logo{ width:40px; height:40px; border-radius:2px; overflow:hidden }
.brand .logo img{ width:100%; height:100%; object-fit:cover; display:block }


.navlinks{ justify-self:center; display:flex; gap:26px; }
.navlinks a{
  position:relative; font-weight:600; color:#394150; text-decoration:none;
  padding:8px 2px; transition:color .2s ease;
}
.navlinks a::after{
  content:""; position:absolute; inset:auto 0 -6px 0; height:3px; border-radius:3px;
  background:#5b3df5; transform:scaleX(0); transform-origin:center;
  transition:transform .25s ease;
}
.navlinks a:hover{ color:#5b3df5 }
.navlinks a:hover::after, .navlinks a.active::after{ transform:scaleX(1) }


.actions{ justify-self:end; display:flex; align-items:center; gap:16px; }
.actions .login{ color:#394150; text-decoration:none; font-weight:600; transition:color .2s ease; }
.actions .login:hover{ color:#5b3df5 }
.actions .cta{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:112px; height:42px; padding:0 18px; border-radius:999px;
  background:#5b3df5; color:#fff; font-weight:800; text-decoration:none;
  box-shadow:0 10px 24px rgba(91,61,245,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.actions .cta:hover{ transform:translateY(-1px); box-shadow:0 14px 28px rgba(91,61,245,.32) }


/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ------------------------ Mobile ------------------------ */

.mobile-nav-toggle{
  position:fixed; z-index:2000;
  top:20px; left:20px;          
  background:#fff; border:none;
  border-radius:50%;
  width:50px; height:50px;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  cursor:pointer; font-size:1.4rem; color:#000;
  display:none;                 
}
.mobile-nav-toggle:active{ transform:translateY(1px) }
.mobile-nav-toggle i{ pointer-events:none }


.mobile-nav{
  position:fixed; z-index:1990;
  top:90px; left:20px;         
  width:280px; max-width:86vw;
  background:#fff;
  padding:1.5rem;
  box-sizing:border-box;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);

  opacity:0; visibility:hidden; transform:translateY(-10px);
  transition:opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

.mobile-nav-top{
  display:flex; justify-content:flex-start; align-items:center; margin-bottom:1rem;
}
.mobile-user{
  width:44px; height:44px; border-radius:12px;
  display:grid; place-items:center; background:#f5f6fb; color:#111;
  border:1px solid #e9ecf4; font-size:1.1rem; text-decoration:none;
}


.mobile-nav-open .mobile-nav{
  opacity:1; visibility:visible; transform:translateY(0);
  transition:opacity .22s ease, transform .22s ease, visibility 0s;
}
.mobile-nav[aria-hidden="true"]{ pointer-events:none; }


.mobile-nav-links{
  display:flex; flex-direction:column; gap:1rem;
}
.mobile-nav-links a{
  display:block; padding:.55rem 0;
  text-decoration:none; color:#000;
  font-size:1.1rem; font-weight:700;
  letter-spacing:.2px;
  transition:color .2s ease;
}
.mobile-nav-links a:hover{ color:#2683c6 }

.mobile-nav-overlay{
  position:fixed; inset:0; z-index:1980;
  background:rgba(15,23,42,.35);
  opacity:0; pointer-events:none; transition:opacity .2s ease;
}
.mobile-nav-open .mobile-nav-overlay{
  opacity:1; pointer-events:auto;
}


.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}


.mobile-nav-open{ overflow:hidden; }


@media (max-width: 900px){
  .navbar{ display:none !important; }
  .navbar-spacer{ display:none !important; }

  .mobile-nav-toggle{ display:block; }
}
@media (min-width: 901px){
  .mobile-nav, .mobile-nav-overlay, .mobile-nav-toggle{ display:none !important; }
}


:root { --safe-top: env(safe-area-inset-top, 0px); }  

@media (max-width: 900px){
  .hero.video-hero{
    margin: calc(84px + var(--safe-top)) 1rem 0 1rem; 
  }
}

.mobile-brand{
  position: fixed;
  z-index: 2000;                         
  top: calc(14px + env(safe-area-inset-top, 0px)); 
  right: 20px;                           
  width: 46px; height: 46px;
  display: none;                         
  padding: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.mobile-brand img{
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}


@media (max-width: 900px){
  .mobile-brand{ display: block; }
}
@media (min-width: 901px){
  .mobile-brand{ display: none !important; }
}

.mobile-nav-open .mobile-brand{ opacity: .85; }





/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ------------------------- hero ------------------------- */

.hero{
  padding:80px 0;background:
   radial-gradient(1200px 500px at 90% -10%, rgba(8,51,254,.08), transparent),
   radial-gradient(1200px 600px at -10% 110%, rgba(241,196,15,.15), transparent);
}
.hero .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center}
.hero h1{font-size:44px;line-height:1.15;margin:0}
.hero p{color:var(--muted);font-size:18px}
.cta{display:flex;gap:12px;margin-top:18px}
.btn{padding:12px 18px;border-radius:14px;border:0;cursor:pointer;font-weight:700}
.btn.primary{background:var(--brand-2);color:#fff}
.btn.light{background:#fff;box-shadow:var(--shadow)}

.card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:22px}
.card{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column}
.card .thumb {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px; 
}

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

.card .body{padding:18px}
.card h3{margin:0 0 6px 0}
.badge{display:inline-block;background:rgba(8,51,254,.1);color:var(--brand-2);padding:6px 10px;border-radius:999px;font-size:12px;font-weight:700}

.detail{display:grid;grid-template-columns:1fr .9fr;gap:24px}
.info-box{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);padding:16px}
.info-box ul{margin:12px 0 0 0;padding-inline-start:18px}
.info-title{font-size:20px;margin:0 0 6px 0}
.socials{display:flex;gap:12px;margin-top:12px}
.socials a{background:#fff;box-shadow:var(--shadow);padding:10px 14px;border-radius:999px;font-weight:700}
.flag{height:14px;margin-inline-start:6px;opacity:.8}


hr.sep{border:0;height:1px;background:#eceef2;margin:30px 0}

.form{background:var(--card);box-shadow:var(--shadow);border-radius:var(--radius);padding:16px}
.form .field{margin-bottom:12px}
.form label{display:block;font-weight:700;margin-bottom:6px}
.input, textarea, select{width:100%;padding:12px 12px;border:1px solid #e9e9ef;border-radius:12px;background:#fff}
.actions{display:flex;gap:10px;flex-wrap:wrap}



/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ---------------------- Admin Table --------------------- */

.table-wrap{
  background: linear-gradient(180deg,#fafbff, #f5f7fc);
  padding: 14px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: auto;                
}

.table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;         
  text-align: right;
}

.table thead th{
  background: #fff;
  color: #2b2f3a;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  position: sticky; top: 0;       
  z-index: 1;
  box-shadow: 0 1px 0 #eef0f6;
}

.table tbody tr{
  transition: transform .15s ease, box-shadow .15s ease;
}

.table tbody tr.row{
  background: #fff;
  box-shadow: 0 6px 18px rgba(21, 26, 46, .06);
  border-radius: 14px;
}

.table tbody td{
  padding: 14px 16px;
  font-weight: 600;
  color: #283046;
}
.table tbody td:first-child{ border-radius: 0 14px 14px 0; } 
.table tbody td:last-child { border-radius: 14px 0 0 14px; }

.table tbody tr:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21, 26, 46, .08);
}


.count-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8,51,254,.08);
  color: var(--brand-2);
  font-weight: 800;
  font-size: 12px;
}


.actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.action-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background: #f6f7fb;
  color: #1f2330;
  box-shadow: inset 0 0 0 1px #eceff6;
  transition: background .15s ease, transform .15s ease;
}
.action-pill:hover{ background: #fff; transform: translateY(-1px); }
.action-pill.view{  background: #eef4ff; color: #2541ff; box-shadow: inset 0 0 0 1px #dfe7ff; }
.action-pill.edit{  background: #eefaf3; color: #1f9d55; box-shadow: inset 0 0 0 1px #dff3e7; }
.action-pill.danger{background: #fff1f1; color: #d63b3b; box-shadow: inset 0 0 0 1px #ffd9d9; }


@media (max-width: 720px){
  .table thead{ display:none; }
  .table tbody tr.row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
  }
  .table tbody td{
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 0 !important;
  }
  .table tbody td::before{
    content: attr(data-label);
    color: #7a8395;
    font-weight: 700;
  }
  .actions{ justify-content: flex-start; }
}


@media (max-width: 900px){
  .hero .wrap, .detail{grid-template-columns:1fr}
}


.navlinks a i {
  font-size: 18px;
  color: #333;
}
.navlinks a:hover i {
  color: var(--brand-2);
}


/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ---------------------- Video Hero ---------------------- */

.hero-media-wrap{ position:absolute; inset:0; overflow:hidden; border-radius:inherit; }
.hero-media{
  position:absolute; top:0; left:0; width:100%; height:100%;
  object-fit: fill;        
  border-radius:inherit;
}
.hero-overlay{ position:absolute; inset:0; pointer-events:none; border-radius:inherit; }

.hero-media::-internal-media-controls-overlay-cast-button,
.hero-media::-webkit-media-controls-enclosure,
.hero-media::-webkit-media-controls-panel,
.hero-media::-webkit-media-controls { display:none !important; }


.video-hero{
  position:relative;
  min-height:64vh;
  margin:2rem 2rem 0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}


.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;             
  height: 100%;            
  object-fit: fill;         
  border-radius: inherit;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px;  
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}


.video-hero h1,
.video-hero p { color: #fff; }
.video-hero .btn.light { background: #fff; color: #1e1e2a; }
.video-hero .btn.primary { background: var(--brand-2); color: #fff; }

@media (max-width: 900px){
  .hero-content {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }
  .video-hero {
    min-height: 60vh;
    margin: 0 1rem;       
    border-radius: 16px;  
  }
}


.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls,
.hero-video::-internal-media-controls-overlay-cast-button {
  display: none !important;
  visibility: hidden !important;
  -webkit-appearance: none !important;
}


.hero-video::-moz-media-controls {
  display: none !important;
}


/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ------------------------ 3 Steps ----------------------- */

.steps-v4{ padding:64px 0 8px; }
.sv4-title{
  text-align:center; margin:0 0 28px; font-weight:800;
  font-size:clamp(22px,3.1vw,36px); color:var(--ink);
}

.sv4-timeline{
  position:relative; display:grid; gap:34px;
}
.sv4-timeline::before{
  content:""; position:absolute; inset-inline-start:50%; top:0; bottom:0;
  width:4px; border-radius:4px;
  background: linear-gradient(180deg, rgba(8,51,254,.25), rgba(241,196,15,.25));
  transform: translateX(-50%);
}


.sv4-item{ display:flex; }
.sv4-item.right{ justify-content:flex-end; }
.sv4-item.left { justify-content:flex-start; }

.sv4-card{
  display:flex; align-items:center; gap:16px;
  background:#fff; border:1px solid #eef0f6; border-radius:22px;
  padding:18px 20px; max-width:520px;
  box-shadow:0 14px 30px rgba(16,24,40,.08);
  position:relative;
  transition:transform .15s ease, box-shadow .15s ease;
}
.sv4-card:hover{ transform:translateY(-3px); box-shadow:0 22px 42px rgba(16,24,40,.12); }


.sv4-card::after{
  content:""; position:absolute; top:50%; translate:0 -50%;
  width:14px; height:14px; border-radius:50%;
  background:#fff; box-shadow:0 0 0 4px rgba(8,51,254,.25);
}
.sv4-item.right .sv4-card::after{ inset-inline-start:calc(100% + 14px); }
.sv4-item.left  .sv4-card::after{ inset-inline-end: calc(100% + 14px); }


.sv4-icon{
  width:56px; height:56px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(8,51,254,.08);
  color:var(--brand-2);
}
.sv4-icon i{ font-size:22px; }


.sv4-text h3{ margin:0 0 4px; font-size:20px; font-weight:800; color:#1f2430; }
.sv4-text p { margin:0; color:#6d7179; font-weight:600; line-height:1.8; }


/* ---------- Steps (mobile sizing) ---------- */

@media (max-width: 900px){


  .steps-v4{ overflow-x: clip; }
  @supports not (overflow: clip){ .steps-v4{ overflow-x: hidden; } }

 
  .sv4-timeline{
    --line-offset: 22px;          
    gap: 16px;
    padding-inline: 0;            
  }

  
  .sv4-timeline::before{
    inset-inline-start: var(--line-offset);
    width: 3px;
    transform: none;
  }

  
  .sv4-card{
    margin: 0;                     
    margin-inline-start: var(--line-offset);
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
  }


  .sv4-card::after{
    inset-inline-start: 0;         
    transform: translateX(-50%);   
    width: 10px; height: 10px;
    box-shadow: 0 0 0 3px rgba(8,51,254,.22);
  }
}


@media (max-width: 900px){
  html, body{ overflow-x: hidden; }
}

/* Extra-small phones */
@media (max-width: 360px){
  .sv4-timeline{ gap: 12px; }
  .sv4-timeline::before{ inset-inline-start: 6px; }
  .sv4-card{ margin-inline-start: 18px; padding: 10px 12px; border-radius: 14px; }
  .sv4-card::after{ width: 8px; height: 8px; inset-inline-start: -14px; }
  .sv4-icon{ width: 38px; height: 38px; }
  .sv4-icon i{ font-size: 16px; }
  .sv4-text h3{ font-size: 16px; }
  .sv4-text p { font-size: 13.5px; }
}




/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ----------------------- partners ----------------------- */

.partners { padding: 112px 0 8px; background: transparent; }

.partners-title{
  margin: 0 0 100px; 
  font-weight: 800; 
  text-align: center;
  
}

.partners-marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track{
  --gap: 32px;
  --speed: 28s;          
  --start-offset: -25%;  

  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
  will-change: transform;
  transform: translateX(var(--start-offset));
  animation: partners-slide-ltr var(--speed) linear infinite;
}


@keyframes partners-slide-ltr {
  from { transform: translateX(calc(var(--start-offset))); }
  to   { transform: translateX(calc(var(--start-offset) + 50%)); }
}

.partner{
  display: grid; place-items: center;
  padding: 0; margin: 0;
  background: transparent;
  border: none;
  min-width: max(120px, 10vw);
}
.partner img{
  display: block;
  max-height: 100px; width: auto;
  object-fit: contain;
  transition: transform .2s ease;
}
.partner:hover img{
  transform: scale(1.06); 
}


@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; transform: translateX(0); justify-content: center; flex-wrap: wrap; }
}


/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* --------------------- Website Info --------------------- */

.info-strip{ padding: 116px 0 116px; }
.is-grid{
  display:grid; gap:22px;
  grid-template-columns: minmax(260px,1fr) minmax(420px,2fr) minmax(260px,1fr);
  align-items:stretch;
}
@media (max-width: 1100px){ .is-grid{ grid-template-columns: 1fr; } }


.is-card{
  position:relative; overflow:hidden; isolation:isolate;
  background:#fff; border:1px solid #eef1f5; border-radius:22px;
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  padding:20px 22px;
  transform: translateY(14px); opacity:0;
}
.is-card::after{ 
  content:""; position:absolute; top:18px; bottom:18px; right:-8px; width:12px;
    transform: skewX(-10deg);
  border-radius:8px;
  opacity:.9; pointer-events:none;
}
.is-slim{ padding-bottom:16px; }
.is-feature{
  padding:26px 26px 24px;
  border-radius:26px;
  box-shadow:0 18px 46px rgba(0,0,0,.10);
}
.is-feature::after{ display:none; } 

.is-head{ display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.is-head i{ color:#1e78ff; font-size:18px }
.is-head h4{ margin:0; font-weight:900 }


.is-list{ margin:0; padding:0; list-style:none; display:grid; gap:8px; color:#2b313a }
.is-more{
  display:inline-flex; align-items:center; justify-content:center;
  margin-top:12px; padding:8px 14px; border-radius:999px;
  border:1px solid #e1e6ee; background:#fff; color:#0f131a; font-weight:800;
  text-decoration:none; transition: transform .15s ease, box-shadow .15s ease;
}
.is-more:hover{ transform:translateY(-2px); box-shadow:0 8px 18px rgba(0,0,0,.08) }


.is-hours{ margin:0; padding:0; list-style:none; display:grid; gap:8px }
.is-hours li{ display:grid; grid-template-columns: 1fr auto; align-items:center; gap:10px }
.is-hours li b{ font-weight:800 }
.is-hours li span{ color:#4a5260 }


.is-title{ margin:0 0 10px; font-size:1.6rem; font-weight:900; text-align:center }
.is-title span{ color:#0f62fe }
.is-text{ margin:0 auto 14px; line-height:1.9; color:#222; text-align:center; max-width:70ch }
.is-chips{ display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-bottom:10px }
.chip{
  display:inline-flex; align-items:center; gap:6px;
  background:#fff; border:1px solid #e6ebf3; border-radius:999px;
  padding:7px 12px; font-weight:700; color:#0f131a;
}
.is-cta{
  display:block; width:max-content; margin:8px auto 0;
  background:#0f62fe; color:#fff; text-decoration:none; font-weight:800;
  padding:10px 18px; border-radius:12px;
  box-shadow:0 12px 22px rgba(15,98,254,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.is-cta:hover{ transform:translateY(-2px); box-shadow:0 16px 28px rgba(15,98,254,.35) }


.is-glow{
  position:absolute; inset:-20% -5% auto -5%; height:60%; z-index:0;
  background:
    radial-gradient(600px 240px at 20% 0%, rgba(255,213,79,.18), transparent 60%),
    radial-gradient(600px 260px at 80% 20%, rgba(30,120,255,.16), transparent 62%);
  pointer-events:none; animation:isGlow 9s ease-in-out infinite;
}
@keyframes isGlow{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }


.is-card.is-in{ animation:isUp .6s cubic-bezier(.2,.8,.2,1) forwards }
.is-card.is-in:nth-child(2){ animation-delay:.08s }
.is-card.is-in:nth-child(3){ animation-delay:.16s }
@keyframes isUp{ from{opacity:0; transform:translateY(16px)} to{opacity:1; transform:translateY(0)} }


@media (prefers-reduced-motion: reduce){
  .is-card,.is-glow{ animation:none !important; transform:none !important; opacity:1 !important; }
}



/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* --------------------- Top Services --------------------- */

.top-services { 
  padding: 58px 0 38px; 
  margin: 30px auto;
  background: transparent;
  border-radius: 16px;
}

.ts-eyebrow { 
  margin: 0; 
  text-align: center; 
  color: var(--muted); 
  font-weight: 800; 
  font-size: 16px; 
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ts-title { 
  text-align: center; 
  margin: 12px 0 28px; 
  font-weight: 800; 
  font-size: clamp(26px, 3.5vw, 42px); 
  color: var(--ink);
  background: linear-gradient(to right, #6699ff, #8fb2ff, #4754cd, #172d9d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ts-slider { 
  position: relative; 
  overflow: hidden;
  padding: 10px 0;
}

.ts-viewport { 
  overflow: hidden; 
  width: 100%;
  border-radius: 12px;
}

.ts-track {
  display: flex; 
  gap: 22px; 
  padding: 2px;
  transition: transform 0.8s ease;
}

.ts-card {
  flex: 0 0 calc((100% - (3 * 22px)) / 4);
  max-width: calc((100% - (3 * 22px)) / 4);
  display: block; 
  background: #fff; 
  border-radius: 22px; 
  overflow: hidden;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1200px) {
  .ts-card { 
    flex-basis: calc((100% - (2 * 22px)) / 3); 
    max-width: calc((100% - (2 * 22px)) / 3); 
  }
}

@media (max-width: 900px) {
  .ts-card { 
    flex-basis: calc((100% - (1 * 22px)) / 2); 
    max-width: calc((100% - (1 * 22px)) / 2); 
  }
}

@media (max-width: 560px) {
  .ts-card { 
    flex-basis: 100%; 
    max-width: 100%; 
  }
}

.ts-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 5px 5px rgba(0,0,0,0.2); 
}

.ts-thumb { 
  position: relative; 
  aspect-ratio: 3 / 3; 
  overflow: hidden; 
  background: #f6f8ff; 
}

.ts-thumb img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  transition: transform 0.5s ease;
}

.ts-card:hover .ts-thumb img {
  transform: scale(1.05);
}

.ts-noimg { 
  width: 100%; 
  height: 100%; 
  display: grid; 
  place-items: center; 
  color: #9aa3b2; 
  font-weight: 800; 
}

.ts-badge {
  position: absolute; 
  top: 12px; 
  right: 12px;
  background: #5b3df5; 
  color: #fff; 
  font-weight: 800; 
  font-size: 12px;
  padding: 6px 12px; 
  border-radius: 999px; 
  box-shadow: 0 8px 16px rgba(91,61,245,.25);
}

.ts-body { 
  padding: 18px 20px 20px; 
}

.ts-name { 
  margin: 0 0 8px; 
  font-weight: 800; 
  font-size: 18px; 
  color: #1f2430; 
}

.ts-meta { 
  color: #6d7179; 
  font-weight: 600; 
  font-size: 14px;
}

.ts-btn {
  display: none;
}
    

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* ------------------------ Contact  ---------------------- */

.contact-prism{ position:relative; padding:86px 0 110px; }
.contact-prism::before{
  content:""; position:absolute; inset:auto -6% -80px -6%; height:420px; z-index:-1;
  
  filter: blur(2px);
}
.contact-prism .cp-head{ text-align:center; margin-bottom:26px; }
.cp-eyebrow{ margin:0; color:var(--muted); font-weight:800; font-size:14px; }
.cp-title{ margin:6px 0; font-weight:900; color:var(--ink); font-size:clamp(22px,3.2vw,36px); }
.cp-sub{ margin:0; color:#6d7179; font-weight:600; }


.cp-grid{
  display:grid; gap:20px;
  grid-template-columns: 1.15fr 1fr;     
}
@media (max-width: 1024px){ .cp-grid{ grid-template-columns:1fr } }


.cp-panel{
  position:relative; overflow:hidden; border-radius:24px; isolation:isolate;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border:1px solid rgba(233,238,247,.7);
  box-shadow:
    0 28px 64px rgba(16,24,40,.14),
    0 10px 20px rgba(16,24,40,.06);
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.cp-panel:hover{
  transform: translateY(-3px);
  box-shadow:
    0 38px 90px rgba(16,24,40,.18),
    0 14px 28px rgba(16,24,40,.08);
}


.cp-panel .cp-panel-bg{
  position:absolute; inset:1px; border-radius:inherit; z-index:-1;
  background:
    linear-gradient(180deg,#ffffff 0,#f8fbff 100%) padding-box,
    linear-gradient(135deg, rgba(8,51,254,.45), rgba(241,196,15,.45)) border-box;
  border:1px solid transparent;
  filter: saturate(1.1);
}


.cp-map{ min-height:380px; }
.cp-map iframe{
  display:block; width:100%; height:100%; border:0;
  border-radius:inherit;
  transform: scale(1.01);
  transition: transform .6s ease;
  filter: saturate(1.05) contrast(1.02);
}
.cp-map:hover iframe{ transform: scale(1.04); }


.cp-info{ display:flex; flex-direction:column; gap:16px; padding:22px; }
.cp-info-title{ margin:4px 0 4px; font-size:20px; font-weight:900; text-align:center; }

.cp-list{ list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.cp-list li{
  display:grid; grid-template-columns:56px 1fr; align-items:center; gap:12px;
  padding:12px; border-radius:18px;
  background: linear-gradient(180deg,#fbfcff,#ffffff);
  box-shadow: inset 0 0 0 1px #e9eef6;
}
.cp-ico{
  width:56px; height:56px; border-radius:14px; display:grid; place-items:center;
  background:
    radial-gradient(120px 80px at 30% 20%, rgba(8,51,254,.10), transparent 60%),
    radial-gradient(120px 80px at 80% 70%, rgba(241,196,15,.22), transparent 62%);
  color:var(--brand-2); font-size:19px; font-weight:900;
  box-shadow:
    0 8px 16px rgba(16,24,40,.08),
    inset 0 0 0 1px #e5ebf7;
}
.cp-txt{ font-weight:800; color:#1f2430; text-decoration:none; word-break:break-word; }
.cp-txt:hover{ text-decoration:underline; }


.cp-socials{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
  margin-top:4px; padding-top:8px;
}
.cp-soc-pill{
  --ring: rgba(255,255,255,.55);
  display:flex; align-items:center; gap:12px;
  min-width: clamp(220px, 42vw, 340px);
  padding:12px 16px; border-radius:16px; text-decoration:none; color:#fff; font-weight:800;
  box-shadow: 0 16px 38px rgba(16,24,40,.18);
  position:relative; overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cp-soc-pill::after{ 
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(105deg, rgba(255,255,255,.26), transparent 35%, transparent 65%, rgba(255,255,255,.18));
  mix-blend-mode: overlay; opacity:.55;
}
.cp-soc-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(16,24,40,.22);
  filter: brightness(1.05);
}
.cp-soc-ico{
  width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px var(--ring);
  font-size:18px;
}
.cp-soc-text{ display:flex; flex-direction:column; line-height:1.15 }
.cp-soc-text b{ font-size:16px; font-weight:900; }
.cp-soc-text small{ font-weight:700; opacity:.95 }


.cp-soc-pill.wa{
  background: linear-gradient(135deg,#22c35e,#0ea84b);
}
.cp-soc-pill.fb{
  background: linear-gradient(135deg,#1f60e0,#1447b3);
}


@media (max-width:560px){
  .cp-soc-pill{ min-width:100%; justify-content:center }
}



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

.site-footer{ padding: 56px 0 70px; background: transparent; }

.site-footer .foot-card{
  position: relative;
  border-radius: 26px;
  border: 1px solid #dfe8ff;
  background:
    linear-gradient(180deg, #eaf2ff 0%, #f3f7ff 24%, #ffffff 62%, #ffffff 100%);
  box-shadow:
    0 24px 64px rgba(23,45,157,.12),
    0 10px 24px rgba(23,45,157,.06);
  overflow: hidden;
  isolation: isolate;
}


.site-footer .foot-card::before{
  content:"";
  position:absolute; inset:-8px -8px 55% -8px;
  
  pointer-events:none;
  z-index:0;
}


.foot-head{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;  
  align-items: center;
  gap: 16px;
  padding: 22px 22px 18px;
}

.foot-brand{
  justify-self: start;
  display:flex; align-items:center; gap:10px;
  color:#0b1220; text-decoration:none;
  font-weight:900;
}
.foot-brand img{ width: 40px; height: 40px; object-fit: contain; }


.foot-nav{ justify-self:center; display:flex; gap:26px; flex-wrap:wrap; }
.foot-nav a{
  color:#233048; font-weight:800; text-decoration:none;
  padding: 6px 2px;
  transition: color .15s ease;
}
.foot-nav a:hover{ color:#1d4ed8; }


.foot-socials{ justify-self:end; display:flex; gap:10px; }
.foot-socials .s{
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  background:#ffffff;
  color:#1d4ed8;
  border:1px solid #e5edff;
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.foot-socials .s:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(37,99,235,.28);
}
.foot-socials .s i{ font-size: 18px; }


.foot-line{
  border:0; height:1px;
  margin: 10px 18px 0;
  background: linear-gradient(to left, rgba(20,40,120,.2), rgba(20,40,120,.08), rgba(20,40,120,.2));
}


.foot-meta{
  position: relative; z-index: 1;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
  padding: 14px 22px 22px;
}
.foot-meta .rights{
  margin:0; color:#2a3550; font-weight:800;
}
.foot-meta .credit{
  margin:0; color:#2a3550; font-weight:800;
}
.foot-meta .credit a{
  color:#1d4ed8; text-decoration:none; font-weight:900;
  background: linear-gradient(90deg,#3b82f6,#2563eb,#1d4ed8);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.foot-meta .credit a:hover{ filter: brightness(1.1); }


@media (max-width: 900px){
  .foot-head{
    grid-template-columns: 1fr; 
    text-align:center;
  }
  .foot-brand{ justify-content:center; justify-self:center; }
  .foot-nav{ justify-content:center; }
  .foot-socials{ justify-content:center; }
  .foot-line{ margin: 14px 16px 0; }
  .foot-meta{ justify-content:center; text-align:center; }
}


.site-footer.footer-with-bag{
  position: relative;
  z-index: 1;                 
}


.site-footer .foot-card{ position: relative; }


.site-footer .foot-deco--bag{
  position: absolute;
  top: -100px;                               
  left: 200px;               
  width: 150px;
  height: 150px;
  transform: rotate(-6deg);
  pointer-events: none;
  user-select: none;
  z-index: 6;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.18));
}


.site-footer .foot-deco--bag::after{
  content: "";
  position: absolute;
  left: 18%;
  bottom: -18px;
  width: 64%;
  height: 22px;
  transform: rotate(4deg);
  background: radial-gradient(ellipse at center,
              rgba(0,0,0,.18) 0%, rgba(0,0,0,.08) 45%, transparent 72%);
  filter: blur(2px);
  z-index: -1;
}


@media (max-width: 680px){
  .site-footer .foot-deco--bag{
    top: -62px;
    left: 16px;
    width: 118px;
    transform: rotate(-5deg);
  }
  .site-footer .foot-deco--bag::after{
    bottom: -14px;
    width: 70%;
    height: 18px;
  }
}



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