/**
 * UNIC Recyclers — Design Revamp
 * Typography: Poppins (all headings + body) + Raleway (labels)
 * Colors: Bright green gradient + white
 */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Raleway:wght@400;500;600;700&display=swap");

:root {
  /* Primary — Bright Green Gradient */
  --unic-forest: #047857;
  --unic-forest-light: #059669;
  --unic-sage: #10b981;
  --unic-sage-bright: #34d399;
  --unic-lime: #6ee7b7;
  --unic-green-mid: #10b981;
  --unic-sage-pale: #d1fae5;
  --unic-sage-wash: rgba(16, 185, 129, 0.12);
  /* Blue (from brochure logo/header) */
  --unic-blue: #1565c0;
  --unic-blue-light: #42a5f5;
  /* Accent — Warm (from brochure) */
  --unic-accent: #1565c0;
  --unic-accent-soft: rgba(21, 101, 192, 0.12);
  /* Neutrals */
  --unic-stone: #1a1f1c;
  --unic-charcoal: #2d3632;
  --unic-slate: #4a5651;
  --unic-muted: #6b7872;
  --unic-bg: #ffffff;
  --unic-bg-warm: #f0fdf4;
  --unic-border: #dcfce7;
  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--unic-charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--unic-bg);
}

.container-unic {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Typography */
.font-display {
  font-family: "Poppins", sans-serif;
}

.section-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--unic-forest);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--unic-stone);
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Grain overlay */
.grain-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ========== NAVBAR ========== */
.unic-nav {
  background: linear-gradient(135deg, #047857 0%, #059669 40%, #10b981 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
}

.logo-unic {
  color: #fff;
}
.logo-recyclers {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== SWM 2026 ALERT BAND ========== */
.swm-alert-band {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: #fff;
  font-size: 0.9rem;
}
.swm-alert-band .swm-alert-text {
  opacity: 0.95;
}
.swm-alert-band .btn-light:hover {
  background: #fff;
  color: var(--unic-forest);
}
.swm-alert-band .btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s var(--ease-out-expo);
}

.navbar-dark .nav-link:hover {
  color: #fff !important;
}

.btn-unic-cta {
  background: var(--unic-blue);
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  padding: 0.5rem 1.25rem;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s;
}

.btn-unic-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}

/* ========== HERO ========== */
.unic-hero {
  background: linear-gradient(
    135deg,
    #047857 0%,
    #059669 25%,
    #10b981 60%,
    #34d399 100%
  );
  padding: clamp(80px, 12vw, 140px) 0 clamp(100px, 14vw, 160px);
  position: relative;
  overflow: hidden;
}

.unic-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.unic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Inner-page hero: compact, no image */
.unic-hero.unic-hero-inner {
  padding: clamp(120px, 14vw, 140px) 0 clamp(80px, 10vw, 100px);
}

.unic-hero.unic-hero-inner .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.unic-hero .container-unic {
  position: relative;
  z-index: 1;
}

.unic-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.unic-hero .hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  max-width: 520px;
  font-weight: 400;
}

.unic-hero .btn-hero {
  background: #ffffff;
  color: #047857;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
}

.unic-hero .btn-hero:hover {
  background: #ffffff;
  color: #047857;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-image-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  min-height: 340px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.hero-image-placeholder.hero-has-image {
  background: transparent;
  border: none;
}

/* ========== SECTIONS ========== */
.unic-section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
}

.unic-section-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%2310b981' fill-opacity='0.04' d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.unic-section-white {
  background: #fff;
  padding: clamp(60px, 10vw, 100px) 0;
}

.unic-section-green {
  background: linear-gradient(
    135deg,
    #047857 0%,
    #059669 40%,
    #10b981 100%
  );
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
}

.unic-section-green::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.unic-section-green .section-label {
  color: rgba(255, 255, 255, 0.75);
}
.unic-section-green .section-heading {
  color: #fff;
}
.unic-section-green p {
  color: rgba(255, 255, 255, 0.9);
}
.unic-section-green .segregation-list li::before {
  background: rgba(255, 255, 255, 0.9);
}

/* ========== PATH CARDS (Attero-style "What are you looking for?") ========== */
.path-card {
  display: block;
  background: #fff;
  border: 1px solid var(--unic-border);
  border-radius: 14px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--unic-sage) 0%, var(--unic-sage-bright) 100%);
  transform: scaleY(0);
  transition: transform 0.35s var(--ease-out-expo);
}

.path-card:hover {
  border-color: var(--unic-sage);
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

.path-card:hover::before {
  transform: scaleY(1);
}

.path-card .path-icon {
  width: 52px;
  height: 52px;
  background: var(--unic-sage-wash);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--unic-sage);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.path-card .path-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--unic-stone);
  margin-bottom: 0.35rem;
}

.path-card .path-desc {
  font-size: 0.9rem;
  color: var(--unic-muted);
  line-height: 1.55;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: #fff;
  border: 1px solid var(--unic-border);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  transition: all 0.35s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--unic-sage);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.18);
  transform: translateY(-4px);
}

.service-card .service-icon {
  width: 52px;
  height: 52px;
  background: var(--unic-sage-wash);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--unic-sage);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card .service-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--unic-stone);
  margin-bottom: 0.6rem;
}

.service-card .service-desc {
  font-size: 0.9rem;
  color: var(--unic-muted);
  line-height: 1.6;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--unic-sage-wash);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--unic-sage);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--unic-stone);
  margin-bottom: 0.4rem;
}

.feature-desc {
  color: var(--unic-muted);
  font-size: 0.9rem;
}

/* ========== INDUSTRIES GRID ========== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.industry-item {
  background: #fff;
  border: 1px solid var(--unic-border);
  border-radius: 10px;
  padding: 1.15rem;
  font-weight: 600;
  color: var(--unic-charcoal);
  text-align: center;
  transition: all 0.3s var(--ease-out-expo);
}

.industry-item:hover {
  border-color: var(--unic-sage);
  color: var(--unic-sage);
  transform: translateY(-2px);
}

a.industry-item {
  color: var(--unic-charcoal);
  text-decoration: none;
}
a.industry-item:hover {
  color: var(--unic-sage);
}

/* ========== PROCESS STEPS ========== */
.process-steps-wrapper {
  position: relative;
}

.process-step {
  text-align: center;
  padding: 1.25rem 1rem;
  position: relative;
  transition: transform 0.35s var(--ease-out-expo);
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step .step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    #047857 0%,
    #10b981 100%
  );
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.process-step .step-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--unic-stone);
}

.process-step .step-desc {
  font-size: 0.85rem;
  color: var(--unic-muted);
  margin-top: 0.35rem;
}

/* ========== SEGREGATION LIST ========== */
.segregation-list {
  list-style: none;
}

.segregation-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: inherit;
}

.segregation-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

/* ========== REPORT METRICS ========== */
.report-metric .metric-value {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--unic-sage);
}

.report-metric .metric-label {
  font-size: 0.85rem;
  color: var(--unic-muted);
}

/* ========== SIDEBAR CARD (used in service pages, about) ========== */
.sidebar-card {
  background: #fff;
  border: 1px solid var(--unic-border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  transition: all 0.35s var(--ease-out-expo);
  height: 100%;
}

.sidebar-card:hover {
  border-color: var(--unic-sage);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.12);
}

.sidebar-card .sidebar-card-title {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--unic-sage);
  margin-bottom: 0.75rem;
}

.sidebar-card p:last-child {
  margin-bottom: 0;
}

/* ========== CTA SECTION ========== */
.unic-cta {
  background: linear-gradient(
    135deg,
    #047857 0%,
    #059669 40%,
    #10b981 100%
  );
  padding: clamp(70px, 10vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.unic-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.unic-cta .container-unic {
  position: relative;
  z-index: 1;
}

.unic-cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.unic-cta .btn-hero {
  background: #ffffff;
  color: #047857;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  border: none;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
}

.unic-cta .btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ========== CLIENTELE / CLIENT LOGOS ========== */
.clientele-section {
  padding: clamp(60px, 10vw, 100px) 0;
}

.clientele-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--unic-border);
  border-radius: 12px;
  min-height: 100px;
  transition: all 0.3s var(--ease-out-expo);
}

.client-logo-item:hover {
  border-color: var(--unic-sage);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.client-logo-item img {
  max-height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
}

.client-logo-item span {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--unic-charcoal);
  text-align: center;
}

/* ========== FOOTER ========== */
.unic-footer {
  background: var(--unic-stone);
  color: rgba(255, 255, 255, 0.88);
}

.unic-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s;
}

.unic-footer a:hover {
  color: #fff;
}

.link-sage {
  color: var(--unic-sage);
  font-weight: 500;
  text-decoration: none;
}

.link-sage:hover {
  color: var(--unic-forest);
  text-decoration: underline;
}

.footer-heading {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unic-footer .footer-brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
}

.unic-footer ul li {
  margin-bottom: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.25s;
}

.social-icons a:hover {
  background: var(--unic-sage);
}

/* ========== LEGAL PAGES ========== */
.legal-content {
  background: #fff;
  border: 1px solid var(--unic-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.legal-content .section-heading {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--unic-border);
}

.legal-content .section-heading:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--unic-charcoal);
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--unic-sage);
  font-weight: 500;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ========== CONTACT SPLIT LAYOUT ========== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--unic-border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 10px;
  border-color: var(--unic-border);
  padding: 0.65rem 1rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--unic-sage);
  box-shadow: 0 0 0 3px var(--unic-sage-wash);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-in {
  animation: fadeUp 0.6s var(--ease-out-expo) forwards;
}

.animate-in-delay-1 {
  animation-delay: 0.08s;
  opacity: 0;
}
.animate-in-delay-2 {
  animation-delay: 0.16s;
  opacity: 0;
}
.animate-in-delay-3 {
  animation-delay: 0.24s;
  opacity: 0;
}
.animate-in-delay-4 {
  animation-delay: 0.32s;
  opacity: 0;
}
.animate-in-delay-5 {
  animation-delay: 0.4s;
  opacity: 0;
}
.animate-in-delay-6 {
  animation-delay: 0.48s;
  opacity: 0;
}

.reveal-child > * {
  animation: fadeUp 0.55s var(--ease-out-expo) forwards;
  opacity: 0;
}

.reveal-child > *:nth-child(1) {
  animation-delay: 0.05s;
}
.reveal-child > *:nth-child(2) {
  animation-delay: 0.12s;
}
.reveal-child > *:nth-child(3) {
  animation-delay: 0.19s;
}
.reveal-child > *:nth-child(4) {
  animation-delay: 0.26s;
}
.reveal-child > *:nth-child(5) {
  animation-delay: 0.33s;
}
.reveal-child > *:nth-child(6) {
  animation-delay: 0.4s;
}
.reveal-child > *:nth-child(7) {
  animation-delay: 0.47s;
}
.reveal-child > *:nth-child(8) {
  animation-delay: 0.54s;
}
.reveal-child > *:nth-child(9) {
  animation-delay: 0.61s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-in,
  .reveal-child > * {
    animation: none;
    opacity: 1;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .unic-hero {
    padding: 100px 0 80px;
  }
  .path-card:hover {
    transform: translateY(-4px);
  }
  .path-card:hover::before {
    transform: scaleX(1);
  }
  .path-card::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
  }
}
