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

  html, body {
    width: 100%; height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .scene {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: visible;
  }

  /* ── Base gradient ── */
  .gradient-base {
    position: absolute; inset: 0;
    background:
      /* top-right bright cyan-white highlight */
      radial-gradient(ellipse 70% 65% at 85% 0%, #c8edf5 0%, transparent 55%),
      /* centre-right light blue zone */
      radial-gradient(ellipse 55% 50% at 100% 30%, #8fd4f0 0%, transparent 50%),
      /* upper-left muted steel blue */
      radial-gradient(ellipse 60% 55% at 0% 10%, #4a7fa8 0%, transparent 55%),
      /* mid-left medium blue */
      radial-gradient(ellipse 70% 60% at 10% 60%, #2d6891 0%, transparent 60%),
      /* centre core vivid blue */
      radial-gradient(ellipse 80% 70% at 40% 40%, #2e8cc4 0%, transparent 65%),
      /* bottom-right deep navy */
      radial-gradient(ellipse 65% 60% at 95% 95%, #0d2136 0%, transparent 60%),
      /* bottom-left dark blue */
      radial-gradient(ellipse 60% 55% at 5% 95%, #1a3d58 0%, transparent 60%),
      /* base fill */
      #1a6898;
  }

  /* ── Diagonal light beam ── */
  .beam {
    position: absolute; inset: 0;
    /* sharp diagonal streak from top-right going to bottom-left */
    background: linear-gradient(
      135deg,
      transparent 0%,
      transparent 28%,
      rgba(255,255,255,0.0) 32%,
      rgba(220,240,255,0.55) 38%,
      rgba(255,255,255,0.72) 42%,
      rgba(230,245,255,0.6) 45%,
      rgba(180,220,245,0.25) 50%,
      transparent 56%,
      transparent 100%
    );
    filter: blur(18px);
  }

  /* secondary softer beam offset slightly */
  .beam-2 {
    position: absolute; inset: 0;
    background: linear-gradient(
      133deg,
      transparent 0%,
      transparent 35%,
      rgba(200,235,255,0.15) 40%,
      rgba(255,255,255,0.3) 44%,
      rgba(200,235,255,0.12) 48%,
      transparent 54%,
      transparent 100%
    );
    filter: blur(30px);
  }

  /* ── Grain canvas ── */
  #grain {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0.38;
    mix-blend-mode: overlay;
    pointer-events: none;
  }

  /* ── Content ── */
  .content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0;
    text-align: center;
    padding: 6rem 2rem 2rem;
    pointer-events: none;
    z-index: 10;
  }

  .label-items {
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .22em;
    color: rgba(255,255,255,.9);
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0,0,0,.3);
    margin-bottom: 16px;
  }

  @keyframes titleFadeInScale {
    0% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(5rem, 14vw, 12rem);
    line-height: .88;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
      0 2px 0 rgba(0,0,0,.15),
      0 4px 30px rgba(0,0,0,.2);
    margin-bottom: 20px;
  }

  .title-line {
    display: block;
    overflow: hidden;
  }

  .title-mask {
    display: block;
    transform: translateY(110%);
    animation: maskReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .title-line:nth-child(3) .title-mask {
    animation-delay: 0.12s;
  }

  @keyframes maskReveal {
    0%   { transform: translateY(110%); }
    100% { transform: translateY(0%); }
  }

  .subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(.75rem, 1.4vw, 1rem);
    font-weight: 400;
    letter-spacing: .18em;
    color: rgba(255,255,255,.88);
    text-transform: uppercase;
    text-shadow: 0 1px 10px rgba(0,0,0,.25);
    margin-top: 0;
    margin-bottom: 36px;
  }

  /* ── Button Group ── */
  .button-group {
    display: flex;
    gap: 16px;
    margin-top: 0;
    pointer-events: auto;
  }

  .btn {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 12px 32px;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    white-space: nowrap;
  }

  .btn-primary {
    background: #ffffff;
    color: #1a6898;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  }

  .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.4);
  }

  .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.2);
  }













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

body {
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* ── Background gradient ── */
.bg-gradient {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 65% at 85%  0%,  #c8edf5 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 30%,  #8fd4f0 0%, transparent 50%),
    radial-gradient(ellipse 60% 55% at 0%   10%,  #4a7fa8 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 10%  60%,  #2d6891 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 40%  40%,  #2e8cc4 0%, transparent 65%),
    radial-gradient(ellipse 65% 60% at 95%  95%,  #0d2136 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 5%   95%,  #1a3d58 0%, transparent 60%),
    #1a6898;
}

/* ── Diagonal light beams ── */
.bg-beam {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 28%,
    rgba(220,240,255,0.00) 32%,
    rgba(220,240,255,0.55) 38%,
    rgba(255,255,255,0.72) 42%,
    rgba(230,245,255,0.60) 45%,
    rgba(180,220,245,0.25) 50%,
    transparent 56%
  );
  filter: blur(18px);
}

.bg-beam-2 {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    133deg,
    transparent 0%,
    transparent 35%,
    rgba(200,235,255,0.15) 40%,
    rgba(200,235,255,0.30) 44%,
    rgba(200,235,255,0.12) 48%,
    transparent 54%
  );
  filter: blur(30px);
}

/* ── Grain canvas ── */
#grain {
  position: fixed; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  opacity: 0.38;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ── Nav container ── */
.card-nav-container {
  position: fixed; top: 1.4em; left: 50%;
  transform: translateX(-50%);
  width: 92%; max-width: 860px; z-index: 99;
}

/* ── Nav shell ── */
.card-nav {
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  box-shadow:
    0 4px 28px rgba(13, 33, 54, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: visible;
  will-change: height;
  transition: border-radius .35s ease, height .35s ease;
}

.card-nav.open {
  border-radius: 1.25rem;
  overflow: visible;
}

/* ── Top bar ── */
.card-nav-top {
  position: relative; top: 0; left: 0; right: 0; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; z-index: 2;
}

/* ── Hamburger ── */
.hamburger-menu {
  height: 40px; width: 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer; gap: 5px;
  color: #fff;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .2s;
}

.hamburger-menu:hover { background: rgba(255, 255, 255, 0.25); }

.hamburger-line {
  width: 17px; height: 1.5px;
  background: currentColor;
  transition: transform .27s ease, opacity .2s ease;
  transform-origin: 50% 50%;
  display: block;
  border-radius: 2px;
}

.hamburger-menu.open .hamburger-line:first-child { transform: translateY(3.25px) rotate(45deg); }
.hamburger-menu.open .hamburger-line:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ── Logo ── */
.logo-container {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 9px;
}

.logo-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2e8cc4, #0d2136);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(200, 237, 245, 0.4);
}

.logo-icon svg { width: 14px; height: 14px; }

.logo-text {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: #ffffff; white-space: nowrap;
  text-shadow: 0 1px 8px rgba(13, 33, 54, 0.3);
}

/* ── Nav links ── */
.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-link-pill {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  font-size: .875rem; font-weight: 400; letter-spacing: .01em;
  padding: 6px 14px; border-radius: 9999px;
  transition: background .2s, color .2s; white-space: nowrap;
}

.nav-link-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ── Cards content area ── */
.card-nav-content {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  flex-direction: row;
}

/* Hide navigation content on mobile screens only */
@media (max-width: 768px) {
  .card-nav-content {
    position: absolute;
    left: 0; right: 0; top: 60px;
    padding: .5rem;
    display: flex;
    align-items: stretch;
    gap: 8px;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    flex-direction: column;
    background: rgba(13, 33, 54, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 0 0 1.25rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-top: none;
  }

  .card-nav.open {
    border-radius: 1.25rem 1.25rem 0 0;
    overflow: visible;
  }

  .card-nav.open .card-nav-content {
    visibility: visible;
    pointer-events: auto;
  }
}

/* Desktop: show nav links in bar */
@media (min-width: 769px) {
  .card-nav {
    height: 60px;
    overflow: visible;
  }

  .card-nav-top {
    height: 60px;
    padding: 0 1.5rem;
  }

  .card-nav-content {
    position: static !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px;
    padding: 0;
    height: auto;
  }

  .nav-card {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 6px 14px;
    height: auto;
    flex: none;
    border-radius: 9999px;
    transition: background 0.2s;
  }

  .nav-card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    cursor: pointer;
  }

  .nav-card-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: color 0.2s;
    text-shadow: none;
  }

  .nav-card-label:hover {
    color: #ffffff;
  }

  .hamburger-menu {
    display: none !important;
  }

  .logo-container {
    position: static;
    transform: none;
  }
}

.card-nav.open .card-nav-content {
  visibility: visible;
  pointer-events: auto;
}

/* ── Nav cards ── */
.nav-card {
  height: 100%; flex: 1 1 0; min-width: 0;
  border-radius: .9rem;
  display: flex; flex-direction: column;
  padding: 14px 18px; gap: 8px;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-card-1 { background: rgba(200, 237, 245, 0.18); }
.nav-card-2 { background: rgba(46,  140, 196, 0.20); }
.nav-card-3 { background: rgba(13,  33,  54,  0.30); }

.nav-card-label {
  font-weight: 500; font-size: 12px; letter-spacing: -.3px;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(13, 33, 54, 0.3);
}

.nav-card-links {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 3px;
}

.nav-card-link {
  font-size: 13.5px; cursor: pointer; text-decoration: none;
  transition: color .22s ease;
  display: inline-flex; align-items: center; gap: 5px;
  color: rgba(255, 255, 255, 0.65);
}

.nav-card-link:hover { color: #ffffff; }

.arrow-icon { font-size: 11px; flex-shrink: 0; }

/* ── Nav Logo ── */
.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: auto;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 12px rgba(200, 237, 245, 0.3);
}

.nav-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(200, 237, 245, 0.6);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .card-nav-container { width: 92%; top: 1em; }
  .logo-container { position: static; transform: none; }
  .card-nav-top { padding: 0 .6rem; }
  .nav-links { display: none; }
  
  .card-nav-content {
    flex-direction: column; align-items: stretch;
    gap: 8px; justify-content: flex-start;
  }
  .nav-card { height: auto; min-height: 60px; flex: 1 1 auto; }
  .nav-card-label { font-size: 12px; }
  .nav-card-link  { font-size: 13px; }
  
  /* Reset desktop styles for mobile */
  .nav-card {
    background: rgba(200, 237, 245, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 18px;
  }
  
  .nav-card-1 { background: rgba(200, 237, 245, 0.18); }
  .nav-card-2 { background: rgba(46,  140, 196, 0.20); }
  .nav-card-3 { background: rgba(13,  33,  54,  0.30); }
  
  .nav-card-label {
    font-size: 12px;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(13, 33, 54, 0.3);
  }
  
  .hamburger-menu {
    display: flex;
  }
}














:root {
  --cyan-white: #c8edf5;
  --sky-blue:   #8fd4f0;
  --steel-blue: #4a7fa8;
  --mid-blue:   #2d6891;
  --vivid-blue: #2e8cc4;
  --deep-navy:  #0d2136;
  --ocean-blue: #1a3d58;
  --base-blue:  #1a6898;
  --white:      #ffffff;
  --white-90:   rgba(255,255,255,0.90);
  --white-60:   rgba(255,255,255,0.60);
  --white-15:   rgba(255,255,255,0.15);
  --white-08:   rgba(255,255,255,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep-navy);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─────────────── FIXED BACKGROUND ─────────────── */
.bg-wrap {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 85%  0%,  #c8edf5 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 30%,  #8fd4f0 0%, transparent 50%),
    radial-gradient(ellipse 60% 55% at 0%   10%,  #4a7fa8 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 10%  60%,  #2d6891 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 40%  40%,  #2e8cc4 0%, transparent 65%),
    radial-gradient(ellipse 65% 60% at 95%  95%,  #0d2136 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 5%   95%,  #1a3d58 0%, transparent 60%),
    #1a6898;
}
.bg-beam {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 0%,transparent 28%,
    rgba(220,240,255,0) 32%,
    rgba(220,240,255,.55) 38%,
    rgba(255,255,255,.72) 42%,
    rgba(230,245,255,.60) 45%,
    rgba(180,220,245,.25) 50%,
    transparent 56%);
  filter: blur(18px);
}
.bg-beam2 {
  position: absolute; inset: 0;
  background: linear-gradient(133deg,
    transparent 0%,transparent 35%,
    rgba(200,235,255,.15) 40%,
    rgba(200,235,255,.30) 44%,
    rgba(200,235,255,.12) 48%,
    transparent 54%);
  filter: blur(30px);
}
#grain {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .38;
  mix-blend-mode: overlay;
}

/* ─────────────── NAVBAR ─────────────── */

/* ─────────────── HERO BAND ─────────────── */
.hero-band {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 60px 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--cyan-white); margin-bottom: 22px;
  opacity: 1; transform: translateY(0);
}
.hero-eyebrow span.line {
  display: block; width: 36px; height: 1px;
  background: var(--cyan-white); opacity: .55;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 26px;
  text-shadow: 0 4px 40px rgba(13,33,54,.5);
  opacity: 1; transform: translateY(0);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan-white) 0%, var(--sky-blue) 50%, var(--vivid-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-90);
  max-width: 540px;
  line-height: 1.7;
  opacity: 1; transform: translateY(0);
  margin-bottom: 44px;
}
.hero-stats {
  display: flex; align-items: center; gap: 48px;
  opacity: 1; transform: translateY(0);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--white); letter-spacing: -.03em;
  line-height: 1;
}
.stat-label {
  font-size: .75rem; font-weight: 400;
  color: var(--white-60); letter-spacing: .08em;
  text-transform: uppercase; margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.18);
}
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white-60);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 1;
}
.scroll-hint svg { width: 20px; height: 20px; stroke: var(--white-60); fill: none; stroke-width: 1.5; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────── SERVICES SECTION ─────────────── */
.services-section {
  position: relative; z-index: 1;
  padding: 0 60px 120px;
}
.services-label {
  text-align: center;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--cyan-white);
  margin-bottom: 56px;
  opacity: 1; transform: translateY(0);
}

/* ── Grid ── */
.grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto 20px;
}
.grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}

/* ── Card ── */
.scard {
  position: relative;
  border-radius: 22px;
  padding: 36px 32px 40px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 40px rgba(13,33,54,.35),
              inset 0 1px 0 rgba(255,255,255,.14);
  overflow: hidden;
  cursor: default;
  /* initial state for scroll anim */
  opacity: 1;
  transform: translateY(0);
  transition: box-shadow .45s cubic-bezier(.16,1,.3,1),
              border-color .3s ease,
              transform .45s cubic-bezier(.16,1,.3,1);
}

/* shimmer top edge */
.scard::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 120%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,237,245,.85), transparent);
  transition: left .55s ease;
  pointer-events: none;
}
.scard:hover::before { left: 120%; }

.scard:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 70px rgba(13,33,54,.5),
              0 0 0 1px rgba(200,237,245,.25),
              inset 0 1px 0 rgba(255,255,255,.25);
  border-color: rgba(200,237,245,.32);
}

/* inner glow blob */
.card-blob {
  position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  filter: blur(60px); opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  top: -60px; right: -60px;
}
.scard:hover .card-blob { opacity: .35; }

/* icon */
.scard-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  position: relative; z-index: 1;
  transition: background .3s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.scard:hover .scard-icon {
  background: rgba(200,237,245,.2);
  transform: scale(1.1) rotate(-3deg);
}
.scard-icon svg {
  width: 28px; height: 28px;
  stroke: var(--cyan-white); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* title */
.scard-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.18rem; font-weight: 700;
  color: var(--white); letter-spacing: -.015em;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

/* desc */
.scard-desc {
  font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.65); line-height: 1.7;
  position: relative; z-index: 1;
}

/* card number */
.scard-num {
  position: absolute; bottom: 22px; right: 26px;
  font-family: 'Syne', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.12);
  pointer-events: none;
}

/* tag pill */
.scard-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.08);
  color: var(--cyan-white);
  border: 1px solid rgba(200,237,245,.2);
  position: relative; z-index: 1;
  transition: background .2s;
}
.scard:hover .scard-tag { background: rgba(200,237,245,.14); }

/* ─────────────── CTA STRIP ─────────────── */
.cta-strip {
  position: relative; z-index: 1;
  margin: 0 60px;
  padding: 60px 80px;
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 40px rgba(13,33,54,.3),
              inset 0 1px 0 rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  overflow: hidden;
  opacity: 1; transform: translateY(0);
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(46,140,196,.15) 0%,
    transparent 60%,
    rgba(200,237,245,.08) 100%);
  pointer-events: none;
}
.cta-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 10px;
}
.cta-text p {
  font-size: .95rem; font-weight: 300;
  color: var(--white-90); font-style: italic; line-height: 1.6;
  max-width: 440px;
}
.cta-buttons { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.btn-primary {
  padding: 14px 34px; border-radius: 100px;
  background: var(--vivid-blue); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 500;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(46,140,196,.45);
  transition: background .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #3fa0d8;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(46,140,196,.55);
}
.btn-outline {
  padding: 13px 28px; border-radius: 100px;
  background: transparent;
  color: var(--white); border: 1px solid rgba(255,255,255,.28);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 400;
  cursor: pointer;
  transition: background .25s, border-color .25s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.45);
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  position: relative; z-index: 1;
  margin-top: 80px;
  padding: 48px 60px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white-60);
  text-decoration: none;
}
.footer-copy {
  font-size: .8rem; color: var(--white-60); font-weight: 300;
}
.footer-links {
  display: flex; align-items: center; gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: .8rem; color: var(--white-60);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

/* ─────────────── PORTFOLIO SECTION ─────────────── */
.portfolio-section {
  position: relative; z-index: 1;
  padding: 120px 60px;
  max-width: 1160px;
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 68px;
}

.portfolio-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--sky-blue);
  opacity: .9;
  margin-bottom: 12px;
}

.portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.portfolio-sub {
  font-size: 14.5px;
  font-style: italic;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  margin-bottom: 22px;
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(143,212,240,.10);
  border: 1px solid rgba(143,212,240,.22);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.90);
}

.portfolio-badge strong {
  color: var(--sky-blue);
  font-weight: 700;
}

.portfolio-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--vivid-blue), transparent);
  border-radius: 2px;
  margin: 26px auto 0;
}

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

.portfolio-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(200,237,245,.11);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  position: relative;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .3s;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(46,140,196,.1), transparent 55%);
  opacity:0;
  transition:opacity .4s;
  pointer-events:none;
  z-index:1;
  border-radius:18px;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(143,212,240,.35);
  border-color: rgba(143,212,240,.32);
}

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

.portfolio-thumb {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.portfolio-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.portfolio-card:hover .portfolio-thumb-inner { transform: scale(1.07); }

.portfolio-thumb::after {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:64px;
  background:linear-gradient(transparent, rgba(13,33,54,.65));
  pointer-events:none;
}

/* Thumb colors */
.portfolio-thumb-1 { background: linear-gradient(135deg, #0d2136, #1a4a6e 55%, #2d6891); }
.portfolio-thumb-2 { background: linear-gradient(135deg, #1a3d58, #1a6898 55%, #8fd4f0 120%); }
.portfolio-thumb-3 { background: linear-gradient(135deg, #0d2136 0%, #2e8cc4 60%, #c8edf5 130%); }
.portfolio-thumb-4 { background: linear-gradient(135deg, #1a3d58, #2d6891); }
.portfolio-thumb-5 { background: linear-gradient(135deg, #0d2136, #1a6898); }
.portfolio-thumb-6 { background: linear-gradient(135deg, #1a3d58, #4a7fa8); }

.portfolio-body {
  padding: 20px 20px 22px;
  position: relative;
  z-index: 2;
}

.portfolio-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 9px;
  letter-spacing: -.01em;
}

.portfolio-body p {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 50px;
  background: rgba(46,140,196,.14);
  border: 1px solid rgba(143,212,240,.22);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--sky-blue);
  transition: background .3s, border-color .3s;
}

.portfolio-card:hover .portfolio-tag {
  background: rgba(46,140,196,.28);
  border-color: rgba(143,212,240,.42);
}

.portfolio-dot {
  width:5px; height:5px;
  border-radius:50%;
  background: var(--vivid-blue);
  flex-shrink:0;
}

/* ─────────────── CONTACT SECTION ─────────────── */
.contact-section {
  position: relative; z-index: 1;
  padding: 120px 60px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  padding: 80px 40px 60px;
}

.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cyan-white); margin-bottom: 20px;
  opacity: 1; transform: translateY(0);
}

.contact-eyebrow .line { display: block; width: 32px; height: 1px; background: var(--cyan-white); opacity: .5; }

.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(13,33,54,.5);
  margin-bottom: 18px;
  opacity: 1; transform: translateY(0);
}

.contact-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan-white), var(--sky-blue), var(--vivid-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.contact-sub {
  font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: var(--white-90); max-width: 500px; margin: 0 auto;
  line-height: 1.7;
  opacity: 1; transform: translateY(0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 28px;
  align-items: start;
}

/* Contact Glass Cards */
.contact-glass-card {
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(13,33,54,.35),
              inset 0 1px 0 rgba(255,255,255,.14);
  overflow: hidden;
  opacity: 1; transform: translateY(0);
}

.info-col { display: flex; flex-direction: column; gap: 20px; }

/* Contact Info Card */
.info-card { padding: 36px 32px; }
.info-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 28px;
}

.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: transform .25s ease;
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-item:hover { transform: translateX(4px); }

.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.info-item:hover .info-icon { background: rgba(200,237,245,.15); }
.info-icon svg { width: 20px; height: 20px; stroke: var(--cyan-white); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.info-text { flex: 1; }
.info-label {
  font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan-white); opacity: .75; margin-bottom: 4px;
}
.info-value {
  font-size: .92rem; color: var(--white-90); line-height: 1.5;
}
.info-value a {
  color: var(--white-90); text-decoration: none;
  transition: color .2s;
}
.info-value a:hover { color: var(--cyan-white); }

/* Social Card */
.social-card { padding: 28px 32px; }
.social-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 18px;
}
.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 100px;
  font-size: .82rem; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: var(--white-90);
  transition: background .25s, border-color .25s, transform .2s;
}
.social-btn:hover {
  background: rgba(255,255,255,.14); border-color: rgba(200,237,245,.35);
  color: var(--white); transform: translateY(-2px);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn.wa  { border-color: rgba(37,211,102,.3); }
.social-btn.wa:hover { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.5); }
.social-btn.ig  { border-color: rgba(225,105,120,.3); }
.social-btn.ig:hover { background: rgba(225,105,120,.12); border-color: rgba(225,105,120,.5); }
.social-btn.fb  { border-color: rgba(66,103,178,.4); }
.social-btn.fb:hover { background: rgba(66,103,178,.15); border-color: rgba(66,103,178,.6); }

/* Map Card */
.map-card { padding: 0; overflow: hidden; }
.map-inner {
  width: 100%; height: 240px;
  position: relative; overflow: hidden;
}
.map-inner iframe {
  width: 100%; height: 100%; border: none; display: block;
  filter: saturate(0.6) contrast(1.1) brightness(0.8) hue-rotate(195deg);
}
.map-label {
  padding: 18px 24px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--white-90);
}
.map-label svg { width: 16px; height: 16px; stroke: var(--cyan-white); fill: none; stroke-width: 2; flex-shrink: 0; }
.map-label a { color: var(--cyan-white); text-decoration: none; font-size: .82rem; }
.map-label a:hover { text-decoration: underline; }

/* Contact Form */
.form-card { padding: 44px 40px; }

.form-head { margin-bottom: 32px; }
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 8px;
}
.form-subtitle {
  font-size: .88rem; font-weight: 300; font-style: italic;
  color: var(--white-90); line-height: 1.6;
}

.wa-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  font-size: .75rem; font-weight: 500; color: #5ddd8a;
  margin-top: 14px;
}
.wa-badge svg { width: 14px; height: 14px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

.contact-label {
  font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan-white); opacity: .8;
}

.contact-input, .contact-select, .contact-textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 300;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  -webkit-appearance: none; appearance: none;
}
.contact-input::placeholder, .contact-textarea::placeholder { color: rgba(255,255,255,.32); }
.contact-select { cursor: pointer; }
.contact-select option { background: var(--ocean-blue); color: var(--white); }

.contact-input:focus, .contact-select:focus, .contact-textarea:focus {
  border-color: rgba(200,237,245,.5);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(200,237,245,.12);
}

.contact-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.char-count { font-size: .72rem; color: rgba(255,255,255,.35); text-align: right; }

.contact-submit-btn {
  width: 100%; margin-top: 8px;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .02em;
  border: none; border-radius: 14px; cursor: pointer;
  box-shadow: 0 6px 28px rgba(37,211,102,.35);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease, filter .25s;
}
.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,.5);
  filter: brightness(1.07);
}
.contact-submit-btn:active { transform: translateY(0); }
.contact-submit-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ─────────────── LATEST WORK SECTION ─────────────── */
.latest-work-section {
  position: relative; z-index: 1;
  padding: 100px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.work-category {
  margin-bottom: 60px;
}

.category-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--cyan-white), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.work-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 237, 245, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.work-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(200, 237, 245, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.work-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 237, 245, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.work-item:hover::before {
  opacity: 1;
}

.work-name {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* Responsive for Latest Work */
@media (max-width: 960px) {
  .latest-work-section {
    padding: 80px 28px;
  }
  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }
  .category-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .latest-work-section {
    padding: 60px 18px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .category-title {
    font-size: 1.4rem;
  }
  .work-item {
    padding: 16px 20px;
  }
  .work-name {
    font-size: 1rem;
  }
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1280px) {
  .grid-top    { grid-template-columns: repeat(2, 1fr); }
  .grid-bottom { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .navbar    { padding: 16px 28px; }
  .nav-links { display: none; }
  .hero-band { padding: 100px 28px 70px; }
  .hero-stats { gap: 28px; }
  .services-section { padding: 0 28px 80px; }
  .portfolio-section { padding: 80px 28px; }
  .contact-section { padding: 80px 28px; }
  .contact-hero { padding: 60px 28px 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 36px 28px; }
  .info-card { padding: 26px 22px; }
  .social-card { padding: 22px 22px; }
  .cta-strip { margin: 0 28px; padding: 40px 36px; flex-direction: column; align-items: flex-start; }
  .footer { padding: 36px 28px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .grid-bottom { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-top    { grid-template-columns: 1fr; }
  .grid-bottom { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-stats  { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  /* NO animations on mobile — all elements visible */
  .hero-eyebrow, .hero-title, .hero-sub, .hero-stats,
  .scroll-hint, .services-label, .scard, .cta-strip,
  .contact-eyebrow, .contact-title, .contact-sub, .contact-glass-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
