*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  background: #f8f8f7;
  /* Prevent browser from adding its own anchor-scroll offset */
  scroll-padding-top: 0;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
body {
  font-family: 'Quicksand', sans-serif;
  color: #111827;
  background: #f8f8f7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Space Grotesk', sans-serif;
}
/* ── GSAP reveal: elements start invisible; GSAP animates them in ── */
.reveal,
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4 {
  opacity: 0;
}
/*
 * Word-reveal mask — how it works:
 * outer = display:inline-block + overflow:hidden  (the clip)
 * inner = display:BLOCK  ← critical: block children are ALWAYS clipped
 *         by overflow:hidden, regardless of GPU compositing layers.
 *         display:inline-block is NOT reliably clipped in all browsers.
 */
.txt-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: top; /* align to top of line box */
  line-height: 1; /* outer height = exactly 1em, our clip boundary */
}
.txt-word {
  display: block; /* block child → reliably clipped ✓ */
  line-height: inherit;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   MODERN FLOATING PILL NAVBAR
══════════════════════════════════════════ */
#navbar {
  top: 0;
  left: 0;
  right: 0;
  padding-top: 14px;
  background: transparent;
  transition: none;
}
/* The inner pill */
#nav-pill {
  max-width: 780px;
  margin: 0 auto;
  height: 50px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 100px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 14px;
  position: relative;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
#navbar.scrolled #nav-pill {
  background: rgba(248, 248, 247, 0.95);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  border-color: rgba(209, 213, 219, 0.9);
}
/* Sliding active background pill */
#nav-active-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 32px;
  background: #111827;
  border-radius: 100px;
  transition:
    left 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
/* Nav links inside pill */
.nav-link {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 100px;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-link::after {
  display: none;
} /* remove old underline */
.nav-link:hover {
  color: #111827;
}
.nav-link.nav-active {
  color: #ffffff !important;
}
/* hide old scrolled styles on pill — handled above */
#navbar.scrolled {
  background: transparent;
  box-shadow: none;
}
/* Nav hidden/visible for scroll direction */
#navbar.nav-hidden {
  transform: translateY(-120%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
#navbar.nav-visible {
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
/* nav-link active hover handled above via .nav-active + setActivePill() */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #f8f8f7;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: #0071e3;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.25);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #111827;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid #e5e7eb;
  letter-spacing: -0.01em;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: #111827;
  background: #111827;
  color: #f8f8f7;
  transform: translateY(-1px);
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0071e3;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-accent:hover {
  background: #005bb5;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}
.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.01em;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
.hero-mockup {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 20px 60px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.mockup-bar {
  background: #f8f8f7;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-url {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  margin-left: 8px;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-logo {
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.3s ease;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-logo:hover {
  filter: grayscale(0%) opacity(1);
}
.tech-marquee-container {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  padding: 4px 0;
}
.tech-marquee-track {
  display: flex;
  gap: 16px;
  animation: tech-marquee-forward 30s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.tech-marquee-track:hover {
  animation-play-state: paused;
}
.tech-marquee-track-reverse {
  display: flex;
  gap: 16px;
  animation: tech-marquee-reverse 30s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.tech-marquee-track-reverse:hover {
  animation-play-state: paused;
}
@keyframes tech-marquee-forward {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tech-marquee-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}
.service-icon-wrap {
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon-wrap {
  background: #eff6ff;
}
.portfolio-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.08);
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: -0.01em;
}
.process-icon-wrap {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  cursor: default;
}
.process-step:hover .process-icon-wrap {
  background: #111827;
  border-color: #111827;
  transform: scale(1.05);
}
.process-step:hover .process-icon-wrap svg {
  color: #fff !important;
}
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.04em;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.faq-trigger:hover {
  color: #0071e3;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.3s ease;
}
.faq-item.open .faq-icon {
  background: #111827;
  border-color: #111827;
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg {
  color: #fff !important;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-body-inner {
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 680px;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  letter-spacing: -0.01em;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  cursor: default;
}
.tech-badge:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  /* transform: translateY(-2px); */
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px -12px rgba(0, 0, 0, 0.06);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #374151;
  flex-shrink: 0;
}
.why-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: #d1d5db;
}
.cta-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 30%;
  right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0071e3, transparent);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.footer-link {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
}
.footer-link.flex {
  display: flex !important;
}
.footer-link.inline-flex {
  display: inline-flex !important;
}
.footer-link:hover {
  color: #111827;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #9ca3af;
}
#mobile-menu {
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.32s ease;
  transform: translateX(100%);
  opacity: 0;
}
#mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}
:focus-visible {
  outline: 2px solid #0071e3;
  outline-offset: 3px;
  border-radius: 4px;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f3f4f6;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
::selection {
  background: rgba(0, 113, 227, 0.12);
  color: #111827;
}
.hero-grid {
  background-image:
    linear-gradient(rgba(229, 231, 235, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.45) 1px, transparent 1px);
  background-size: 64px 64px;
}
.star-filled {
  color: #f59e0b;
}
.process-step {
  position: relative;
}

/* ══════════════════════════════════════════
   REDESIGNED TEAM SECTION (CARD-LESS)
══════════════════════════════════════════ */

/* Split layout adjustments */
.team-sticky-col {
  position: sticky;
  top: 100px;
}

/* Minimalist team member list (no cards) */
.team-member-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: border-color 0.3s ease;
}
.team-member-item:last-child {
  border-bottom: none;
}

/* Circular Avatar with micro-interactions */
.team-avatar-container {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f3f4f6;
  padding: 3px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-avatar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1729 0%, #1e2535 100%);
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-avatar-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
}

/* Hover Ring & Scale Effects */
.team-member-row:hover .team-avatar-container {
  transform: scale(1.05);
  box-shadow:
    0 0 0 2px #0071e3,
    0 12px 24px -8px rgba(0, 113, 227, 0.25);
}
.team-member-row:hover .team-avatar-img {
  transform: scale(1.08);
}

/* Custom interactive rows */
.team-member-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  cursor: pointer;
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-member-row:hover {
  background: rgba(243, 244, 246, 0.6);
  transform: translateX(4px);
}
.team-member-row.active {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}
.team-member-row.active .team-avatar-container {
  box-shadow: 0 0 0 2px #0071e3;
}

/* Staggered or Grid minimal layout */
.team-grid-layout {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
}
@media (min-width: 640px) {
  .team-grid-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .team-grid-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
  }
}

.team-grid-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
  height: 100%;
}
.team-grid-member .team-avatar-container {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  padding: 4px;
}
.team-grid-member:hover .team-avatar-container {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 2px #0071e3,
    0 16px 32px -10px rgba(0, 113, 227, 0.2);
  border-color: transparent;
}
.team-grid-member-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.team-grid-member-role {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0071e3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-grid-member-bio {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 290px;
  flex-grow: 1;
}

/* Small skills badges */
.team-grid-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.team-grid-skill-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: -0.01em;
}

/* Social Icon group */
.team-grid-socials {
  display: flex;
  gap: 8px;
}
.team-grid-social-link {
  color: #9ca3af;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team-grid-social-link:hover {
  color: #111827;
  transform: translateY(-1px);
}

/* Minimalist team stat block */
.team-stat-box {
  border-left: 2px solid #e5e7eb;
  padding-left: 20px;
  margin-top: 24px;
  transition: border-color 0.3s ease;
}
.team-stat-box:hover {
  border-color: #0071e3;
}
.team-stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.team-stat-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   CONTACT FORM SECTION
══════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.01em;
}
.form-label .required-star {
  color: #0071e3;
  margin-left: 2px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: #d1d5db;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
  background: #fff;
}
/* Error state */
.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}
.form-error {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  pointer-events: none;
  min-height: 18px;
}
.form-error.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Phone field wrapper */
.phone-field-wrap {
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: visible; /* allow dropdown to overflow */
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
  position: relative;
}
.phone-field-wrap:focus-within {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}
.phone-field-wrap.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}
/* ── Custom country-code picker ── */
.phone-code-picker {
  position: relative;
  flex-shrink: 0;
}
.phone-code-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px 0 14px;
  height: 100%;
  min-height: 50px;
  background: #f9fafb;
  border: none;
  border-right: 1px solid #e5e7eb;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.15s ease;
  outline: none;
}
.phone-code-btn:hover {
  background: #f3f4f6;
}
.phone-code-btn:focus-visible {
  outline: 2px solid #0071e3;
  outline-offset: -2px;
  border-radius: 11px 0 0 11px;
}
.phone-code-flag {
  font-size: 1.1rem;
  line-height: 0;
}
.phone-code-dial {
  font-size: 0.875rem;
}
.phone-code-chevron {
  width: 14px;
  height: 14px;
  color: #6b7280;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.phone-code-btn[aria-expanded='true'] .phone-code-chevron {
  transform: rotate(180deg);
}
/* ── Dropdown panel ── */
.phone-code-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 16px 40px -8px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  /* thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.phone-code-list::-webkit-scrollbar {
  width: 4px;
}
.phone-code-list::-webkit-scrollbar-track {
  background: transparent;
}
.phone-code-list::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}
.phone-code-list.open {
  display: block;
  animation: dropdownFadeIn 0.15s ease forwards;
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Option rows ── */
.phone-code-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.12s ease;
  outline: none;
}
.phone-code-option:hover,
.phone-code-option:focus {
  background: #f3f4f6;
}
.phone-code-option.selected {
  background: #eff6ff;
}
.phone-code-option.selected .pco-dial {
  color: #0071e3;
  font-weight: 700;
}
.pco-flag {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.pco-name {
  flex: 1;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pco-dial {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  flex-shrink: 0;
}
/* Phone number input (no left border, no radius on left side) */
.phone-input {
  flex: 1;
  border: none !important;
  border-radius: 0 12px 12px 0 !important;
  box-shadow: none !important;
  padding-left: 14px !important;
  background: transparent !important;
  min-width: 0;
}
.phone-input:focus {
  border: none !important;
  box-shadow: none !important;
}

/* Char counter */
.char-counter {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-align: right;
  transition: color 0.2s ease;
}
.char-counter.near-limit {
  color: #f59e0b;
}
.char-counter.at-limit {
  color: #ef4444;
}
/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}
/* Select arrow */
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6b7280;
  pointer-events: none;
}
/* Success state */
.form-success-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  display: none;
}
.form-success-box.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeSlideUp 0.4s ease forwards;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Submit loading */
.btn-primary.loading {
  opacity: 0.75;
  pointer-events: none;
  cursor: not-allowed;
}
/* Trust points below submit */
.form-trust-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-trust-tick {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.form-trust-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.5;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Contact form card */
.contact-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 20px 60px -12px rgba(0, 0, 0, 0.07);
}
/* Left info column decorative blobs */
.contact-info-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 113, 227, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* ==========================================================================
   PAGE LOADER & 404 STYLES
   ========================================================================== */

#page-loader {
  position: fixed;
  inset: 0;
  background: #f8f8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-svg {
  width: 90px;
  height: 90px;
}

.loader-triangle {
  stroke-dasharray: 242;
  stroke-dashoffset: 242;
}

.loader-text {
  opacity: 0.6;
}

/* 404 Specifics */
.error-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, rgba(16, 185, 129, 0.02) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   PREMIUM PORTFOLIO REDESIGN STYLES (ISOTOPE FILTERABLE GRID)
   ========================================================================== */

/* Filter Button Container */
.portfolio-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
}

/* sleek Filter Pills */
.filter-btn {
  padding: 8px 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
  color: #111827;
  border-color: #111827;
  transform: translateY(-1px);
}

.filter-btn.active {
  color: #ffffff;
  background: #111827;
  border-color: #111827;
  box-shadow: 0 10px 20px -6px rgba(17, 24, 39, 0.15);
}

/* Isotope Masonry/Packery Grid — position:relative required for absolute positioning */
.portfolio-grid {
  position: relative; /* CRITICAL: Isotope sets items to position:absolute inside this */
  width: calc(100% + 24px);
  margin: -12px;
}

.portfolio-grid::after {
  content: '';
  display: block;
  clear: both;
}

/* Grid items — float:left fallback, Isotope controls placement via absolute positioning */
.portfolio-grid-item {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  float: left;
}

/* Grid sizer — hidden from rendering flow, used only by Isotope for width measurements */
.portfolio-grid-sizer {
  width: 100%;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  float: none !important;
  position: absolute !important;
  visibility: hidden !important;
}

@media (min-width: 640px) {
  .portfolio-grid-sizer,
  .portfolio-grid-item.card-small,
  .portfolio-grid-item.card-vertical {
    width: 50%; /* Spans 1 of 2 columns on tablet */
  }

  .portfolio-grid-item.card-horizontal,
  .portfolio-grid-item.card-large {
    width: 100%; /* Spans 2 of 2 columns on tablet */
  }
}

@media (min-width: 1024px) {
  .portfolio-grid-sizer,
  .portfolio-grid-item.card-small,
  .portfolio-grid-item.card-vertical {
    width: 33.333%; /* Spans 1 of 3 columns on desktop */
  }

  .portfolio-grid-item.card-horizontal,
  .portfolio-grid-item.card-large {
    width: 66.666%; /* Spans 2 of 3 columns on desktop */
  }
}

/* Symmetrical & Asymmetrical Grid Cards */
.portfolio-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.75);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 36px -12px rgba(0, 113, 227, 0.08),
    0 0 0 1px rgba(0, 113, 227, 0.06);
  border-color: rgba(0, 113, 227, 0.38);
}

/* Description line-clamp adapts dynamically */
.portfolio-card .portfolio-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* --- Card Sizing Styles --- */

/* 1. Small Card (1x1) */
.portfolio-grid-item.card-small .portfolio-card {
  height: 200px; /* Mathematically aligned standard height */
  flex-direction: column;
}
.portfolio-grid-item.card-small .card-preview-mini {
  height: 90px; /* ~30% of card height */
  padding: 8px; /* Spacing around the image only */
}
.portfolio-grid-item.card-small .card-preview-mini img {
  border-radius: 8px; /* Rounded corners for the image */
  object-fit: contain; /* Contain the image within available space */
  object-position: center center; /* Center the image both horizontally and vertically */
}
.portfolio-grid-item.card-small .browser-mockup {
  display: none !important; /* Hide browser mockup specifically for 1x1 cards */
}
.portfolio-grid-item.card-small .phone-mockup {
  transform: scale(0.9) translateY(-2px); /* Scale down visual frame inside small cards */
}
.portfolio-grid-item.card-small .portfolio-card .p-5 {
  padding: 10px 14px;
}
.portfolio-grid-item.card-small .portfolio-card .portfolio-desc {
  -webkit-line-clamp: 1; /* Keep it compact */
  margin-bottom: 8px;
}

/* 2. Vertical Card (1x2) */
.portfolio-grid-item.card-vertical .portfolio-card {
  height: 424px; /* Mathematically aligned double height (448px minus 24px padding) */
  flex-direction: column;
}
.portfolio-grid-item.card-vertical .card-preview-mini {
  height: 200px; /* ~30.6% of card height */
  padding: 4px;
}
.portfolio-grid-item.card-vertical .browser-mockup,
.portfolio-grid-item.card-vertical .phone-mockup {
  transform: scale(0.9) translateY(-5px);
}
.portfolio-grid-item.card-vertical .portfolio-card .p-5 {
  padding: 18px 20px;
}

/* 3. Horizontal Card (2x1) */
.portfolio-grid-item.card-horizontal .portfolio-card {
  height: auto;
  min-height: 200px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .portfolio-grid-item.card-horizontal .portfolio-card {
    flex-direction: row;
    height: 200px; /* Mathematically aligned standard height */
  }
  .portfolio-grid-item.card-horizontal .card-preview-mini {
    width: 45%;
    height: 100% !important; /* Full vertical height on split desktop layout */
    padding: 16px;
  }
  .portfolio-grid-item.card-horizontal .portfolio-card > div:last-child {
    width: 55%;
    padding: 16px 20px;
  }
}
.portfolio-grid-item.card-horizontal .card-preview-mini {
  height: 80px; /* ~40% of card height when stacked */
  padding: 8px;
}
.portfolio-grid-item.card-horizontal .browser-mockup,
.portfolio-grid-item.card-horizontal .phone-mockup {
  transform: scale(0.9) translateY(-5px);
}
.portfolio-grid-item.card-horizontal .portfolio-desc {
  -webkit-line-clamp: 2;
}

/* 4. Large Feature Card (2x2) */
.portfolio-grid-item.card-large .portfolio-card {
  height: auto;
  min-height: 424px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .portfolio-grid-item.card-large .portfolio-card {
    flex-direction: row;
    height: 424px; /* Mathematically aligned double height */
  }
  .portfolio-grid-item.card-large .card-preview-mini {
    width: 50%;
    height: 100% !important; /* Full vertical height on split desktop layout */
    padding: 24px;
  }
  .portfolio-grid-item.card-large .portfolio-card > div:last-child {
    width: 50%;
    padding: 24px;
  }
}
.portfolio-grid-item.card-large .card-preview-mini {
  height: 210px; /* ~49.5% of card height when stacked */
  padding: 16px;
}
.portfolio-grid-item.card-large .browser-mockup,
.portfolio-grid-item.card-large .phone-mockup {
  transform: scale(0.95);
}
.portfolio-grid-item.card-large .portfolio-desc {
  -webkit-line-clamp: unset;
}

/* Card Preview Mini Area */
.card-preview-mini {
  position: relative;
  height: 180px; /* Standard browser mockup height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17, 24, 39, 0.05) 1px, transparent 0),
    linear-gradient(135deg, var(--grad-start, #eff6ff) 0%, var(--grad-end, #ede9fe) 100%);
  background-size:
    10px 10px,
    100% 100%;
  border-bottom: 1px solid rgba(229, 231, 235, 0.55);
  padding: 16px;
  flex-shrink: 0;
  transition: height 0.3s ease; /* Smooth transition when resizing */
}

/* Intelligent Image Fitting for Dynamic Screenshots */
.card-preview-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Center-aware and focal-point-aware cropping */
  object-position: center top; /* Keep top header/primary objects visible */
  transition: transform 0.4s ease;
}
.portfolio-card:hover .card-preview-mini img {
  transform: scale(1.05); /* Modern premium zoom on hover */
}

/* Scaled-down device frames inside cards */
.portfolio-card .browser-mockup {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  width: 100%; /* Take full available width of banner area */
  height: 100%; /* Take full available height of banner area */
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.portfolio-card:hover .browser-mockup {
  transform: scale(1.02) translateY(-2px); /* subtle scale on hover */
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.08);
}

.browser-header {
  height: 26px;
  background: #f9fafb;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative;
  flex-shrink: 0;
}

.browser-dots {
  display: flex;
  gap: 4px;
  position: absolute;
  left: 10px;
}

.browser-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
}

.browser-dot.red {
  background-color: #ff5f56;
}
.browser-dot.yellow {
  background-color: #ffbd2e;
}
.browser-dot.green {
  background-color: #27c93f;
}

.browser-url-bar {
  width: 65%;
  margin: 0 auto;
  height: 14px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.browser-content {
  background: #ffffff;
  flex: 1; /* Stretch to fill browser mockup height */
  position: relative;
  overflow: hidden;
  padding: 0 !important; /* Strip default HTML padding to prevent pushing content down */
  min-height: unset !important; /* Strip default min-height to fit compact cards */
}

/* --- Compact Mockup Header Adjustments for Card Sizes --- */

/* Small Card (1x1) browser header */
.portfolio-grid-item.card-small .browser-header {
  height: 18px;
  padding: 0 6px;
}
.portfolio-grid-item.card-small .browser-dots {
  left: 6px;
  gap: 2px;
}
.portfolio-grid-item.card-small .browser-dot {
  width: 4px;
  height: 4px;
}
.portfolio-grid-item.card-small .browser-url-bar {
  height: 10px;
  font-size: 0.45rem;
}

/* Stacked horizontal browser header adjustments */
@media (max-width: 767px) {
  .portfolio-grid-item.card-horizontal .browser-header {
    height: 20px;
    padding: 0 8px;
  }
  .portfolio-grid-item.card-horizontal .browser-dots {
    left: 8px;
    gap: 3px;
  }
  .portfolio-grid-item.card-horizontal .browser-dot {
    width: 5px;
    height: 5px;
  }
  .portfolio-grid-item.card-horizontal .browser-url-bar {
    height: 12px;
    font-size: 0.5rem;
  }
}

/* Scaled-down Phone Frame */
.portfolio-card .phone-mockup {
  background: #111827;
  border: 4px solid #1f2937;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%; /* Take full available height of banner area */
  aspect-ratio: 1 / 1.6; /* Maintain phone frame proportion */
  margin: 0 auto;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.portfolio-card:hover .phone-mockup {
  transform: scale(1.04) translateY(-2px);
  border-color: rgba(0, 113, 227, 0.35);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.1);
}

.portfolio-card .phone-island {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 6px;
  background: #1f2937;
  border-radius: 3px;
  z-index: 10;
}

.portfolio-card .phone-screen {
  background: #f9fafb;
  width: 100%;
  height: 100%;
  padding: 12px 6px 6px 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Compact Floating Widget */
.portfolio-card .floating-widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 5px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  z-index: 15;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.portfolio-card .widget-1 {
  bottom: 12px;
  right: 12px;
}

.portfolio-card .widget-2 {
  top: 18px;
  left: 12px;
}

.portfolio-card:hover .widget-1 {
  transform: translate3d(4px, -4px, 0);
}

.portfolio-card:hover .widget-2 {
  transform: translate3d(-4px, 4px, 0);
}

/* Case Study link arrow animation */
.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111827;
  transition: color 0.25s ease;
  text-decoration: none;
}

.case-study-link svg {
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s ease;
}

.portfolio-card:hover .case-study-link {
  color: #0071e3;
}

.portfolio-card:hover .case-study-link svg {
  transform: translate(2px, -2px);
  color: #0071e3;
}

/* Vector components inside thumbnails */
.mock-bar {
  background-color: #e5e7eb;
  border-radius: 3px;
}

.mock-avatar {
  background: linear-gradient(135deg, #0071e3 0%, #10b981 100%);
}

.tech-pill {
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.portfolio-card:hover .tech-pill {
  background-color: #eff6ff;
  border-color: #dbeafe;
}
