.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo strong {
  color: var(--green);
  font-weight: 700;
}

.logo-mark {
    width: 187px;
    height: 75px;
    border: 1.5px solid #3cb85c00;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: #ffffff00;
}

.logo-mark img {
    width: 79%;
    height: 105%;
    object-fit: cover;
    padding: 3px;

}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
    border-bottom: 1px solid #20342a;
    background-color: #0b66390f;
}
 .nav-links a:hover, .nav-links a.active {
      color: var(--green);
    }
    /* Mobile menu button – visible only on small screens */
.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--green);
  z-index: 250;
}

/* Navigation links container (hidden by default on mobile) */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  transition: all 0.3s ease;
}

/* Responsive behaviour */
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 76px);
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1rem;
    border-right: 1px solid var(--border);
    transition: left 0.3s ease;
    z-index: 200;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  /* Overlay when menu is open (optional) */
  .nav-overlay {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background: rgba(0,0,0,0.7);
    z-index: 150;
    display: none;
  }
  .nav-overlay.active {
    display: block;
  }

  /* Adjust dropdown for mobile */
  .dropdown {
    width: 100%;
    position: relative;
  }

  .dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: var(--surface-2);
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    width: 100%;
  }

  .dropdown-content a {
    padding: 8px 16px;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}
 /* About, Industries, Features, Partners, Footer - same as original, concise */
  .about { padding: 8rem 0; background: var(--surface); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
  .about-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--surface-2);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-img-inner { text-align: center; }
  .about-img-icon {
    width: 76px; height: 76px;
    border: 1px solid var(--green);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
  }
  .about-img-icon svg { width: 34px; height: 34px; stroke: var(--green); fill: none; stroke-width: 1; }
  .about-corner {
    position: absolute;
    bottom: -1px; right: -1px;
    width: 115px;
    background: var(--green);
    padding: 16px 18px;
  }
  .about-corner-num { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 600; color: var(--black); }
  .about-corner-label { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
  .about-body { font-size: 0.95rem; color: var(--text-muted); margin-top: 1.4rem; line-height: 1.9; }
  .gold-divider { width: 56px; height: 1px; background: var(--green); margin: 1rem 0 2rem; }
  .pillars { border: 1px solid var(--border); }
  .pillar {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.3rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }
  .pillar:last-child { border-bottom: none; }
  .pillar-dot { width: 6px; height: 6px; background: var(--green); flex-shrink: 0; }
  .pillar-text { font-size: 0.83rem; font-weight: 500; letter-spacing: 0.03em; }
  .industries { padding: 8rem 0; }
  .industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .industry-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.6rem 2rem;
    transition: border-color 0.4s;
  }
  .industry-card:hover { border-color: var(--green); }
  .ind-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    margin-bottom: 1.6rem;
  }
  .ind-icon svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.3; }
  .ind-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 0.8rem; }
  .ind-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.8; }
  .features { padding: 8rem 0; background: var(--surface); }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); background: var(--border); margin-top: 4rem; }
  .feature-item { background: var(--surface); padding: 2.6rem 2rem; transition: background 0.3s; }
  .feature-item:hover { background: var(--surface-2); }
  .feature-num { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--green-dim); letter-spacing: 0.1em; margin-bottom: 0.9rem; }
  .feature-title { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.7rem; }
  .feature-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; }
  .partners { padding: 6rem 0; }
  .partners-row { display: flex; gap: 0; border: 1px solid var(--border); overflow: hidden; margin-top: 3rem; }
  .partner-item { flex: 1; padding: 2rem; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border); transition: background 0.3s; }
  .partner-item:last-child { border-right: none; }
  .partner-name { font-family: 'Syne', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); text-align: center; }
  .partner-item:hover .partner-name { color: var(--green); }
  .cta { padding: 10rem 0; text-align: center; position: relative; overflow: hidden; }
  .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.4rem; }
  .cta-title em { font-style: italic; color: var(--green); }
  .cta-sub { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 0 auto 2.8rem; }
  footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 5rem 5vw 3rem;
    position: relative;
    z-index: 1;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.3rem; }
  .footer-brand-tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 1.1rem; }
  .footer-brand-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; max-width: 270px; }
  .footer-col-title { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.3rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.83rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--green); }
  .footer-bottom {
    max-width: 1300px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .footer-copy { font-size: 0.76rem; color: var(--text-dim); }
  .footer-legal { display: flex; gap: 2rem; }
  .footer-legal a { font-size: 0.74rem; color: var(--text-dim); text-decoration: none; }
  .footer-legal a:hover { color: var(--green); }

  /* Animations */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
  @keyframes rotateBadge { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  @media (max-width: 1100px) {
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .industries-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .partners-row { flex-wrap: wrap; }
    .partner-item { flex: none; width: 50%; border-bottom: 1px solid var(--border); }
    .solutions-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-bg-reset { right: calc(5vw + 160px); }
  }