/* ==========================================================================
   PRESENCIAL STYLESHEET
   ========================================================================== */

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

:root {
  --bg: #080c14;
  --bg2: #0b1120;
  --bg3: #0e1628;
  --card: #111827;
  --card2: #141e2e;
  --teal: #00c8d4;
  --teal2: #00e5f0;
  --teal-dim: #007a82;
  --teal-glow: rgba(0, 200, 212, 0.15);
  --white: #ffffff;
  --off: #e8edf5;
  --gray: #7a8899;
  --gray2: #b0bcc9;
  --border: rgba(255, 255, 255, 0.06);
  --border2: rgba(0, 200, 212, 0.18);

  /* New theme helper variables */
  --chip-bg: rgba(11, 17, 32, 0.75);
  --chip-color: #ffffff;
  --chip-border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(8, 12, 20, 0.85);
  --nav-bg-scrolled: rgba(8, 12, 20, 0.98);

  /* Mapped for compatibility with work.html tech stack variables */
  --bg-card: var(--card);
  --text: var(--white);
  --text2: var(--off);
  --text3: var(--gray);
  --text4: var(--gray2);
  --cyan: var(--teal2);
  --font-accent: 'Playfair Display', serif;
  --font-b: 'Inter', sans-serif;
  --font-h: 'Inter', sans-serif;
  --font-m: monospace;
  --shadow: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
  --bg: #ddeaf6;
  --bg2: #e8f1fb;
  --bg3: #c8daf0;
  --card: #eef5fc;
  --card2: #e4eef8;
  --teal: #007a8c;
  --teal2: #009ab5;
  --teal-dim: #005566;
  --teal-glow: rgba(0, 122, 140, 0.08);
  --white: #0c1a2e;
  --off: #1a2f4a;
  --gray: #3d5a73;
  --gray2: #2a4560;
  --border: rgba(12, 26, 46, 0.12);
  --border2: rgba(0, 122, 140, 0.25);
  --shadow: rgba(12, 26, 46, 0.08);

  --chip-bg: rgba(12, 26, 46, 0.05);
  --chip-color: #0c1a2e;
  --chip-border: rgba(12, 26, 46, 0.10);
  --nav-bg: rgba(221, 234, 246, 0.88);
  --nav-bg-scrolled: rgba(221, 234, 246, 0.98);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--teal-dim);
  border-radius: 10px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ── PAGES & ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.3s cubic-bezier(.16, 1, .3, 1), transform 1.3s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.3s cubic-bezier(.16, 1, .3, 1), transform 1.3s cubic-bezier(.16, 1, .3, 1);
}

.reveal-l.in {
  opacity: 1;
  transform: none;
}

.reveal-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.3s cubic-bezier(.16, 1, .3, 1), transform 1.3s cubic-bezier(.16, 1, .3, 1);
}

.reveal-r.in {
  opacity: 1;
  transform: none;
}

.reveal-s {
  opacity: 0;
  transform: scale(.94);
  transition: opacity 1.3s cubic-bezier(.16, 1, .3, 1), transform 1.3s cubic-bezier(.16, 1, .3, 1);
}

.reveal-s.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .2s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .36s; }
.d6 { transition-delay: .44s; }
.d7 { transition-delay: .52s; }
.d8 { transition-delay: .6s; }
.d9 { transition-delay: .68s; }
.d10 { transition-delay: .76s; }
.d11 { transition-delay: .84s; }
.d12 { transition-delay: .92s; }

/* For compatibility delay classes from work.html */
.d1s { transition-delay: 0.1s; }
.d2s { transition-delay: 0.2s; }
.d3s { transition-delay: 0.3s; }
.d4s { transition-delay: 0.4s; }
.d5s { transition-delay: 0.5s; }

/* ── WAVE BG ── */
.wave-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.wave-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

nav.scrolled {
  background: var(--nav-bg-scrolled);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  color: var(--white);
}

.nav-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav-logo svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray2);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--teal);
  border-radius: 2px;
  transition: width .3s;
}

.nav-links a:hover, .nav-links a.act {
  color: var(--white);
}

.nav-links a.act::after, .nav-links a:hover::after {
  width: 100%;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: color .2s, background .2s;
}

.icon-btn:hover {
  color: var(--teal);
  background: rgba(0, 200, 212, .08);
}

/* ── HAMBURGER & MOBILE NAV ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}

.hamburger span {
  width: 22px;
  height: 1.8px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  height: calc(100vh - 68px);
  background: #06080f;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
  z-index: 199;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a:not(.btn-primary) {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray2);
  transition: color 0.2s;
  padding-bottom: 4px;
}

.mobile-menu a:not(.btn-primary):hover, .mobile-menu a:not(.btn-primary).act {
  color: var(--white);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(90deg, #81FFED 0%, #008793 100%);
  color: #06080f;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
  border: none;
}

.btn-primary svg {
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 200, 212, .35);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: rgba(255, 255, 255, .02);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 50px;
  transition: border-color .2s, color .2s, transform .2s, background .2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  background: rgba(0, 200, 212, .04);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: tick 28s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.tick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.tick-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

@keyframes tick {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

/* ── SECTION COMMONS ── */
.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 14px;
  border: 1px solid rgba(0, 200, 212, .22);
  border-radius: 4px;
  background: rgba(0, 200, 212, .05);
  margin-bottom: 22px;
}

.sec-title {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.sec-title .it {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  background: linear-gradient(90deg, #81FFED 0%, #008793 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
}

.teal-line {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
  margin: 20px 0 24px;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 80px;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}
.orb-1 {
  top: -80px;
  left: -80px;
  background: #81FFED;
}
.orb-2 {
  top: 160px;
  right: 0;
  background: #008793;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: #b0b4c0;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1 }
  50% { opacity: .3 }
}

.hero-title {
  font-size: clamp(82px, 6vw, 104px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}

.teal {
  background: linear-gradient(90deg, #81FFED 0%, #008793 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── PROBLEM SECTION ── */
#problem {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#problem .wrap {
  padding-top: 96px;
  padding-bottom: 96px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 0;
}

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .25s, background .25s;
}

.problem-item:hover {
  border-color: var(--border2);
  background: rgba(0, 200, 212, .03);
}

.prob-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 200, 212, .08);
  border: 1px solid rgba(0, 200, 212, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.prob-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.prob-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.prob-text span {
  font-size: 13px;
  color: var(--gray);
}

.problem-carousel-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg3);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0) 100%);
  padding: 24px 24px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.carousel-nav {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.act {
  background: var(--teal);
  transform: scale(1.2);
}

/* ── SERVICES (home preview) ── */
#services-prev {
  padding: 100px 80px;
}

.svc-intro {
  text-align: center;
  margin-bottom: 64px;
}

.svc-intro .sec-desc {
  margin: 0 auto;
}

.svc-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px 32px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.svc-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 200, 212, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 200, 212, 0.08);
}

.svc-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #81FFED 0%, #008793 100%);
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: #02060f;
  box-shadow: 
    inset 1.5px 1.5px 3px rgba(255, 255, 255, 0.5), 
    inset -2px -2px 4px rgba(0, 0, 0, 0.25), 
    0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease;
}

.svc-card:hover .svc-icon-wrap {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    inset 1.5px 1.5px 3px rgba(255, 255, 255, 0.6), 
    inset -2px -2px 4px rgba(0, 0, 0, 0.25), 
    0 8px 16px rgba(0, 200, 212, 0.25);
}

.svc-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.68;
  margin-bottom: 22px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: gap .2s;
}

.svc-link:hover {
  gap: 10px;
}

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

/* ── PROCESS ── */
#process {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#process .wrap {
  padding-top: 96px;
  padding-bottom: 96px;
}

.process-intro {
  text-align: center;
  margin-bottom: 72px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-dim), transparent);
  z-index: 0;
}

.proc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.proc-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 20px;
  transition: background .3s, box-shadow .3s;
}

.proc-step:hover .proc-num {
  background: rgba(0, 200, 212, .12);
  box-shadow: 0 0 24px rgba(0, 200, 212, .2);
}

.proc-step h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.proc-step p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── INDUSTRIES ── */
#industries .wrap {
  padding-top: 96px;
  padding-bottom: 96px;
}

.ind-intro {
  text-align: center;
  margin-bottom: 56px;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ind-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: default;
}

.ind-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 212, .22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.ind-icon {
  color: var(--teal);
}

.ind-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--off);
}

/* ── CTA BANNER ── */
.cta-section {
  padding: 60px 80px 100px;
}

.cta-banner {
  background: #060912;
  border: 1px solid rgba(0, 200, 212, 0.15);
  border-radius: 24px;
  padding: 95px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .cta-banner {
  background: var(--card);
  border: 1px solid rgba(0, 122, 140, 0.15);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(12, 26, 46, 0.38);
}

/* Light mode — clear form inputs, no blue tint on images */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(12, 26, 46, 0.14);
  color: var(--white);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
  background: rgba(255, 255, 255, 0.80);
  border-color: var(--teal);
}

[data-theme="light"] .work-img-inner {
  filter: none !important;
}

[data-theme="light"] .work-img {
  background: #c8daf0;
}

[data-theme="light"] .cta-banner {
  background: var(--card);
  border: 1px solid rgba(0, 122, 140, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 200, 212, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 75% 75%, rgba(0, 229, 240, 0.08) 0%, transparent 45%);
  animation: rotate-aurora 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .cta-banner::before {
  background: radial-gradient(circle at 30% 30%, rgba(0, 143, 160, 0.06) 0%, transparent 45%),
              radial-gradient(circle at 75% 75%, rgba(0, 180, 216, 0.04) 0%, transparent 45%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1.2px, transparent 1.2px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  background-position: center;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

[data-theme="light"] .cta-banner::after {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1.2px, transparent 1.2px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1.2px, transparent 1.2px);
}

@keyframes rotate-aurora {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner .sec-title {
  font-size: clamp(30px, 4vw, 48px);
  background: linear-gradient(135deg, #ffffff 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
  line-height: 1.15;
  font-weight: 800;
}

[data-theme="light"] .cta-banner .sec-title {
  background: linear-gradient(135deg, #0a1120 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  font-size: 15px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 80px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.72;
  margin: 16px 0 24px;
  max-width: 270px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: color .2s, background .2s, border-color .2s;
}

.soc-btn:hover {
  color: var(--teal);
  background: rgba(0, 200, 212, .08);
  border-color: rgba(0, 200, 212, .25);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gray2);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
  transition: color .2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--gray);
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* ── SERVICES PAGE ── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 108px 80px 72px;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  margin-top: 20px;
}

.breadcrumb a {
  color: var(--gray);
  transition: color .2s;
}

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

.breadcrumb .bc-sep {
  color: var(--gray);
}

.breadcrumb .bc-cur {
  color: var(--teal);
}

/* ── WORK PAGE ── */
.filter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.work-card.filtered-out {
  display: none !important;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  color: var(--gray2);
  transition: all .2s;
  cursor: pointer;
}

.filter-btn:hover, .filter-btn.act {
  background: var(--teal);
  color: #06080f;
  border-color: var(--teal);
}

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

.work-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.work-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 200, 212, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 200, 212, 0.08);
}

.work-img {
  height: 250px;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
}

.work-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.work-card:hover .work-img-inner {
  transform: scale(1.05);
}

.work-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-img-placeholder svg {
  opacity: .15;
}

.work-body {
  padding: 24px 26px;
}

.work-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.work-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.work-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── ABOUT PAGE ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.val-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  transition: transform .3s, border-color .3s;
}

.val-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 200, 212, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 200, 212, 0.08);
}

.val-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 200, 212, .08);
  border: 1px solid rgba(0, 200, 212, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 22px;
}

.val-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.val-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.68;
}

/* ── GENERAL LAYOUTS ── */
.inner-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s;
}

.ci-item:hover {
  border-color: var(--border2);
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 200, 212, .08);
  border: 1px solid rgba(0, 200, 212, .14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.ci-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.ci-text span {
  font-size: 13px;
  color: var(--gray);
}

.contact-form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}

.contact-form-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

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

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(0, 200, 212, .45);
  background: rgba(0, 200, 212, .025);
}

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

.form-group select option {
  background: var(--bg2);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, .18);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: #06080f;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.submit-btn:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 200, 212, .3);
}

/* ── SERVICES BAR (homepage bottom) ── */
.svc-bar-section {
  padding: 80px 80px 0;
}

.svc-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 60px;
}

.svc-bar-item {
  padding: 36px 26px;
  border-right: 1px solid var(--border);
  transition: background .25s;
}

.svc-bar-item:last-child {
  border-right: none;
}

.svc-bar-item:hover {
  background: rgba(0, 200, 212, .03);
}

.svc-bar-item .svc-icon-wrap {
  margin-bottom: 18px;
}

.svc-bar-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-bar-item p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== TECH STACK SECTION — Premium Logo Grid ===== */
.tech-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-section-inner {
  position: relative;
  z-index: 2;
}

/* Background glow orbs */
.ts-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.ts-orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,200,212,0.09) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  animation: orbFloat 14s ease-in-out infinite;
}

.ts-orb2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,229,240,0.07) 0%, transparent 70%);
  bottom: -120px;
  right: -80px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px, 20px); }
}

/* Section header centered */
.ts-header {
  text-align: center;
  margin-bottom: 0;
}

/* Logo grid — 6 columns */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* Individual logo card */
.ts-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  cursor: default;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  overflow: hidden;
}

/* Shimmer top line on hover */
.ts-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  border-radius: 0 0 4px 4px;
  transition: opacity 0.3s ease;
}

.ts-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(0, 200, 212, 0.40);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28), 0 0 30px rgba(0,200,212,0.10);
  background: var(--card2);
}

.ts-card:hover::before { opacity: 1; }

/* Per-tech colour glow on hover */
.ts-card[data-tech="React"]:hover        { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(97,218,251,0.18);  border-color: rgba(97,218,251,0.38); }
.ts-card[data-tech="JavaScript"]:hover   { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(247,223,30,0.15);  border-color: rgba(247,223,30,0.32); }
.ts-card[data-tech="Figma"]:hover        { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(242,78,30,0.14);   border-color: rgba(242,78,30,0.30); }
.ts-card[data-tech="Shopify"]:hover      { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(149,191,71,0.14);  border-color: rgba(149,191,71,0.30); }
.ts-card[data-tech="Adobe Suite"]:hover  { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(255,0,0,0.14);     border-color: rgba(255,0,0,0.24); }
.ts-card[data-tech="HTML5"]:hover        { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(227,79,38,0.14);   border-color: rgba(227,79,38,0.30); }
.ts-card[data-tech="Tailwind CSS"]:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(56,189,248,0.18);  border-color: rgba(56,189,248,0.34); }
.ts-card[data-tech="Node.js"]:hover      { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(51,153,51,0.16);   border-color: rgba(51,153,51,0.30); }
.ts-card[data-tech="WordPress"]:hover    { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(33,117,155,0.16);  border-color: rgba(33,117,155,0.30); }
.ts-card[data-tech="Next.js"]:hover      { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.ts-card[data-tech="Canva Pro"]:hover    { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(125,42,232,0.16);  border-color: rgba(125,42,232,0.30); }
.ts-card[data-tech="Webflow"]:hover      { box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 28px rgba(20,110,245,0.16);  border-color: rgba(20,110,245,0.30); }

/* Logo icon container */
.ts-logo-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.ts-card:hover .ts-logo-wrap {
  transform: scale(1.14) rotate(-4deg);
}

.ts-logo-wrap svg {
  width: 100%;
  height: 100%;
}

/* Text labels */
.ts-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.ts-role {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1100px) { .ts-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .ts-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } .ts-card { padding: 22px 12px 18px; } }
@media (max-width: 480px)  { .ts-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── FLOAT ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(12px); }
}

/* ── RESPONSIVE MEDIA QUERIES (GLOBAL) ── */
@media (max-width: 960px) {
  nav {
    padding: 0 20px;
  }
  .nav-links, .nav-r .btn-primary {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #hero, .page-hero {
    padding: 88px 24px 60px;
  }
  #services-prev {
    padding: 72px 24px;
  }
  .wrap {
    padding: 0 24px;
  }
  .problem-grid, .contact-layout, .inner-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-grid-home, .svc-grid-full, .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-track::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .svc-bar {
    grid-template-columns: 1fr 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-section {
    padding: 60px 24px 80px;
  }
  .svc-bar-section {
    padding: 60px 24px 0;
  }
  .cta-banner {
    padding: 52px 28px;
  }
  .contact-form-box {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .svc-grid-home, .svc-grid-full, .values-grid, .work-grid, .ind-grid {
    grid-template-columns: 1fr;
  }
  .svc-bar {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(32px, 9vw, 44px);
  }
  .sec-title {
    font-size: 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .process-track {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-inner {
    padding: 48px 24px 24px;
  }
  .cta-section {
    padding: 40px 16px 60px;
  }
  .svc-bar-section {
    padding: 40px 16px 0;
  }
}

@media (max-width: 400px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns a, .hero-btns button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ======= INTERACTIVE CURSOR GLOW ======= */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 200, 212, 0.08) 0%, rgba(0, 200, 212, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  will-change: transform;
}

[data-theme="light"] .cursor-glow {
  background: radial-gradient(circle, rgba(0, 143, 160, 0.04) 0%, rgba(0, 143, 160, 0) 70%);
}

/* ======= STICKY SCROLL PROGRESS BAR ======= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal2) 100%);
  width: 0%;
  z-index: 99999;
  box-shadow: 0 0 8px var(--teal);
  transition: width 0.1s ease-out;
}

/* ── LIGHTBOX MODAL ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}

[data-theme="light"] .lightbox-overlay {
  background: rgba(232, 238, 245, 0.88);
}

.lightbox-content {
  position: relative;
  z-index: 100000;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .lightbox-image {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  z-index: 100001;
}

.lightbox-close:hover {
  background: var(--teal);
  color: #06080f;
  transform: scale(1.08);
}

/* Make images indicate clickability */
.work-img img, .carousel-slide img {
  cursor: zoom-in;
}

.footer-contact-item a { display: inline; margin-bottom: 0; font-size: inherit; color: inherit; }
.ci-text a { display: inline; margin-bottom: 0; font-size: inherit; color: inherit; }

.view-site-link { display: inline-flex; align-items: center; font-size: 13px; font-weight: 500; color: var(--teal); text-decoration: none; margin-top: 12px; transition: opacity 0.2s; }
.view-site-link:hover { opacity: 0.8; }
.view-site-link svg { margin-left: 4px; }

.view-site-link::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }

.img-top { 
  object-position: top !important; 
  transform: scale(1.05) !important;
}
.work-card:hover .img-top {
  transform: scale(1.1) !important;
}

.fix-padding { 
  object-position: top left !important; 
  transform: scale(1.12) translateX(-3%) !important; 
}
.work-card:hover .fix-padding {
  transform: scale(1.18) translateX(-3%) !important;
}
