/* =====================================================================
   MANHATTAN GRAPHICS — style.css
   Theme: CMYK printing palette. All colours are CSS variables below,
   so you can re-theme the whole site by editing this one block.
===================================================================== */

:root {
  /* ---- BRAND COLOURS (edit these to re-theme) ---- */
  --c-cyan: #00AEEF;
  /* C */
  --c-magenta: #E6007E;
  /* M  (primary brand accent) */
  --c-yellow: #FFD200;
  /* Y */
  --c-ink: #1E1B4B;
  /* K  (deep navy ink — headings/dark sections) */

  --c-primary: var(--c-magenta);
  /* main accent used across buttons/links */
  --c-accent: var(--c-cyan);
  /* secondary accent */

  /* ---- NEUTRALS ---- */
  --c-text: #2b2b38;
  --c-muted: #6b6b7b;
  --c-light: #f6f7fb;
  /* light section bg */
  --c-soft: #eef0f7;
  /* softer tint bg */
  --c-white: #ffffff;
  --c-border: #e6e8f0;

  /* ---- TYPOGRAPHY ---- */
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ---- EFFECTS ---- */
  --shadow-sm: 0 4px 14px rgba(30, 27, 75, .07);
  --shadow-md: 0 12px 30px rgba(30, 27, 75, .10);
  --shadow-lg: 0 24px 60px rgba(30, 27, 75, .16);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --gradient: linear-gradient(120deg, var(--c-magenta), #b3006a);
}

/* =====================================================================
   BASE / RESET
===================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
  /* no horizontal scroll on mobile */
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--c-ink);
  line-height: 1.2;
  letter-spacing: -.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s var(--ease);
}

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

section {
  position: relative;
}

/* selection */
::selection {
  background: var(--c-magenta);
  color: #fff;
}

/* =====================================================================
   REUSABLE HELPERS
===================================================================== */
.section {
  padding: 92px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 54px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 14px;
  position: relative;
  padding-left: 38px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 3px;
  transform: translateY(-50%);
  background: var(--c-magenta);
  /* CMYK bar accent on the eyebrow line */
  background: linear-gradient(90deg, var(--c-cyan) 0 25%, var(--c-magenta) 25% 50%, var(--c-yellow) 50% 75%, var(--c-ink) 75% 100%);
}

.text-center .eyebrow {
  padding-left: 0;
}

.text-center .eyebrow::before {
  display: none;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--c-muted);
  font-size: 1.05rem;
}

.hl-magenta {
  color: var(--c-magenta);
}

.hl-cyan {
  color: var(--c-cyan);
}

.hl-yellow {
  color: #e0b400;
}

/* ---- BUTTONS (varied hover effects) ---- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 50px;
  padding: 13px 30px;
  transition: all .35s var(--ease);
  border: 0;
}

.btn-brand {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 22px rgba(230, 0, 126, .32);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(230, 0, 126, .42);
  letter-spacing: .3px;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
  transform: translateY(-3px);
}

/* =====================================================================
   1. TOP BAR
===================================================================== */
.topbar {
  background: var(--c-ink);
  color: #cfd0e6;
  font-size: .85rem;
  padding: 8px 0;
}

.topbar-link {
  color: #cfd0e6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-link:hover {
  color: var(--c-yellow);
}

.topbar-link i {
  color: var(--c-cyan);
}

.topbar-badge {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  color: var(--c-ink);
  background: var(--c-yellow);
  padding: 3px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.topbar-social a:hover {
  background: var(--c-magenta);
  color: #fff;
}

/* =====================================================================
   2. STICKY HEADER
===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header .navbar {
  transition: padding .3s var(--ease);
}

.site-header.scrolled .navbar {
  padding: 9px 0;
}

/* CMYK dot logo mark */
.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 26px;
}

.brand-mark .dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
}

.brand-mark .dot.c {
  background: var(--c-cyan);
}

.brand-mark .dot.m {
  background: var(--c-magenta);
}

.brand-mark .dot.y {
  background: var(--c-yellow);
}

.brand-mark .dot.k {
  background: var(--c-ink);
}

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

.brand-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--c-muted);
  letter-spacing: -.02em;
}

.brand-text strong {
  color: var(--c-ink);
  font-weight: 800;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--c-ink);
  font-size: .96rem;
  margin: 0 4px;
  padding: 8px 12px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--c-magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.navbar-nav .nav-link:hover {
  color: var(--c-magenta);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.cta-nav {
  background: var(--gradient);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  margin-left: 10px;
  box-shadow: 0 6px 16px rgba(230, 0, 126, .3);
}

.nav-link.cta-nav::after {
  display: none;
}

.nav-link.cta-nav:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.navbar-toggler {
  border: 0;
  font-size: 1.7rem;
  color: var(--c-ink);
  box-shadow: none !important;
}

/* =====================================================================
   3. HERO CAROUSEL
===================================================================== */
.hero-slide {
  height: 86vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

/* Per-slide background images (paths relative to this CSS file) */
.hero-bg-1 {
  background-image: url('../images/b1.jpeg');
}

.hero-bg-2 {
  background-image: url('../images/b2.webp');
}

.hero-bg-3 {
  background-image: url('../images/b3.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.801) 0%, rgba(0, 0, 0, 0.541) 45%, rgba(0, 0, 0, 0.027) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-yellow);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-sub {
  color: rgba(255, 255, 255, .86);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: auto;
  opacity: 1;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 1.3rem;
  margin: 0 18px;
  transition: all .3s var(--ease);
}

.hero-arrow:hover {
  background: var(--c-magenta);
  border-color: var(--c-magenta);
}

.hero-dots {
  margin-bottom: 26px;
}

.hero-dots [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: 1;
  transition: all .3s;
}

.hero-dots .active {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  width: 30px;
  border-radius: 10px;
}

/* =====================================================================
   4. MARQUEE
===================================================================== */
.marquee {
  background: var(--c-ink);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 38px;
  position: relative;
}

.marquee-item i {
  color: var(--c-yellow);
  font-size: 1.15rem;
}

.marquee-item::after {
  content: "✦";
  position: absolute;
  right: -6px;
  color: var(--c-magenta);
}

/* =====================================================================
   5. ABOUT
===================================================================== */
.about {
  background: var(--c-white);
}

.about-visual {
  position: relative;
  padding: 0 20px 40px 0;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.4;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 46%;
  border-radius: var(--radius-sm);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  top: 22px;
  left: -10px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floaty 4s ease-in-out infinite;
}

.exp-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
}

.exp-num span {
  font-size: 1.2rem;
}

.exp-label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .8rem;
  line-height: 1.2;
}

.about-points {
  list-style: none;
  margin: 24px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  color: var(--c-ink);
}

.about-points i {
  color: var(--c-cyan);
  font-size: 1.1rem;
}

.about p {
  color: var(--c-muted);
  margin-bottom: 16px;
}

@keyframes floaty {

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

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

/* =====================================================================
   STATS STRIP
===================================================================== */
.stats {
  background: var(--c-ink);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--c-cyan) 0 25%, var(--c-magenta) 25% 50%, var(--c-yellow) 50% 75%, #fff 75% 100%);
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
}

.stat-num::after {
  content: attr(data-suffix);
  color: var(--c-yellow);
}

.stat-label {
  color: #b9bad6;
  font-size: .95rem;
  font-weight: 500;
}

/* =====================================================================
   6. SERVICES
===================================================================== */
.services {
  background: var(--c-light);
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: 22px 24px 26px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.service-body p {
  color: var(--c-muted);
  font-size: .96rem;
  margin: 0;
}

/* =====================================================================
   CMYK COLOR-WAVE  (sequential blink that travels across a group)
   Used on: services card strips, studio dots, why bars, how beads.
   Each cell lights up in turn — left→right — then loops.
===================================================================== */
@keyframes cmykWave {

  0%,
  55%,
  100% {
    opacity: .25;
    transform: scaleX(.55);
  }

  18% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes cmykDot {

  0%,
  55%,
  100% {
    opacity: .3;
    transform: scale(.8);
  }

  18% {
    opacity: 1;
    transform: scale(1.25);
    box-shadow: 0 0 0 6px rgba(230, 0, 126, .15);
  }
}

/* base accent colours follow the CMYK order as the wave moves along */
.wave .card-wave,
.wave .studio-dot,
.wave .why-bar,
.wave .how-bead::after {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* SERVICES strip — 3 columns: wave sweeps each row left→right */
.card-wave {
  display: block;
  height: 5px;
  width: 100%;
  border-radius: 5px 5px 0 0;
  transform-origin: left;
  animation: cmykWave 2.6s infinite;
}

.wave .col-lg-4:nth-child(3n+1) .card-wave {
  background: var(--c-cyan);
  animation-delay: 0s;
}

.wave .col-lg-4:nth-child(3n+2) .card-wave {
  background: var(--c-magenta);
  animation-delay: .22s;
}

.wave .col-lg-4:nth-child(3n+3) .card-wave {
  background: var(--c-yellow);
  animation-delay: .44s;
}

@media (prefers-reduced-motion: reduce) {

  .card-wave,
  .studio-dot,
  .why-bar,
  .how-bead::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================================
   7. WHY CHOOSE US  (split layout — text left, feature rows right)
===================================================================== */
.why {
  background: var(--c-white);
}

.why-lead {
  color: var(--c-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.why-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-langs span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--c-ink);
  background: var(--c-soft);
  border-radius: 30px;
  padding: 7px 16px;
  border: 1px solid var(--c-border);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 24px 22px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.why-row:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

/* vertical CMYK bar that blinks down the list */
.why-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  transform-origin: top;
  animation: cmykWave 2.6s infinite;
}

.why-list .why-row:nth-child(1) .why-bar {
  background: var(--c-cyan);
  animation-delay: 0s;
}

.why-list .why-row:nth-child(2) .why-bar {
  background: var(--c-magenta);
  animation-delay: .2s;
}

.why-list .why-row:nth-child(3) .why-bar {
  background: var(--c-yellow);
  animation-delay: .4s;
}

.why-list .why-row:nth-child(4) .why-bar {
  background: var(--c-ink);
  animation-delay: .6s;
}

.why-ic {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--c-soft);
  color: var(--c-magenta);
  font-size: 1.4rem;
  transition: all .35s var(--ease);
}

.why-row:hover .why-ic {
  background: var(--c-magenta);
  color: #fff;
  transform: rotate(-6deg);
}

.why-title {
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-row p {
  color: var(--c-muted);
  font-size: .94rem;
  margin: 0;
}

/* =====================================================================
   8. HOW IT WORKS  (connected horizontal timeline with wave beads)
===================================================================== */
.how {
  background: #e2e7f9;
}

.how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.how-line {
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-magenta), var(--c-yellow), var(--c-ink));
  border-radius: 3px;
  z-index: 0;
  opacity: .35;
}

.how-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}

.how-bead {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--c-ink);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all .35s var(--ease);
}

/* blinking CMYK ring on each bead, sequenced left→right */
.how-bead::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 3px solid var(--c-magenta);
  animation: cmykDot 2.6s infinite;
}

.how-timeline .how-node:nth-child(2) .how-bead::after {
  border-color: var(--c-cyan);
  animation-delay: 0s;
}

.how-timeline .how-node:nth-child(3) .how-bead::after {
  border-color: var(--c-magenta);
  animation-delay: .25s;
}

.how-timeline .how-node:nth-child(4) .how-bead::after {
  border-color: var(--c-yellow);
  animation-delay: .5s;
}

.how-timeline .how-node:nth-child(5) .how-bead::after {
  border-color: var(--c-ink);
  animation-delay: .75s;
}

.how-node:hover .how-bead {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-4px);
}

.how-step {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 6px;
}

.how-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-node p {
  color: var(--c-muted);
  font-size: .92rem;
  margin: 0;
}

/* =====================================================================
   6b. DIGITAL STUDIO  (dark band, icon tiles — distinct from cards)
===================================================================== */
.studio {
  background: var(--c-ink);
  position: relative;
  overflow: hidden;
}

.studio::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--c-cyan) 0 25%, var(--c-magenta) 25% 50%, var(--c-yellow) 50% 75%, #fff 75% 100%);
}

.eyebrow-light {
  color: var(--c-yellow);
}

.eyebrow-light::before {
  background: var(--c-yellow);
}

.studio-title {
  color: #fff;
}

.studio-lead {
  color: #b9bad6;
  font-size: 1.04rem;
  margin-bottom: 26px;
}

.studio-lead strong {
  color: var(--c-yellow);
}

.btn-yellow {
  background: var(--c-yellow);
  color: var(--c-ink);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(255, 210, 0, .28);
}

.btn-yellow:hover {
  color: var(--c-ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 210, 0, .4);
}

.studio-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 16px 18px 16px 22px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  transition: all .35s var(--ease);
  overflow: hidden;
}

.studio-item small {
  color: #9a9bc0;
  font-weight: 400;
}

.studio-item i {
  color: var(--c-cyan);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.studio-item:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .25);
}

/* blinking dot at the left edge — CMYK sequence across the 2-col grid */
.studio-dot {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  animation: cmykWave 2.6s infinite;
  transform-origin: top;
}

.wave .col-sm-6:nth-child(2n+1) .studio-dot {
  background: var(--c-cyan);
  animation-delay: 0s;
}

.wave .col-sm-6:nth-child(2n+2) .studio-dot {
  background: var(--c-magenta);
  animation-delay: .2s;
}

/* =====================================================================
   9. SHOWCASE (auto-scrolling image marquee, 5 visible)
===================================================================== */
.showcase {
  background: var(--c-white);
  padding-bottom: 92px;
}

.showcase-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.showcase-track {
  display: flex;
  will-change: transform;
}

.showcase-item {
  flex: 0 0 20%;
  /* 5 images visible in a row */
  padding: 0 8px;
  margin: 0;
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.showcase-item img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

/* =====================================================================
   10. GALLERY GRID  (desktop 4/row via col-lg-3, mobile 2/row via col-6)
===================================================================== */
.gallery {
  background: var(--c-light);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(30, 27, 75, .88));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all .4s var(--ease);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

/* =====================================================================
   11. FAQ
===================================================================== */
.faq {
  background: var(--c-white);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--c-ink);
  font-size: 1.05rem;
  padding: 20px 22px;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--c-magenta);
  background: var(--c-light);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  transform: none;
  width: auto;
  height: auto;
  transition: transform .3s var(--ease);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  color: var(--c-muted);
  padding: 4px 22px 22px;
}

/* =====================================================================
   12. TESTIMONIALS
===================================================================== */
.testimonials {
  background: var(--c-soft);
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 46px 44px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  margin: 10px auto 0;
  text-align: center;
}

.testi-quote {
  font-size: 3rem;
  color: var(--c-cyan);
  opacity: .25;
  position: absolute;
  top: 18px;
  left: 30px;
}

.testi-card p {
  font-size: 1.16rem;
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 26px;
}

.testi-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.testi-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-yellow);
}

.testi-author span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testi-author strong {
  font-family: var(--font-head);
  color: var(--c-ink);
}

.testi-author small {
  color: var(--c-muted);
}

.testi-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  font-size: 1.2rem;
  transition: all .3s var(--ease);
}

.testi-arrow:hover {
  background: var(--c-magenta);
  color: #fff;
}

.testimonials .carousel-control-prev {
  left: -10px;
  width: auto;
  opacity: 1;
}

.testimonials .carousel-control-next {
  right: -10px;
  width: auto;
  opacity: 1;
}

.testi-dots {
  position: static;
  margin-top: 26px;
}

.testi-dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b9bad6;
  border: 0;
  opacity: 1;
}

.testi-dots .active {
  background: var(--c-magenta);
  width: 28px;
  border-radius: 8px;
}

/* =====================================================================
   14. CONTACT
===================================================================== */
.contact {
  background: var(--c-white);
}

.contact-info {
  background: var(--c-ink);
  border-radius: var(--radius);
  padding: 38px 32px;
  height: 100%;
}

.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-ic {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  font-size: 1.2rem;
}

.contact-row h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-row p,
.contact-row a {
  color: #b9bad6;
  font-size: .95rem;
  margin: 0;
}

.contact-row a:hover {
  color: var(--c-yellow);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--c-ink);
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .96rem;
  transition: all .3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--c-magenta);
  box-shadow: 0 0 0 4px rgba(230, 0, 126, .1);
}

.form-status {
  margin: 14px 0 0;
  font-weight: 600;
  font-size: .95rem;
}

.form-status.ok {
  color: #18a04b;
}

.form-status.err {
  color: #d33;
}

/* =====================================================================
   15. FOOTER
===================================================================== */
.site-footer {
  background: #16143a;
  color: #b9bad6;
  padding: 64px 0 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .brand-text {
  color: #b9bad6;
}

.footer-brand .brand-text strong {
  color: #fff;
}

.footer-about {
  font-size: .93rem;
  line-height: 1.7;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  margin-top: 16px;
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  background: var(--c-magenta);
  transform: translateY(-3px);
}

.footer-head {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: .93rem;
}

.footer-links a:hover {
  color: var(--c-yellow);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--c-cyan);
  margin-top: 3px;
}

.footer-contact a:hover {
  color: var(--c-yellow);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: .85rem;
}

/* =====================================================================
   13. FLOATING BUTTONS + BACK TO TOP
===================================================================== */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease);
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-wa {
  left: 22px;
  background: #25D366;
}

.float-call {
  right: 22px;
  background: var(--c-magenta);
}

/* pulse rings */
.float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

.float-wa::before {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
}

.float-call::before {
  box-shadow: 0 0 0 0 rgba(230, 0, 126, .6);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 16px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1040;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--c-ink);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s var(--ease);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--c-magenta);
}

/* =====================================================================
   SCROLL-REVEAL (IntersectionObserver toggles .is-visible)
===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link {
    padding: 10px 6px !important;
  }

  .nav-link.cta-nav {
    margin: 10px 0 0;
    text-align: center;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .showcase-item {
    flex: 0 0 33.333%;
  }

  /* 3 visible on tablet */
  .hero-slide {
    height: auto;
    min-height: auto;
    padding: 110px 0 90px;
  }

  .testimonials .carousel-control-prev,
  .testimonials .carousel-control-next {
    display: none;
  }

  /* How-it-works timeline → 2x2 grid, hide connecting line */
  .how-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .how-line {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 64px 0;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-visual {
    padding: 0 0 30px;
  }

  .about-exp-badge {
    left: 0;
    padding: 12px 16px;
  }

  .exp-num {
    font-size: 2rem;
  }

  .showcase-item {
    flex: 0 0 50%;
  }

  /* 2 visible on mobile */
  .testi-card {
    padding: 40px 22px 30px;
  }

  .testi-card p {
    font-size: 1.04rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .topbar {
    font-size: .78rem;
  }

  .how-timeline {
    grid-template-columns: 1fr;
  }

  /* single column on phones */
  .why-row {
    padding: 18px 18px 18px 24px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .about-exp-badge,
  .float-btn::before {
    animation: none;
  }
}
/* =====================================================================
   6a. POPULAR PRINT CATEGORIES  (auto-scrolling category cards)
===================================================================== */
.categories {
  background: var(--c-white);
  padding-bottom: 74px;
}
.cat-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  padding: 10px 0;
}
.cat-track {
  display: flex;
  will-change: transform;
}
.cat-card {
  flex: 0 0 220px;
  margin: 0 10px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.cat-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-soft);
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.cat-card:hover .cat-img img { transform: scale(1.07); }
.cat-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--c-ink);
  text-align: center;
  padding: 16px 12px;
  font-size: 1.02rem;
}

/* =====================================================================
   6b. DIGITAL STUDIO — SHOWREEL VIDEO
===================================================================== */
.studio-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  background: #0c0c12;
  margin-top: 6px;
}
.studio-video-el {
  display: block;
  width: 100%;
  height: 380px;
  max-height: 470px;
  background: #ffc107;
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}
@media (max-width: 575.98px) {
  .cat-card { flex: 0 0 168px; }
  .cat-name { font-size: .94rem; padding: 13px 10px; }
  .studio-video-el { max-height: 380px; }
}
