/* ============================================================
   SLIKTRA — Business Development
   Design tokens
   ============================================================ */

:root{
  /* --- Light theme --- */
  --bg: #ffffff;
  --bg-alt: #f4f6fb;
  --bg-card: #ffffff;
  --surface-raised: #ffffff;
  --text: #10152b;
  --text-muted: #5a6178;
  --text-faint: #8a91a8;
  --border: #e6e9f3;
  --border-strong: #d3d8ea;

  --primary: #0033ff;
  --primary-dim: #eef1fd;
  --primary-deep: #081349;
  --primary-mid: #142c9c;
  --accent: #0033ff;

  --shadow-sm: 0 1px 3px rgba(16, 21, 43, .06);
  --shadow-md: 0 8px 24px rgba(16, 21, 43, .08);
  --shadow-lg: 0 20px 48px rgba(16, 21, 43, .14);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --font-display: 'Cairo', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', 'Cairo', sans-serif;

  color-scheme: light;
}

html[data-theme="dark"]{
  --bg: #080b16;
  --bg-alt: #0e1224;
  --bg-card: #10142a;
  --surface-raised: #131832;
  --text: #eef1fb;
  --text-muted: #a4abc6;
  --text-faint: #6b7292;
  --border: #212745;
  --border-strong: #2a3157;

  --primary: #0033ff;
  --primary-dim: #161d3f;
  --primary-deep: #030616;
  --primary-mid: #1c2c7a;
  --accent: #23e0c2;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .4);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);

  color-scheme: dark;
}

/* ============================================================
   Reset & base
   ============================================================ */

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  margin: 0;
  font-weight: 800;
  color: var(--text);
}
p{ margin: 0; }
.btn{
    transition:.35s;
    z-index: 100;
}

.btn:hover{
    transform:translateY(-4px);
}

.service-card,
.work-card{
    transition:.35s;
}

.service-card:hover,
.work-card:hover{
    transform:translateY(-10px);
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

.hero-bg{
    overflow:hidden;
}
.hero-bg::before{
    animation:float 8s ease-in-out infinite;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

}
.work-thumb{
    overflow:hidden;
    width: 100%;
}

.work-thumb span{
    display:block;
}

.hero-actions .btn{
    transform:translateY(20px);
    /* opacity:0; */
}
:focus-visible{
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: .2px;
}
.eyebrow::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-head{
  max-width: 640px;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-head.center{ margin-inline: auto; text-align: center; align-items: center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); line-height: 1.25; }
.section-head p{ color: var(--text-muted); font-size: 17px; }

.bg-alt{ background: var(--bg-alt); }

/* ============================================================
   Buttons
   ============================================================ */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--primary) 65%, transparent);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px -8px color-mix(in srgb, var(--primary) 70%, transparent); }

.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover{ border-color: var(--primary); color: var(--primary); }

.btn-on-dark{
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn-on-dark:hover{ background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

.btn-block{ width: 100%; }
.btn-sm{ padding: 9px 18px; font-size: 13.5px; }

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 84px;
}

.logo{
    width: 160px;
}

.brand{ display: flex; align-items: center; gap: 10px; }
.brand-mark{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 2px;
}
.brand-mark .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  margin: 0 1px;
  transform: translateY(-9px);
}
.brand-mark span{ color: var(--primary); }
.brand-sub{
  font-size: 10.5px;
  color: var(--text-faint);
  letter-spacing: 1px;
  border-inline-start: 1px solid var(--border-strong);
  padding-inline-start: 10px;
  margin-inline-start: 2px;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--text); }
.nav-links a.active::after{
  content: "";
  position: absolute;
  bottom: -2px; right: 0; left: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions{ display: flex; align-items: center; gap: 12px; }

.theme-toggle{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: border-color .2s ease, transform .3s ease, background .2s ease;
  flex-shrink: 0;
}
.theme-toggle:hover{ border-color: var(--primary); }
.theme-toggle svg{ width: 19px; height: 19px; }
.theme-toggle .sun{ display: none; }
html[data-theme="dark"] .theme-toggle .sun{ display: block; }
html[data-theme="dark"] .theme-toggle .moon{ display: none; }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-card);
  align-items: center;
  justify-content: center;
  color: var(--text);
}

@media (max-width: 940px){
  .nav-links{
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    gap: 6px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav-links.open{ height: 35rem; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a{ padding: 14px 10px !important; border-bottom: 1px solid var(--primary-mid); border-radius: 20px; font-size: 17px; }
  .nav-toggle{ display: flex; }
  .cta-desktop{ display: none; }
}

/* ============================================================
   Hero — signature beam background
   ============================================================ */

.hero-bg {
    position: relative;
    overflow: hidden;
    /* color: #fff; */
    isolation: isolate;

    background-image: url("../img/hero-light1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    min-height: 80vh;
}

/* Dark mode */
[data-theme="dark"] .hero-bg {
    background-image: url("../img/hero-dark1.png");
}

@media(max-width: 940px) {
    .hero-bg {
    position: relative;
        background: radial-gradient(120% 140% at 15% 0%, var(--primary-mid) 0%, var(--primary-dim ) 46%, #01040f 100%);
        overflow: hidden;
        /* color: #fff; */
        isolation: isolate;
    }

    [data-theme="dark"] .hero-bg{
    position: relative;
        background: radial-gradient(120% 140% at 15% 0%, var(--primary-mid) 0%, var(--primary-deep) 46%, #01040f 100%);
        overflow: hidden;
        color: #fff;
        isolation: isolate;
    }

}

.beam-bg{
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, var(--primary-mid) 0%, var(--primary-deep) 46%, #01040f 100%);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.beam-bg::before{
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 210deg at 20% 55%, transparent 0deg, rgba(120,150,255,.55) 18deg, transparent 46deg),
    conic-gradient(from 250deg at 35% 70%, transparent 0deg, rgba(80,120,255,.35) 14deg, transparent 40deg);
  filter: blur(30px);
  opacity: .9;
  z-index: 0;
  animation: beam-drift 22s ease-in-out infinite alternate;
}
.beam-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 20%, black, transparent);
  opacity: .5;
  z-index: 0;
}
@keyframes beam-drift{
  0%{ transform: translate3d(0,0,0) rotate(0deg); }
  100%{ transform: translate3d(2%, -2%, 0) rotate(4deg); }
}
.beam-bg > .container{ position: relative; z-index: 1; }

.hero{
  padding: 76px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

@media(min-width: 940px){
  .hero-content{
      margin-right: 13rem;
  }
}


.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  /* color: var(--primary); */
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(21, 20, 20, 0.18);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero-eyebrow::before{ content:""; width:6px; height:6px; border-radius:50%; background: var(--accent); }
.hero h1{
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.22;
  /* color: #fff; */
  margin-bottom: 22px;
}
.hero h1 em{ font-style: normal; color: var(--accent); }
.hero p.lead{
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual{
  position: relative;
  aspect-ratio: 1/.82;
}
.hero-card{
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  color: var(--text);
}
.hero-card-main{
  inset: 6% 10% 12% 0;
  padding: 22px;
}
.hero-card-float{
  width: 168px;
  bottom: -4%;
  left: -2%;
  padding: 16px;
  /* animation: float-y 50s ease-in-out infinite; */
}
@keyframes float-y{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
.stat-row{ display:flex; align-items:baseline; gap: 8px; }
.stat-num{ font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.stat-chip{ font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-pill); background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); }
.stat-label{ font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.mini-bars{ display:flex; align-items:flex-end; gap:6px; height: 44px; margin-top: 14px; }
.mini-bars span{ flex:1; border-radius: 4px 4px 0 0; background: var(--primary); opacity:.85; }

@media (max-width: 860px){
  .hero{ grid-template-columns: 1fr; text-align: center; padding-top: 48px; }
  .hero-eyebrow{ margin-inline: auto; }
  .hero p.lead{ margin-inline: auto; }
  .hero-actions{ justify-content: center; }
  .hero-visual{ margin-top: 60px; aspect-ratio: 1/.9; max-width: 420px; margin-inline: auto; }
}

/* logos strip */
.logo-strip{ padding: 44px 0; }
.logo-strip-label{ text-align:center; font-size: 13px; color: var(--text-faint); font-weight: 700; margin-bottom: 26px; letter-spacing: .5px; }
.logo-grid{
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.logo-grid .logo-item{
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--text-faint); opacity: .8; transition: opacity .2s, color .2s;
}
.logo-grid .logo-item:hover{ opacity: 1; color: var(--text); }

/* ============================================================
   Cards
   ============================================================ */

.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

@media (max-width: 940px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.card{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.icon-box{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-box svg{ width: 24px; height: 24px; }
.icon-box.alt{ background: var(--primary-dim); color: var(--primary); }

.service-card h3{ font-size: 20px; margin-bottom: 14px; }
.check-list{ display: flex; flex-direction: column; gap: 12px; margin: 18px 0 22px; }
.check-list li{ display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-muted); }
.check-list li svg{ width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.card-link{ font-size: 14.5px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.card-link svg{ width: 15px; height: 15px; transition: transform .2s ease; }
.card-link:hover svg{ transform: translateX(-3px); }

/* about split */
.split{
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 56px;
  /* overflow-x: hidden; */
  /* min-height: 44rem; */
  align-items: center;
}
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; } }
.split-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.split-media img{ width: 80%; height: 100%; object-fit: cover; }

/* portfolio */
.work-card{
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.work-thumb{
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  position: relative; overflow: hidden;
}
/* .work-thumb span{ position: relative; z-index: 1; }
.work-thumb::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, var(--wc1, #1a3fe4), var(--wc2, #081349));
  opacity:.92;
} */
.work-body{ padding: 22px 24px; }
.work-tag{ font-size: 12.5px; font-weight: 700; color: var(--primary); margin-bottom: 6px; display:block; }
.work-body h4{ font-size: 17px; margin-bottom: 6px; }
.work-body p{ font-size: 14px; color: var(--text-muted); }

/* stats bar */
.stats-bar{
  background: var(--primary-deep);
  color: #fff;
  padding: 52px 0;
}
.stats-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align:center; }
@media (max-width: 760px){ .stats-grid{ grid-template-columns: 1fr 1fr; } }
.stat-block .num{ font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.5vw,38px); color: #fff; }
.stat-block .num span{ color: var(--accent); }
.stat-block .lbl{ font-size: 14px; color: rgba(255,255,255,.65); margin-top: 6px; }

/* CTA band */
.cta-band{
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h3{ font-size: clamp(22px,2.6vw,30px); color:#fff; margin-bottom: 8px; }
.cta-band p{ color: rgba(255,255,255,.75); }

/* page header (inner pages) */
.page-head{ padding: 64px 0 60px; text-align: center; }
.page-head .eyebrow{ background: rgba(255,255,255,.1); color: #cfe0ff; border:1px solid rgba(255,255,255,.2); }
.page-head h1{ color: #fff; font-size: clamp(30px,4vw,46px); margin: 18px 0 14px; }
.page-head p{ color: rgba(255,255,255,.75); max-width: 560px; margin-inline:auto; font-size:16px; }
.breadcrumb{ font-size: 13.5px; color: rgba(255,255,255,.6); display:flex; gap:8px; justify-content:center; margin-top:16px; }
.breadcrumb a{ color: rgba(255,255,255,.85); }
.breadcrumb a:hover{ text-decoration: underline; }

/* form */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px){ .form-grid{ grid-template-columns: 1fr; } }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field.full{ grid-column: 1/-1; }
.field label{ font-size: 14px; font-weight: 700; color: var(--text); }
.field input, .field textarea, .field select{
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline: none; border-color: var(--primary); background: var(--bg-card);
}
.field textarea{ resize: vertical; min-height: 130px; }

.contact-info-card{
  background: var(--bg-card);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display:flex; gap:16px; align-items:flex-start;
}
.contact-info-card h4{ font-size:16px; margin-bottom:4px; }
.contact-info-card p, .contact-info-card a{ font-size:14.5px; color: var(--text-muted); }
.contact-info-card p{ transform: none !important;}
/* blog */
.blog-card{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-thumb{
  aspect-ratio: 16/10;
  position: relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.blog-thumb::before{ content:""; position:absolute; inset:0; background: linear-gradient(150deg, var(--wc1,#1a3fe4), var(--wc2,#081349)); opacity:.9; }
.blog-thumb svg{ position:relative; z-index:1; width:44px; height:44px; color:#fff; opacity:.85; }
.blog-body{ padding: 24px; }
.blog-meta{ display:flex; gap:14px; align-items:center; font-size:12.5px; color: var(--text-faint); margin-bottom:12px; }
.blog-body h3{ font-size: 18.5px; margin-bottom: 10px; line-height:1.5; }
.blog-body p{ font-size: 14.5px; color: var(--text-muted); margin-bottom: 16px; }

/* values / process steps */
.step{ display:flex; gap:20px; }
.step-num{
  font-family: var(--font-display); font-weight:800; font-size: 15px;
  width: 40px; height:40px; border-radius:50%;
  background: var(--primary-dim); color: var(--primary);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.step h4{ font-size:16.5px; margin-bottom:6px; }
.step p{ font-size:14.5px; color:var(--text-muted); }

/* accordion (FAQ-ish / process) */
.timeline{ position:relative; padding-inline-start: 0; }
.timeline-item{ display:flex; gap:20px; padding-bottom:34px; position:relative; }
.timeline-item::before{
  content:""; position:absolute; top:42px; bottom:0; right:19px;
  width:1.5px; background: var(--border);
}
.timeline-item:last-child::before{ display:none; }

/* footer */
.site-footer{
  background: var(--primary-deep);
  color: rgba(255,255,255,.75);
  padding: 68px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand .brand-mark{ color:#fff; }
.footer-brand p{ font-size: 14px; margin-top: 14px; max-width: 300px; color: rgba(255,255,255,.6); }
.footer-col h5{ font-size: 14.5px; color:#fff; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col ul{ display:flex; flex-direction:column; gap: 12px; }
.footer-col a{ font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover{ color: #fff; }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ background: var(--primary); border-color: var(--primary); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
  padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5);
}
.footer-bottom a{ color: rgba(255,255,255,.7); }
.footer-bottom a:hover{ color:#fff; }

/* misc helpers */
.text-center{ text-align:center; }
.mt-8{ margin-top:8px; }
.fade-up{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.in-view{ opacity:1; transform: translateY(0); }

.tag-pill{
  display:inline-block; font-size:12.5px; font-weight:700;
  color: var(--primary); background: var(--primary-dim);
  padding: 5px 13px; border-radius: var(--radius-pill);
}

/* ==========================
   Image
========================== */

.work-thumb{

    overflow:hidden;

    height:230px;

    background:#f8f8f8;

}

.work-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.work-card:hover img{

    transform:scale(1.08);

}
/* =========================
   Pagination
========================= */
nav[aria-label="Pagination Navigation"] {
    margin-top: 50px;
    direction: ltr;
}
nav[aria-label="Pagination Navigation"]{
    .flex-1{
        display: none !important;
    }
}

nav[aria-label="Pagination Navigation"] .hidden.sm\:flex-1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hide "Showing 1 to 12..." */
nav[aria-label="Pagination Navigation"] p {
    display: none;
}

/* Pagination Container */
nav[aria-label="Pagination Navigation"] .inline-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: none !important;
}

/* All buttons */
nav[aria-label="Pagination Navigation"] a,
nav[aria-label="Pagination Navigation"] span[aria-current="page"] span,
nav[aria-label="Pagination Navigation"] span[aria-disabled="true"] span {
    min-width: 45px;
    height: 45px;
    padding: 0 16px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;

    background: #fff;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}

/* Hover */
nav[aria-label="Pagination Navigation"] a:hover {
    background: var(--primary);
    /* color: #000 !important; */
    border-color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Active Page */
nav[aria-label="Pagination Navigation"] span[aria-current="page"] span {
    background: linear-gradient(
        135deg,
        var(--primary),
        #1d4ed8
    ) !important;

    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Disabled */
nav[aria-label="Pagination Navigation"] span[aria-disabled="true"] span {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Previous & Next Icons */
nav[aria-label="Pagination Navigation"] svg {
    width: 18px;
    height: 18px;
}

/* Remove Tailwind negative margins */
nav[aria-label="Pagination Navigation"] .-ml-px {
    margin-left: 0 !important;
}

/* Mobile */
@media (max-width: 640px) {
    nav[aria-label="Pagination Navigation"] .flex.justify-between.flex-1 {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    nav[aria-label="Pagination Navigation"] .flex.justify-between.flex-1 a,
    nav[aria-label="Pagination Navigation"] .flex.justify-between.flex-1 span {
        border-radius: 12px;
        padding: 12px 20px;
    }
}
.filter-bar {
  display: flex;             /* d-flex */
  justify-content: center;   /* justify-content-center */
  margin-bottom: 3rem;       /* mb-5 (Bootstrap 5 standard scale) */
}
