/* ============================================================
   AL MOHSIN PRINTING PRESS — SHARED STYLESHEET
   Theme: strict black & white / grayscale
   Type: Montserrat (Regular 400 / Medium 500 / Bold 700)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --charcoal: #2b2b2b;
  --gray-700: #555555;
  --gray-500: #7a7a7a;
  --gray-300: #c7c7c7;
  --gray-200: #e2e2e2;
  --gray-100: #f2f2f2;
  --white: #ffffff;
  --line: #1f1f1f;
  --line-soft: #e6e6e6;
  --radius: 2px;
  --maxw: 1180px;
  --gap: 24px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

:root {

  --bg: #ffffff;
  --text: #000000;

  --section: #ffffff;
  --card: #ffffff;

  --heading: #000000;
  --paragraph: #333333;

  --border: #dddddd;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.hide-mobile {
  display: block;
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

/* ---------- utility ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--black);
  display: inline-block;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-top: 14px;
}

.section-sub {
  margin-top: 16px;
  color: var(--gray-700);
  font-size: 16px;
}

.italic {
  font-style: italic;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--black);
  transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--black);
  color: var(--gray-300);
  font-size: 12.5px;
  font-weight: 500;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
}

.topbar a:hover {
  color: var(--gray-300);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .02em;
  font-weight: 600;
  color: var(--white);
}

.topbar-left .dot {
  color: var(--gray-500);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ============ HEADER ============ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.brand-mark {
  width: 60px;
  height: 60px;
  /* background: var(--black);
  color: var(--white); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em; */
  flex: none;
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 10.2px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width .25s var(--ease);
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  width: 100%;
}

nav.main-nav a.active {
  color: var(--black);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--black);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

/* ============ HERO ============ */
.hero {
  padding: 64px 0 60px;
  border-bottom: 1px solid var(--line-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--black);
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  margin-top: 22px;
  font-size: 16.5px;
  color: var(--gray-700);
  max-width: 520px;
}

.hero-checks {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.hero-checks li::before {
  content: "✓";
  color: var(--white);
  background: var(--black);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: none;
}

.hero-actions {
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-size: 30px;
  font-weight: 700;
}

.hero-stats .stat-label {
  font-size: 11.5px;
  font-weight: bold;
  color: var(--gray-500);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  aspect-ratio: 3/5;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 25px;
  box-shadow: #2b2b2b 0px 12px 24px -6px;
  animation: updown 3s linear infinite;
}

@keyframes updown {

  0%,
  100% {
    bottom: 0;
  }

  50% {
    bottom: 14px;
  }
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform .5s var(--ease);
  cursor: pointer;
}

.hero-frame-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  border: 1px solid var(--black);
}

.hero-frame img:hover {
  transform: scale(1.03);
}

.hero-chip {
  position: absolute;
  top: 20px;
  right: -18px;
  background: var(--black);
  color: var(--white);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.hero-chip .n {
  font-size: 24px;
  font-weight: 700;
}

.hero-chip .t {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-300);
}

/* marquee */
.marquee-strip {
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
  overflow: hidden;
  padding: 14px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}

/* .marquee-strip .marquee-track{display:flex;width:max-content;animation:scrollx 32s linear infinite;} */
.marquee-strip {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollx 32s linear infinite;
}

.marquee-track img {
  width: 160px;
  height: 110px;
  object-fit: contain;
  margin: 0 35px;
}

/* .marquee-track:hover {
    animation-play-state: paused;
} */
.marquee-track img:hover {
  cursor: pointer;

}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-strip span {
  color: var(--gray-300);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 22px;
  white-space: nowrap;
  border-right: 1px solid var(--charcoal);
}

.marquee-strip span img {
  width: 50px;
  height: auto;
}

@keyframes scrollx {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.clients-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--line-soft);
}

.clients-strip .label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 22px;
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: center;
}

.clients-row span {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--gray-700);
}

/* ============ FEATURE / ABOUT teaser ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-copy p+p {
  margin-top: 16px;
  color: var(--gray-700);
}

.feature-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.feature-item {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

.feature-item .glyph {
  font-size: 20px;
}

.feature-item h4 {
  margin-top: 10px;
  font-size: 15px;
}

.feature-item p {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--gray-700);
}

/* ============ SERVICES GRID ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.svc-card {
  background: var(--white);
  padding: 34px 30px;
  transition: background .25s var(--ease);
}

.svc-card:hover {
  background: var(--gray-100);
}

.svc-index {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
}

.svc-card h3 {
  margin-top: 14px;
  font-size: 19px;
}

.svc-card p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-700);
}

.svc-link {
  margin-top: 18px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
}

/* ============ PORTFOLIO GRID ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.p-item {
  border: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
}

.p-item .ph {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}

.p-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.p-item:hover img {
  transform: scale(1.06);
}

.p-cap {
  padding: 14px 16px;
}

.p-cap .tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.p-cap h4 {
  margin-top: 6px;
  font-size: 14.5px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid var(--black);
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--white);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* ============ WHY / STEPS ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
}

.why-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
}

.why-card h4 {
  margin-top: 16px;
  font-size: 17px;
}

.why-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

/* ============ TIMELINE (about page) ============ */
.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 36px;
  border-left: 1px solid var(--line-soft);
}

.tl-item {
  position: relative;
  padding-bottom: 44px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: var(--black);
  border-radius: 50%;
}

.tl-year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gray-500);
}

.tl-item h4 {
  margin-top: 6px;
  font-size: 18px;
}

.tl-item p {
  margin-top: 8px;
  color: var(--gray-700);
  font-size: 14.5px;
  max-width: 560px;
}

/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  border: 1px solid var(--line-soft);
  padding: 28px 22px;
}

.value-card .glyph {
  font-size: 22px;
}

.value-card h4 {
  margin-top: 14px;
  font-size: 15px;
}

.value-card p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-700);
}

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  border: 1px solid var(--line-soft);
  padding: 30px;
  background: var(--gray-100);
}

.stars {
  color: var(--black);
  font-size: 13px;
  letter-spacing: 2px;
}

.testi-card p {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--charcoal);
}

.testi-name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 14px;
}

.testi-role {
  font-size: 12.5px;
  color: var(--gray-500);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-weight: 600;
  font-size: 15.5px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q .plus {
  font-size: 20px;
  font-weight: 400;
  transition: transform .25s var(--ease);
  flex: none;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}

.faq-a p {
  padding: 0 4px 22px;
  color: var(--gray-700);
  font-size: 14.5px;
  max-width: 680px;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta-band .eyebrow {
  color: var(--gray-300);
}

.cta-band .eyebrow::before {
  background: var(--white);
}

.cta-band h2 {
  margin-top: 16px;
  font-size: clamp(26px, 4vw, 38px);
}

.cta-band p {
  margin-top: 14px;
  color: var(--gray-300);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-row {
  justify-content: center;
  margin-top: 30px;
}

.cta-band .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--gray-200);
}

/* ============ CONTACT TILES ============ */
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.c-tile {
  background: var(--white);
  padding: 34px 26px;
  text-align: center;
  transition: background .2s var(--ease);
}

.c-tile:hover {
  background: var(--gray-100);
}

.c-tile .icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
}

.c-tile .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.c-tile .value {
  margin-top: 8px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line-soft);
  padding: 38px;
}
.form-row input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  font-size: 14px;
}

.form-row input[type="file"]::file-selector-button {
  background: #111827;
  color: white;
  border: none;
  padding: 10px 16px;
  margin-right: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.form-row input[type="file"]::file-selector-button:hover {
  background: #2563eb;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--black);
  outline: none;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.map-card {
  border: 1px solid var(--line-soft);
  padding: 0;
}

.map-frame {
  aspect-ratio: 4/3;
  background: var(--gray-100) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><rect width="10" height="10" fill="%23f2f2f2"/><path d="M0 10L10 0" stroke="%23e2e2e2"/></svg>');
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-pin {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.map-card .map-cap {
  padding: 22px 24px;
  border-top: 1px solid var(--line-soft);
}

.map-card .map-cap a {
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 12px 12px;

  background: #000;
  
  color: #fff;

  border: none;
  border-radius: 8px;

  cursor: pointer;

  font-size: 16px;

  transition: .3s ease;
}

.map-cap a:hover {
  background-color: var(--white);
  color: var(--black);
  /* border: 1px solid var(--black); */
}

.hours-list {
  margin-top: 22px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
}

.hours-list li:first-child {
  border-top: none;
}

.hours-list li span:last-child {
  font-weight: 600;
}

/* ============ ABOUT MILESTONE STRIP ============ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-soft);
}

.stat-strip .s {
  padding: 34px 20px;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}

.stat-strip .s:first-child {
  border-left: none;
}

.stat-strip .s .num {
  font-size: 32px;
  font-weight: 700;
}

.stat-strip .s .lab {
  margin-top: 6px;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 56px 0 46px;
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(30px, 5vw, 48px);
}

.page-hero p {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--gray-700);
}

.breadcrumb {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--gray-500);
}

.breadcrumb a {
  font-weight: 700;
  color: var(--black);
}

/* ============ CATEGORY DETAIL BLOCK (services page) ============ */
.cat-block {
  padding: 70px 0;
  border-bottom: 1px solid var(--line-soft);
}

.cat-block:last-of-type {
  border-bottom: none;
}

.cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.cat-head .cat-title {
  font-size: clamp(24px, 3.4vw, 32px);
}

.cat-head .cat-index {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
}

.cat-desc {
  color: var(--gray-700);
  max-width: 760px;
  margin-bottom: 34px;
  font-size: 15px;
}

.cat-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cat-services li {
  border: 1px solid var(--line-soft);
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* .cat-services li::before {
  content: "—";
  color: var(--gray-500);
  flex: none;
} */

/* toc pills */
.cat-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 30px 0 10px;
}

.cat-toc a {
  border: 1px solid var(--black);
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.cat-toc a:hover {
  background: var(--black);
  color: var(--white);
  transition: all .5s var(--ease);
}

/* ============ CLIENTS PAGE ============ */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 40px;
}

.client-logo {
  background: var(--white);
  padding: 34px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--charcoal);
  min-height: 110px;
}

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--black);
  /* color: var(--gray-300); */
  color: var(--white);
  padding-top: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--charcoal);
}

.footer-brand .brand-mark {
  /* background: var(--white); */
  color: var(--black);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-tag {
  color: var(--gray-500);
}

.footer-brand p {
  margin-top: 20px;
  font-weight: 500;
  /*add by me*/
  font-size: 14px;
  color: var(--gray-300);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-social a:hover {
  border-color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 13px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--gray-300);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col.visit li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--gray-300);
  margin-bottom: 14px;
}

.footer-col.visit .ic {
  flex: none;
  width: 18px;
  text-align: center;
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 12.5px;
  color: var(--gray-500);
}

.wa-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  fill: currentColor;
}

.wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wa-inline .wa-icon {
  width: 14px;
  height: 14px;
}

.footer-social a .wa-icon {
  width: 16px;
  height: 16px;
}

/* .footer-col.visit .ic .wa-icon {
  width: 16px;
  height: 16px;
  fill: var(--gray-300);
} */

.wa-float .wa-icon {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.c-tile .icon .wa-icon {
  width: 22px;
  height: 22px;
  fill: var(--black);
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 50px;
  height: 50px;
  background: rgba(37, 211, 102, 100);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease);
  animation: pulse 2.5s ease infinite;
}

/* .wa-float:hover {
  transform: scale(1.08);
} */

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.close-mobile-only {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* ============ RESPONSIVE ============ */
@media (max-width:980px) {

  .hero-grid,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .svc-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip .s:nth-child(3) {
    border-left: none;
  }
}

@media (max-width:760px) {
  nav.main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 80%;
    max-width: 320px;
    background: var(--white);
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    z-index: 99;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
  }

  nav.main-nav.open {
    transform: translateX(0);
  }

  .close-mobile-only {
    display: inline-block;
    cursor: pointer;
  }

  /* close icon */
  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    ;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta .btn {
    display: none;
  }

  .topbar-left span:not(:first-child) {
    display: none;
  }

  .hero-chip {
    display: none;
  }

  .svc-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .portfolio-grid.compact {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .contact-tiles {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-services {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip .s {
    border-left: none;
    border-top: 1px solid var(--line-soft);
  }

  .stat-strip .s:first-child {
    border-top: none;
  }

  .form-two {
    grid-template-columns: 1fr;
  }
}

/* ============ Scroll to Top Button ============ */
#scrollTopBtn {
  display: none;
  /* Hide initially */
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #000000;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

#scrollTopBtn:hover {
  transform: scale(1.08);
  transition: all 0.3s ease-in;
}

#scrollTopBtn:not(:hover) {
  transform: scale(1);
  transition: all 0.3s ease-out;
}

/*Image Popup*/
.popup-text:hover {
  color: white;
  background-color: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.gallery-popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity .5s ease-in-out;
}

.gallery-popup img {

  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;

  opacity: 1;
  transform: scale(1);

  transition:
    opacity .5s ease,
    transform .5s ease;

}

/* .gallery-popup img{
    max-width:85%;
    max-height:85%;
    border-radius:10px;
    opacity:1;
    transition:opacity .5s ease-in-out;
} */

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

@media (max-width:768px) {

  .prev,
  .next {
    display: none;
  }

}