:root {
    --teal: #1D9E75;
    --teal-light: #4DBFA0;
    --dark: #0b1410;
    --dark2: #0f1a15;
    --dark3: #0d1812;
    --card: rgba(255,255,255,0.04);
    --white: #f0f5f2;
    --muted: #7a9e8e;
    --border: rgba(255,255,255,0.07);
    --border-teal: rgba(29,158,117,0.22);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 6vw;
    background: rgba(11,20,16,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
   
  -webkit-box-pack: justify;
  -webkit-box-align: center;
  transform: translateZ(0);         
  -webkit-transform: translateZ(0);
  }
  .logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 38px; width: auto;
    
  }
  .nav-links { display: flex; gap: 2.2rem; list-style: none;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-wrap: nowrap;
  align-items: center;
  }
  .nav-links a {
    color: var(--white); text-decoration: none;
    font-size: 0.78rem; letter-spacing: 0.1em; font-weight: 800;
    text-transform: uppercase; transition: color 0.2s;
    display: inline-block;
  white-space: nowrap;               
  -webkit-font-smoothing: antialiased;
  }
  .nav-links a:hover { color: var(--teal-light); }
  .nav-cta {
    border: 1px solid var(--border-teal); color: var(--teal-light);
    padding: 0.55rem 1.4rem; border-radius: 3px;
    font-size: 0.75rem; font-weight: 600; text-decoration: none;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
  }
  .nav-cta:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 6rem 6vw;
    text-align: center;
  }
  .hero-logo-icon { width: 80px; height: 70px; margin-bottom: 2.2rem; }
  .hero-logo-img {
    width: 280px; max-width: 68vw; height: auto;
    
    margin-bottom: 0.75rem;
  }

  
  .hero-tagline {
    font-size: clamp(0.82rem, 1.3vw, 0.95rem);
    color: rgba(255,255,255,0.45); font-weight: 400; letter-spacing: 0.2em;
    font-family: 'Nunito', sans-serif; text-transform: uppercase;
  }
  .btn-primary {
    background: var(--teal); color: #fff;
    padding: 0.85rem 2rem; border-radius: 3px;
    font-size: 0.78rem; font-weight: 600; text-decoration: none;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--teal-light); }
  .btn-ghost {
    border: 1px solid var(--border); color: var(--muted);
    padding: 0.85rem 2rem; border-radius: 3px;
    font-size: 0.78rem; font-weight: 500; text-decoration: none;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--muted); color: var(--white); }

  /* SECTIONS */
  section { padding: 7rem 6vw; }
  .eyebrow {
    font-size: 0.7rem; letter-spacing: 0.18em; color: var(--white);
    text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 800;
  }
  h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
    margin-bottom: 1.4rem;
  }
  h2 strong { font-weight: 600; }
  .lead {
    color: var(--muted); max-width: 520px;
    font-size: 0.95rem; font-weight: 300; margin-bottom: 4rem; line-height: 1.8;
  }

  /* ABOUT */
  .about { background: var(--dark2); }
  .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-body p { color: var(--muted); font-weight: 300; margin-bottom: 1.2rem; font-size: 0.95rem; }
  .about-body a { display: inline-block; margin-top: 1.5rem; }
  .pillars { display: flex; flex-direction: column; gap: 1px; }
  .pillar {
    padding: 1.6rem 1.8rem;
    border: 1px solid var(--border);
    background: var(--card);
    transition: border-color 0.2s;
  }
  .pillar:first-child { border-radius: 3px 3px 0 0; }
  .pillar:last-child { border-radius: 0 0 3px 3px; border-top: none; }
  .pillar:hover { border-color: var(--border-teal); }
  .pillar-head {
    font-size: 0.7rem; letter-spacing: 0.14em; color: var(--teal-light);
    text-transform: uppercase; font-weight: 600; margin-bottom: 0.5rem;
  }
  .pillar p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

  /* PROBLEM */
  .problem { background: var(--dark3); }
  .problem-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .prob-col {
    padding: 2.5rem; background: var(--card); border: 1px solid var(--border);
  }
  .prob-col:first-child { border-radius: 3px 0 0 3px; }
  .prob-col:last-child { border-radius: 0 3px 3px 0; border-left: none; }
  .prob-col-head {
    font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 1.8rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .prob-col-head.bad { color: #d46060; }
  .prob-col-head.good { color: var(--teal-light); }
  .prob-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  }
  .prob-item:last-child { border-bottom: none; }
  .prob-dot {
    width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
    margin-top: 3px; font-size: 10px;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
  }
  .prob-dot.x { background: rgba(212,96,96,0.12); color: #d46060; }
  .prob-dot.ok { background: rgba(29,158,117,0.12); color: var(--teal-light); }
  .prob-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

  /* OFFERINGS */
  .offerings { background: var(--dark); }
  .offerings-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  }
  .offer {
    padding: 2.2rem; background: var(--card); border: 1px solid var(--border);
    transition: background 0.2s;
  }
  .offer:hover { background: rgba(255,255,255,0.06); }
  /* round corners on grid corners */
  .offer:nth-child(1) { border-radius: 3px 0 0 0; }
  .offer:nth-child(3) { border-radius: 0 3px 0 0; }
  .offer:nth-child(4) { border-radius: 0 0 0 3px; }
  .offer:nth-child(6) { border-radius: 0 0 3px 0; }
  .offer-num {
    font-size: 0.65rem; letter-spacing: 0.14em; color: var(--teal-light);
    font-weight: 600; text-transform: uppercase; margin-bottom: 1rem;
  }
  .offer h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--white); }
  .offer p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

  /* PROCESS */
  .process { background: var(--dark2); }
  .steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
  .step-row {
    display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem;
    padding: 1.8rem 0; border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .step-row:last-child { border-bottom: none; }
  .step-n {
    font-size: 0.65rem; letter-spacing: 0.14em; color: var(--teal-light);
    font-weight: 600; text-transform: uppercase; padding-top: 2px;
  }
  .step-body h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
  .step-body p { font-size: 0.88rem; color: var(--muted); }

  /* PRODUCTS */
  .products { background: var(--dark3); }
  .products-onepage { max-width: 1120px; margin: 0 auto; text-align: center; }
  .products-onepage .lead { margin-left: auto; margin-right: auto; margin-bottom: 3.2rem; }
  .house-showcase {
    position: relative;   
    display: flex; align-items: center; justify-content: center;
  }
  .house-outline { height: auto; opacity: 0.95; filter: drop-shadow(0 26px 50px rgba(0,0,0,0.18)); }
  .house-label {
    position: absolute; top: 52%; left: 50%; transform: translate(-50%, -50%);
    width: min(360px, 68vw); padding: 1.4rem 1.8rem;
    border: 1px solid var(--border-teal); border-radius: 3px;
    background: rgba(11,20,16,0.82); backdrop-filter: blur(12px);
  }
  .house-label h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.45rem; }
  .house-label p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
  .product-image-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-bottom: 3.4rem; }
  .product-image-card {
    min-height: 145px; padding: 1.2rem 0.75rem; background: var(--card); border: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .product-image-card:hover { background: rgba(255,255,255,0.06); border-color: var(--border-teal); transform: translateY(-2px); }
  .product-icon {
    width: 58px; height: 58px; border: 1px solid var(--border-teal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-light); background: rgba(29,158,117,0.08);
  }
  .product-icon svg { width: 31px; height: 31px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .product-image-card span { font-size: 0.78rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.35; }
  .brand-strip {
    border: 1px solid var(--border); background: rgba(255,255,255,0.025); border-radius: 3px;
    padding: 2rem; text-align: left;
  }
  .brand-strip .eyebrow { text-align: center; margin-bottom: 1.5rem; }
  .brand-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; }
  .brand-pill {
    padding: 0.55rem 1rem; border: 1px solid var(--border); border-radius: 999px;
    color: var(--muted); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.035em;
    background: rgba(255,255,255,0.025); transition: color 0.2s, border-color 0.2s;
  }
  .brand-pill:hover { color: var(--white); border-color: var(--border-teal); }


  /* WHO WE SERVE ICON CIRCLES */
  .serve-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
    align-items: start;
  }
  .serve-item {
    text-align: center;
  }
  .serve-circle {
    width: 132px;
    height: 132px;
    margin: 0 auto 1rem;
    border: 1px solid var(--border-teal);
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .serve-circle:hover {
    transform: translateY(-6px);
    border-color: var(--teal-light);
    background: rgba(29,158,117,0.06);
    box-shadow: 0 0 28px rgba(29,158,117,0.16);
  }
  .serve-circle svg {
    width: 50px;
    height: 50px;
    stroke: var(--teal-light);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .serve-label {
    font-size: 0.82rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
  }
  @media (max-width: 1000px) {
    .serve-icons { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 640px) {
    .serve-icons { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
    .serve-circle { width: 116px; height: 116px; }
    .serve-circle svg { width: 44px; height: 44px; }
  }

  /* SEGMENTS */
  .segments { background: var(--dark); }
  .seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .seg-card {
    border: 1px solid var(--border); border-radius: 3px; padding: 2.5rem;
    background: var(--card);
    transition: border-color 0.2s;
  }
  .seg-card:hover { border-color: var(--border-teal); }
  .seg-tag {
    display: inline-block; font-size: 0.65rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal-light); font-weight: 600;
    margin-bottom: 1rem;
  }
  .seg-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
  .seg-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.7; }
  .seg-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
  .seg-list li {
    font-size: 0.85rem; color: var(--muted);
    display: flex; align-items: flex-start; gap: 0.7rem;
  }
  .seg-list li::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--teal-light); flex-shrink: 0; margin-top: 7px;
  }

  /* CONTACT */
  .contact { background: var(--dark2); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .contact-left p { color: var(--muted); font-weight: 300; font-size: 0.95rem; }
  .contact-card {
    border: 1px solid var(--border); border-radius: 3px; padding: 2.5rem;
    background: var(--card);
  }
  .contact-name { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.15rem; }
  .contact-role { font-size: 0.75rem; color: var(--teal-light); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 2rem; }
  .cinfo {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  }
  .cinfo:last-child { border-bottom: none; }
  .cinfo-icon {
    width: 32px; height: 32px; border: 1px solid var(--border);
    border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .cinfo-icon svg { width: 15px; height: 15px; stroke: var(--teal-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .cinfo a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
  .cinfo a:hover { color: var(--white); }

  /* FOOTER */
  footer {
    padding: 2rem 6vw;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .foot-logo { display: flex; align-items: center; gap: 9px; }
  .foot-logo svg { width: 22px; height: 22px; }
  .foot-logo span { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  footer p { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }

  /* FADE-IN */
  @keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
  .hero-logo-icon { animation: fadeUp 0.6s ease both 0.1s; }
  .hero-wordmark { animation: fadeUp 0.6s ease both 0.25s; }
  .hero-tagline { animation: fadeUp 0.6s ease both 0.4s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .about-layout, .problem-cols, .contact-layout, .seg-grid { grid-template-columns: 1fr; }
    .product-image-grid { grid-template-columns: repeat(3, 1fr); }
    .house-showcase { }
    .offerings-grid { grid-template-columns: 1fr 1fr; }
    .prob-col:first-child, .prob-col:last-child { border-radius: 3px; border-left: 1px solid var(--border); }
    .prob-col:last-child { border-top: none; border-radius: 0 0 3px 3px; }
    nav .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .offerings-grid { grid-template-columns: 1fr; }
    .product-image-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-strip { padding: 1.4rem; }
  }

  /* CUSTOM FINAL REVISIONS */
  .nav-links a {
    color: var(--white) !important;
    font-weight: 800 !important;
  }
  .eyebrow {
    color: var(--white) !important;
    font-weight: 800 !important;
  }
  .hero-logo-img {
    margin-bottom: 0.75rem !important;
  }
  .steps {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem !important;
    max-width: 1100px !important;
    position: relative;
  }
  .step-row {
    display: block !important;
    padding: 1.7rem 1.4rem !important;
    border: 1px solid var(--border) !important;
    border-radius: 3px;
    background: var(--card);
    position: relative;
    min-height: 175px;
  }
  .step-row:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.2rem;
    width: 1.2rem;
    height: 1px;
    background: var(--teal-light);
    opacity: 0.7;
  }
  .step-row:not(:last-child)::before {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: -1.25rem;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--teal-light);
    border-right: 1px solid var(--teal-light);
    transform: rotate(45deg);
    opacity: 0.7;
  }
  .step-n {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-teal);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--teal-light) !important;
    padding-top: 0 !important;
    background: rgba(29,158,117,0.06);
  }
  .step-body h3 {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
  }
  .step-body p {
    font-size: 0.84rem;
    line-height: 1.55;
  }
  .products-layout,
  .products-house-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .house-text,
  .product-house-text,
  .house-copy {
    position: static !important;
    transform: none !important;
    margin-top: 1.6rem !important;
    text-align: center !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .house-outline,
  .product-house,
  .products-house {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .all-material-note {
    margin-top: 1.8rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-teal);
    border-radius: 3px;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    background: rgba(29,158,117,0.06);
  }
  @media (max-width: 900px) {
    .steps {
      grid-template-columns: 1fr !important;
    }
    .step-row:not(:last-child)::after,
    .step-row:not(:last-child)::before {
      display: none;
    }
    .step-row {
      min-height: auto;
    }
  }


  /* CLEAN HORIZONTAL PROCESS FLOW */
  .process {
    background: var(--dark2);
  }
  .process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
    margin-top: 3.5rem;
    position: relative;
  }
  .process-flow::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg, rgba(77,191,160,0.15), var(--teal-light), rgba(77,191,160,0.15));
    opacity: 0.9;
  }
  .flow-step {
    position: relative;
    text-align: center;
    z-index: 1;
  }
  .flow-node {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 1px solid var(--teal-light);
    background: radial-gradient(circle at center, rgba(29,158,117,0.22), var(--dark2) 62%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 0 0 9px rgba(29,158,117,0.08), 0 18px 38px rgba(0,0,0,0.22);
  }
  .flow-card {
    min-height: 210px;
    padding: 1.7rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .flow-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-teal);
    box-shadow: 0 24px 54px rgba(29,158,117,0.12);
  }
  .flow-card h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
  }
  .flow-card h3::after {
    content: '';
    display: block;
    width: 38px;
    height: 2px;
    background: var(--teal-light);
    margin: 0.85rem auto 0;
    border-radius: 3px;
  }
  .flow-card p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.65;
    margin-top: 1rem;
  }
  @media (max-width: 1000px) {
    .process-flow {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.2rem 1.4rem;
    }
    .process-flow::before {
      display: none;
    }
  }
  @media (max-width: 620px) {
    .process-flow {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .flow-card {
      min-height: auto;
    }
  }

  
  /* ============================================
   SAFARI BROWSER COMPATIBILITY FIXES
   ============================================ */

/* Fix for all grid gaps */
.grid-fix {
  gap: 0;
}

/* Specific fixes for your sections */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    /* Safari only */
    
    /* Fix spacing in offerings grid */
    .offerings-grid {
      gap: 1px;
      margin: -0.5px;
    }
    
    /* Fix product image grid */
    .product-image-grid {
      gap: 1px;
    }
    
    /* Fix nav links */
    .nav-links {
      gap: 1.5rem;
    }
    
    /* Fix hero vh */
    .hero {
      min-height: -webkit-fill-available;
      padding: 4rem 6vw;
    }
    
    /* Fix card margins */
    .pillar,
    .offer,
    .flow-card,
    .product-image-card {
      margin: 0;
      box-sizing: border-box;
    }
    
    /* Fix contact section spacing */
    .contact-layout {
      gap: 3rem;
    }
    
    /* Fix process flow spacing */
    .process-flow {
      gap: 1rem;
    }
    
    /* Ensure consistent box-sizing */
    * {
      box-sizing: border-box;
    }
  }
}

@media (min-width: 1400px){
    .house-showcase {
position: relative;
display: flex;
align-items: center;
justify-content: center;
top: 30px;
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
}

/* Explicit fallback for legacy WebKit layout engines */
@supports (-webkit-hyphens:none) {
  .nav-links {
    gap: 0 !important; /* Clears conflicting structural engine spacing values */
  }
  .nav-links li:not(:last-child) {
    margin-right: 2.2rem !important; /* Applies native spacing across your elements */
  }
}
  