   :root {
      --orbix-green: #166534;
      --orbix-green-soft: #16a34a;
      --orbix-gold: #fbbf24;
      --orbix-gold-deep: #d97706;
      --orbix-bg-dark: #020617;
      --orbix-bg-light: #f9fafb;
      --text-main: #0f172a;
      --text-muted: #6b7280;
      --border-subtle: rgba(15, 23, 42, 0.08);
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.15);
      --radius-lg: 18px;
      --radius-pill: 999px;
      --transition-fast: 180ms ease-out;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      color: var(--text-main);
      background: radial-gradient(circle at top left, #ecfeff 0, #f9fafb 50%, #020617 140%);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* NAVBAR */
    .nav {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      /* background: linear-gradient(
          to bottom,
          rgba(15, 23, 42, 0.86),
          rgba(15, 23, 42, 0.8),
          rgba(15, 23, 42, 0.6)
        ); */
      border-bottom: 1px solid rgba(148, 163, 184, 0.35);

      /* background: linear-gradient(135deg, #1e293b, #0f172a); */

      /* background: linear-gradient(141deg, #051a4b, #0b1f1a); */
      background: #F4F9F5;
      backdrop-filter: blur(6px);
      /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 1.5rem;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .nav-logo-img {
      width: 100%;
      height: auto;
      max-height: 64px;
      object-fit: contain;
      display: block;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-logo-img:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }

    .nav-title {
      display: flex;
      flex-direction: column;
      gap: 0.05rem;
    }

    .nav-title-main {
      font-size: 1.15rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      color: #e5e7eb;
    }

    .nav-title-sub {
      font-size: 0.7rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #9ca3af;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      font-size: 0.9rem;
      color: #e5e7eb;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.15rem;
      color: #1F3D30;
      font-weight: 600;
      font-size: 15px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(to right, #22c55e, #facc15);
      transition: width var(--transition-fast);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* Adding Keyframes*/

    @keyframes pulseDot {
      0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
      }

      70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
      }
    }

    .btn-pill {

      /* background: linear-gradient(135deg, #84cc16, #22c55e); */
      background: linear-gradient(135deg, #7ED957, #4CAF50);
      /* box-shadow: 0 3px 10px rgba(76, 175, 80, 0.28); */
      box-shadow: 0 10px 24px rgba(67, 196, 99, 0.35);

      /* color: #052e16; */
      color:#0F2F1F;
      border: none;
      padding: 10px 18px;
      border-radius: 999px;
      border-radius: var(--radius-pill);
      padding: 0.55rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 600;
      animation: gradientShift 6s ease infinite;
      background-size: 200% 200%;

      /* border: 1px solid rgba(148, 163, 184, 0.65); */
      /* color: #e5e7eb; */
      /* background: radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 55%); */
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
        border-color var(--transition-fast), background var(--transition-fast);
    }





    /* .btn-pill span.dot {
         width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.32); 

        
      } */

    .btn-pill span.dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #16a34a;
      /* slightly darker green */
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
      animation: pulseDot 2.5s ease-out infinite;

    }

    .btn-pill:hover {
      transform: translateY(-1px);
      border-color: rgba(248, 250, 252, 0.85);
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.55);
      /* background: radial-gradient(circle at top, rgba(148, 163, 184, 0.3), transparent 55%); */
    }

    .nav-toggle {
      display: none;
      cursor: pointer;
      padding: 0.4rem;
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(180deg, #223A35 0%, #1A2F2B 100%);
      /* background: #e5e7eb; */
      margin: 3px 0;
      transition: transform 160ms ease-out, opacity 160ms ease-out;
    }

    .nav-toggle.is-open span:nth-child(1) {
      transform: translateY(5px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
      transform: translateY(-5px) rotate(-45deg);
    }

    .nav-mobile {
      display: none;
      /* background: rgba(15, 23, 42, 0.96); */
      border-top: 2px solid rgba(220, 224, 239, 0.6);
    }

    .nav-mobile-inner {
      padding: 0.75rem 1.5rem 1.1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .nav-mobile a.active {
      background: rgba(76, 175, 114, 0.18);
      color: #A7E8C3;
    }

    .nav-mobile a {
      font-size: 0.9rem;
      color: #1F3D30;
      font-weight: 600;
    }

    /* HERO */
    .hero {
      padding: 4rem 0 3.5rem;
      color: #e5e7eb;
      background: radial-gradient(80% 120% at 20% 0%, rgba(46, 125, 50, 0.35), rgba(6, 30, 24, 0.85)), linear-gradient(90deg, #0E3A2F, #050A18);
      /* background: radial-gradient(circle at 18% 40%, #064e3b 0%, #020617 62%); */
      /* background: radial-gradient(1200px circle at 20% 30%, rgba(34, 197, 94, 0.35), /* green energy  rgba(2, 44, 34, 0.85) 45%, rgba(2, 6, 23, 1) 70%), linear-gradient(135deg, #020617, /* deep navy  #022c22 /* deep green ); */
    }

    .hero::after {
      content: "";
      position: absolute;
      /* inset: 0; */
      background: radial-gradient(circle,
          transparent 50%,
          rgba(0, 0, 0, 0.35) 100%);
      pointer-events: none;
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
      gap: 2.75rem;
      align-items: center;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #a3e635;
      background: rgba(15, 23, 42, 0.8);
      padding: 0.3rem 0.9rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(190, 242, 100, 0.5);
      margin-bottom: 1rem;
    }

    .hero-kicker-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
      animation: livePulse 2.2s infinite;

    }

    .hero-kicker-divider {
      width: 16px;
      height: 1px;
      border-radius: 999px;
      background: rgba(190, 242, 100, 0.6);
    }

    .hero-title {
      font-size: clamp(2.35rem, 4vw, 3rem);
      /* line-height: 1.1; */
      margin-bottom: 1rem;
      line-height: 1.15;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      color: #e5e7eb;
      opacity: 0.9;
      font-weight: 700;
    }

    .hero-title span.highlight {
      background: linear-gradient(to right, #22c55e, #ffc204, #22c55e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 1rem;
      max-width: 32rem;
      color: #cbd5f5;
      margin-bottom: 1.7rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.3rem;
      margin-bottom: 2.1rem;
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.85rem;
      color: #e5e7eb;
    }

    .hero-meta-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid rgba(190, 242, 100, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      background: radial-gradient(circle at top, rgba(34, 197, 94, 0.3), transparent 60%);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
    }

    .btn-primary {
      border-radius: var(--radius-pill);
      padding: 0.8rem 1.7rem;
      font-size: 0.9rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      color: #022c22;
      background-image: linear-gradient(120deg, #22c55e, #ffc204);
      box-shadow: 0 16px 40px rgba(34, 197, 94, 0.6);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
        filter var(--transition-fast);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 55px rgba(34, 197, 94, 0.75);
      filter: brightness(1.04);
    }

    .btn-secondary {
      border-radius: var(--radius-pill);
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
      font-weight: 500;
      border: 1px solid rgba(148, 163, 184, 0.7);
      cursor: pointer;
      color: #e5e7eb;
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.95));
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
        border-color var(--transition-fast), background var(--transition-fast);
    }

    .btn-secondary:hover {
      transform: translateY(-1px);
      border-color: rgba(249, 250, 251, 0.95);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
      background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.7), rgba(15, 23, 42, 0.98));
    }

    .btn-icon {
      width: 30px;
      height: 20px;
      border-radius: 999px;
      /* border: 1px solid rgba(15, 23, 42, 0.1); */
      background: rgba(248, 250, 252, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.7rem;
      align-items: center;
      font-size: 0.85rem;
      color: #9ca3af;
    }

    .hero-trust-pill {
      padding: 0.3rem 0.7rem;
      border-radius: var(--radius-pill);
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(75, 85, 99, 0.9);
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      position: relative;
      border-radius: 26px;
      padding: 1.4rem 1.3rem 1.4rem;
      /* background: radial-gradient(circle at top left, #052e16, #020617); */
      border: 1px solid rgba(21, 128, 61, 0.8);
      /* box-shadow: 0 28px 80px rgba(15, 23, 42, 0.95); */
      overflow: hidden;
      color: #e5e7eb;
      background: radial-gradient(circle at 20% 10%, #063d2a, #020617 70%);
      box-shadow: 0 32px 80px rgba(2, 6, 23, 0.85), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }



    .hero-card-gradient {
      position: absolute;
      inset: -120px;
      background:
        radial-gradient(circle at 0% 0%, rgba(52, 211, 153, 0.22), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(234, 179, 8, 0.28), transparent 60%),
        radial-gradient(circle at 50% 120%, rgba(15, 118, 110, 0.55), transparent 64%);
      opacity: 0.95;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .hero-card-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 1.2rem;
      align-items: center;
    }

    .hero-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.8rem;
    }

    .hero-card-title {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #bbf7d0;
    }

    .hero-card-subtitle {
      font-size: 0.85rem;
    }

    .hero-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.7rem;
      border-radius: var(--radius-pill);
      background: rgba(10, 15, 26, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.7rem;
      color: #e5e7eb;
    }

    .hero-metric-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.1rem;
    }

    .status-dot {

      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 rgba(34, 197, 94, 0.6);
      animation: livePulse 2.2s infinite;

    }

    @keyframes livePulse {
      0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
      }

      70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
      }
    }

    .hero-metric-card {
      border-radius: 16px;
      padding: 0.7rem 0.8rem;
      /* background: rgba(15, 23, 42, 0.8); */
      /* border: 1px solid rgba(148, 163, 184, 0.55); */
      backdrop-filter: blur(10px);
      border: 1px solid rgba(34, 197, 94, 0.6);
      background:
        radial-gradient(circle at top, rgba(34, 197, 94, 0.18), transparent 55%),
        rgba(15, 23, 42, 0.9);
    }

    .hero-metric-label {
      font-size: 12px;
      color: #cbd5f5;
      margin-bottom: 0.3rem;
      text-transform: uppercase;
    }

    .hero-metric-value {
      /* font-size: 1.1rem; */
      /* font-weight: 600; */
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
      margin-top: 1rem;
    }

    .hero-metric-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      margin-top: 0.3rem;
      padding: 0.18rem 0.55rem;
      border-radius: var(--radius-pill);
      font-size: 0.65rem;
      background: rgba(22, 163, 74, 0.15);
      color: #bbf7d0;
    }



    .hero-graph {
      border-radius: 18px;
      padding: 0.8rem 0.85rem;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(56, 189, 248, 0.55);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    }

    .hero-graph-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.7rem;
    }

    .hero-graph-title {
      font-size: 0.75rem;
      color: #e5e7eb;
    }

    .hero-graph-legend {
      display: block;
      gap: 0.55rem;
      font-size: 0.75rem;
    }

    .hero-graph-legend span {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .legend-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
    }

    .legend-dot.green {
      background: #22c55e;
    }

    .legend-dot.gold {
      background: #facc15;
    }

    .hero-graph-bars {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.4rem;
      align-items: flex-end;
      height: 95px;
      margin-bottom: 0.65rem;
    }

    .hero-graph-bar {
      background: linear-gradient(to top, #0f172a, #4ade80);
      border-radius: 999px;
      position: relative;
      overflow: hidden;
    }

    .hero-graph-bar::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, transparent, rgba(250, 250, 250, 0.18));
    }

    .hero-graph-bar.gold {
      background: linear-gradient(to top, #0f172a, #facc15);
    }

    .hero-graph-xaxis {
      display: flex;
      justify-content: space-between;
      font-size: 0.6rem;
      color: #9ca3af;
    }

    .hero-card-footer {
      display: flex;
      align-items: center;
      flex-direction: column;

      justify-content: space-between;
      margin-top: 0.8rem;
      font-size: 0.7rem;
      color: #9ca3af;
    }

    .hero-card-footer span {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .hero-orbit {
      position: absolute;
      inset: -40px;
      border-radius: 999px;
      border: 1px dashed rgba(45, 212, 191, 0.3);
      opacity: 0.4;
      pointer-events: none;
    }

    .hero-orbit-dot {
      position: absolute;
      right: 22%;
      top: 4%;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #fef9c3, #22c55e);
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.9);
      animation: orbit-pulse 4s infinite ease-in-out;
    }

    @keyframes orbit-pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.18);
        opacity: 0.7;
      }
    }

    /* SECTIONS BASE */
    section {
      padding: 3.5rem 0;
    }

    .section-header {
      text-align: left;
      margin-bottom: 2.2rem;
    }

    .section-kicker {
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orbix-green-soft);
      margin-bottom: 0.4rem;
      font-weight: 700;
    }

    .section-title {
      font-size: 1.8rem;
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 34rem;
    }

    /* SERVICES */

    .section-services {
      margin-top: -32px;
      padding-top: 96px;
      padding: 0 !important;
      position: relative;
      background: white;
      /* background: linear-gradient(
    180deg,
    #E7F1EC 0%,
    #F1F7F4 45%,
    #FFFFFF 100%
  ); */
      background: radial-gradient(circle at top left, #ecfdf5, #f9fafb 50%, #eef2ff 110%);
    }

    .services-curve {
      opacity: 0.8;
      overflow: hidden;
      /* background: white; */
      background: radial-gradient(circle at top left, #ecfdf5, #f9fafb 50%, #eef2ff 110%);
    }

    .services-curve::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 48px;

    }



    .section-services::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      /* height: 1px; */
      background: linear-gradient(90deg,
          transparent,
          rgba(46, 125, 50, 0.35),
          transparent);
    }

    .services-carousel {
      position: relative;
      overflow: hidden;
    }

    .services-curve svg {
      opacity: 0.9;
    }

    .services-track {
      --services-per-view: 3;
      display: flex;
      gap: 1.2rem;
      transition: transform var(--transition-fast);
      will-change: transform;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 24px 8px 48px;
    }

    .services-track::-webkit-scrollbar {
      display: none;
    }



    .service-card {
      flex: 0 0 calc((100% - (var(--services-per-view) - 1) * 1.2rem) / var(--services-per-view));
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 1.6rem 1.5rem;
      border: 1px solid var(--border-subtle);
      position: relative;
      overflow: hidden;
      display:flex;
      flex-direction: column;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
        border-color var(--transition-fast), background 220ms ease-out;
      cursor: default;
      min-width: 0;
      min-height: clamp(520px, 52vh, 560px);
      align-items: stretch; 
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), transparent 60%);
      opacity: 0;
      transition: opacity 220ms ease-out;
    }

    .service-card-hover {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at top center, rgba(234, 179, 8, 0.16), transparent 70%);
      opacity: 0;
      transition: opacity 220ms ease-out;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(22, 163, 74, 0.4);
      box-shadow: var(--shadow-soft);
      background: linear-gradient(145deg, #ffffff, #f7fee7);
    }


    .service-card:hover .service-tag {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 107, 78, 0.35);
}

    .service-card.is-active {
      /* background: linear-gradient(135deg, #F0FBF4, #E6F6ED);
  border: 1px solid rgba(46, 125, 50, 0.28);*/
      transform: scale(1.04);
      border: 1px solid rgba(82, 183, 136, 0.45);
      box-shadow:
        0 0 0 6px rgba(82, 183, 136, 0.08),
        0 20px 45px rgba(0, 0, 0, 0.1);
    }


    .service-card:hover::before,
    .service-card:hover .service-card-hover {
      opacity: 1;
    }

    .service-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;

      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #F1F0F7, #E6E4F0);



      /* background: linear-gradient(135deg, #E6F7EF, #CFF0DE); */
      color: #155E43;
      /* darker than current */

      box-shadow: 0 6px 14px rgba(30, 111, 78, 0.18);
      margin-bottom: 1rem;
    }

    .service-icon svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .service-card:hover.service-icon {
      color: #0E3A2F;
      box-shadow:
        0 10px 26px rgba(82, 183, 136, 0.45);
    }

    .service-title {
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
    }

    .service-description {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
    }

    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      font-size: 0.85rem;
      color: #4b5563;
    }

    .service-list li {
      display: flex;
      gap: 0.4rem;
    }

    .service-list-bullet {
      margin-top: 0.3rem;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #fef9c3, #22c55e);
      flex-shrink: 0;
    }

    .service-footer {
      margin-top: auto;
      font-size: 0.9rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.9rem
    }

    .service-tag {
      padding: 6px 10px;
      border-radius: var(--radius-pill);
       /* background-color: #ECF7F1;  */
    background: linear-gradient(
    135deg,
    #EEF9F2,
    #F4FBEF,
    #EEF9F2
  );
      color: #2F6F57;
      white-space: nowrap;
      cursor: default;
      font-weight: 500; 
      background-size: 300% 300%;
      border: 1px solid #CFE8DC;
      background: linear-gradient(
    135deg,
    #EEF9F2,
    #F4FBEF
  );
      animation: gradientShift 10s linear infinite;

  }


  

  @keyframes lightSweep {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

  @keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


    .service-link {
      font-size: 0.78rem;
      color: #047857;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .services-controls {
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .services-nav-group {
      display: inline-flex;
      gap: 0.5rem;
    }

    .services-nav {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid var(--border-subtle);
      background: #ffffff;
      color: var(--text-default);
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
        border-color var(--transition-fast), background 220ms ease-out;
    }

    .services-nav:hover:not(:disabled) {
      transform: translateY(-2px);
      border-color: rgba(22, 163, 74, 0.5);
      box-shadow: var(--shadow-soft);
      background: linear-gradient(145deg, #ffffff, #f0fdf4);
    }

    .services-nav:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      box-shadow: none;
    }

    .services-dots {
      display: inline-flex;
      gap: 0.5rem;
    }

    .services-dot {

      border: none;
      padding: 0;

      width: 6px;
      height: 6px;
      background: #B7D9C9;
      border-radius: 50%;
      margin-top: 8px;
      flex-shrink: 0;
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .services-dot.is-active {
      background: linear-gradient(135deg, var(--orbix-green), #a3e635);
      transform: scale(1.1);
    }

    /* WHY CHOOSE US */
    .section-why {
      background: radial-gradient(circle at top right, #fef9c3, #f8fafc 50%, #e0f2fe 120%);
    }

    .why-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
      gap: 2.2rem;
      align-items: center;
    }

    .why-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.3rem 0.7rem;
      border-radius: var(--radius-pill);
      background: rgba(22, 163, 74, 0.09);
      border: 1px solid rgba(22, 163, 74, 0.25);
      font-size: 1rem;
      color: #166534;
      text-transform: capitalize;
      font-weight: 500;
      margin-bottom: 0.6rem;
    }

    .why-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.1rem 1.4rem;
      margin-top: 1.4rem;
    }

    .why-item {
      background: #ffffff;
      border-radius: 16px;
      padding: 1rem 1rem 0.95rem;
      border: 1px solid rgba(148, 163, 184, 0.45);
      box-shadow: 0 12px 30px rgba(148, 163, 184, 0.25);
    }

    .why-icon {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 0 0, #fef9c3, #f97316);
      color: #7c2d12;
      font-size: 0.9rem;
      margin-bottom: 0.4rem;
    }

    .why-item-title {
      font-size: 0.98rem;
      margin-bottom: 0.25rem;
      font-weight: 600;
    }

    .why-item-text {
      font-size: 0.85rem;
      color: #4b5563;
    }

    .why-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .why-metric {
      border-radius: 14px;
      padding: 0.85rem 1rem;
      background: #020617;
      color: #e5e7eb;
      border: 1px solid rgba(15, 23, 42, 0.9);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
    }

    .why-metric strong {
      font-size: 1.2rem;
    }

    .why-metric span {
      display: block;
      font-size: 0.75rem;
      color: #9ca3af;
    }

    /* ABOUT */
    .section-about {
      background: #020617;
      color: #e5e7eb;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
      gap: 2.2rem;
      align-items: flex-start;
    }

    .about-text p {
      font-size: 0.95rem;
      color: #e5e7eb;
      margin-bottom: 0.9rem;
    }

    .about-text p.muted {
      color: #9ca3af;
    }

    .about-mission {
      margin-top: 1.2rem;
      border-radius: 18px;
      padding: 1.1rem 1.1rem 1.1rem;
      background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 0.98));
      border: 1px solid rgba(22, 163, 74, 0.7);
      box-shadow: 0 22px 60px rgba(4, 7, 20, 0.9);
    }

    .about-mission-title {
      font-size: 0.9rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #bbf7d0;
      margin-bottom: 0.4rem;
    }

    .about-mission p {
      font-size: 0.9rem;
      color: #e5e7eb;
    }

    .about-points {
      margin-top: 1.2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .about-pill {
      padding: 0.3rem 0.75rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.7);
      font-size: 0.78rem;
      color: #e5e7eb;
    }

    .about-panel {
      border-radius: 18px;
      padding: 1.1rem 1.1rem 1.2rem;
      background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.28), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(14, 165, 233, 0.32), #020617 68%);
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: 0 22px 60px rgba(4, 7, 20, 0.9);
      position: relative;
      overflow: hidden;
    }

    .about-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.7rem;
      font-size: 0.8rem;
    }

    .about-panel-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-bottom: 0.8rem;
    }

    .about-panel-pill {
      padding: 0.18rem 0.55rem;
      border-radius: var(--radius-pill);
      background: rgba(15, 23, 42, 0.75);
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.7rem;
    }

    .about-panel-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.6rem;
      font-size: 0.78rem;
      color: #e5e7eb;
    }

    .about-panel-col span.label {
      font-size: 0.7rem;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .about-panel-col strong {
      display: block;
      margin-top: 0.2rem;
    }

    /* CTA / CONTACT */
    .section-cta {
      background: radial-gradient(circle at top, #ecfdf5, #f9fafb 55%, #dbeafe 120%);
    }

    .cta-shell {
      border-radius: 24px;
      padding: 2.2rem 2rem;
      background: linear-gradient(135deg, #022c22, #111827 55%, #1e293b 110%);
      color: #e5e7eb;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
      gap: 2rem;
      align-items: center;
      box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(34, 197, 94, 0.5);
      position: relative;
      overflow: hidden;
    }

    .cta-shell::before {
      content: "";
      position: absolute;
      inset: -120px;
      background:
        radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.25), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(250, 204, 21, 0.25), transparent 55%),
        radial-gradient(circle at 50% 110%, rgba(6, 182, 212, 0.5), transparent 60%);
      opacity: 0.9;
      mix-blend-mode: screen;
    }

    .cta-left,
    .cta-right {
      position: relative;
    }

    .cta-kicker {
      font-size: 1rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #a3e635;
      margin-bottom: 0.5rem;
    }

    .cta-title {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }

    .cta-text {
      font-size: 0.95rem;
      color: #e5e7eb;
      margin-bottom: 1.2rem;
      max-width: 25rem;
    }

    .cta-points {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .cta-point {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      padding: 0.25rem 0.7rem;
      border-radius: var(--radius-pill);
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .cta-point span.dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .cta-form {
      background: rgba(15, 23, 42, 0.95);
      border-radius: 18px;
      padding: 1.3rem 1.2rem 1.3rem;
      border: 1px solid rgba(148, 163, 184, 0.8);
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
    }

    .cta-form-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.9rem;
      font-size: 0.82rem;
      color: #e5e7eb;
    }

    .cta-form-badge {
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-pill);
      font-size: 0.7rem;
      background: rgba(34, 197, 94, 0.15);
      color: #bbf7d0;
      border: 1px solid rgba(34, 197, 94, 0.5);
    }

    .form-group {
      margin-bottom: 0.7rem;
    }

    .form-label {
      display: block;
      font-size: 0.8rem;
      color: #cbd5f5;
      margin-bottom: 0.2rem;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      border-radius: 12px;
      padding: 0.55rem 0.7rem;
      border: 1px solid rgba(51, 65, 85, 0.9);
      background: rgba(15, 23, 42, 0.96);
      color: #e5e7eb;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 150ms ease-out, box-shadow 150ms ease-out,
        background 150ms ease-out;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: rgba(34, 197, 94, 0.9);
      box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.6);
      background: rgba(15, 23, 42, 0.98);
    }

    .form-textarea {
      min-height: 80px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.6rem;
    }

    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      margin-top: 0.8rem;
    }

    .form-hint {
      font-size: 0.7rem;
      color: #9ca3af;
    }

    .form-submit {
      border-radius: var(--radius-pill);
      padding: 0.75rem 2.2rem;
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      color: #022c22;
      background-image: linear-gradient(120deg, #22c55e,#ffc204);
      box-shadow: 0 8px 24px rgba(34, 197, 94, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
      /* box-shadow: 0 16px 40px rgba(34, 197, 94, 0.65); */
      /* display: inline-flex; */
      /* align-items: center; */
      width: 100%;
      gap: 1.4rem;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
        filter var(--transition-fast);
    }

    .form-submit div {
      color: #06281E
    }

    button.is-loading {
      opacity: 0.7;
      pointer-events: none;
    }

    button.is-loading::after {
      content: '…';
      animation: dots 1.4s infinite;
    }

    @keyframes dots {
      0% {
        content: '.';
      }

      33% {
        content: '..';
      }

      66% {
        content: '...';
      }
    }



    .form-submit span {
      color: #06281E;
      animation: btn-pulse 2.8s ease-in-out infinite;

    }

    @keyframes btn-pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(34, 197, 94, 0.8);
      }

      70% {
        transform: scale(1.05);
        box-shadow: 0 0 14px rgba(34, 197, 94, 0.10);
      }

      100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(34, 197, 94, 0);
      }
    }


    .loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #020617;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Button loading state */
.submit-btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .loader {
  display: inline-block;
}






    .form-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 55px rgba(34, 197, 94, 0.8);
      filter: brightness(1.05);
    }

    .form-error {
      font-size: 0.75rem;
      color: #fecaca;
      margin-top: 0.2rem;
      display: none;
    }

    .form-success {
      margin-top: 0.6rem;
      font-size: 0.78rem;
      color: #bbf7d0;
      display: none;
    }

    .form-input.invalid,
    .form-textarea.invalid {
      border-color: #f97373;
    }

    /* FOOTER */
    footer {
      background: #020617;
      color: #9ca3af;
      padding: 2.3rem 0 1.6rem;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
    }

    .footer-top {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.9fr));
      gap: 1.8rem;
      margin-bottom: 1.6rem;
    }

    .footer-brand-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #e5e7eb;
      margin-bottom: 0.3rem;
    }

    .footer-brand-text {
      font-size: 0.8rem;
    }

    .footer-heading {
      font-size: 0.83rem;
      font-weight: 600;
      color: #e5e7eb;
      margin-bottom: 0.4rem;
    }

    .footer-links {
      list-style: none;
      font-size: 0.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .footer-links a {
      color: #9ca3af;
    }

    .footer-links a:hover {
      color: #e5e7eb;
    }

    .footer-social {
      display: flex;
      gap: 0.5rem;
      margin-top: 0.3rem;
    }

    .footer-social a {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: #e5e7eb;
    }

    .footer-social a:hover {
      background: rgba(15, 23, 42, 0.9);
    }

    .footer-bottom {
      border-top: 1px solid rgba(15, 23, 42, 0.9);
      padding-top: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 1rem;
    }

    .footer-bottom-links a:hover {
      color: #e5e7eb;
    }

    /* ANIMATIONS ON SCROLL */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 450ms ease-out, transform 450ms ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal.delay-1 {
      transition-delay: 80ms;
    }

    .reveal.delay-2 {
      transition-delay: 150ms;
    }

    .reveal.delay-3 {
      transition-delay: 230ms;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {

      .hero-layout,
      .why-layout,
      .about-grid,
      .cta-shell {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-right {
        order: -0;
      }

      .hero-kicker{
        font-size: 0.45rem;
      }

      .hero-kicker-divider {
            width: 6px;
      }

      .hero {
        padding: 2.1rem 0 3rem;
      }
    }

    @media (max-width: 768px) {
      .nav-inner {
        padding-inline: 1.1rem;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: block;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        border: none;
        transition: background 0.2s ease, transform 0.15s ease;
      }

      .nav-mobile.is-open {
        display: block;
      }

      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .why-list {
        grid-template-columns: minmax(0, 1fr);
      }

      .why-metrics {
        grid-template-columns: minmax(0, 1fr);
      }

      .footer-top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }

      .cta-shell {
        padding: 1.7rem 1.5rem;
      }

      .hero-card-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 1100px) {
      .services-track {
        --services-per-view: 2;
      }
    }

    @media (max-width: 720px) {
      .services-track {
        --services-per-view: 1;
      }

      .services-controls {
        /* flex-direction: column; */
        align-items: flex-start;
      }
    }
    @media (max-width: 600px) {
      .footer-top {
        grid-template-columns: minmax(0, 1fr);
      }

      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .form-footer {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }