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

      :root {
        --navy: #000000;
        --navy2: #050910;
        --navy3: #111e35;
        --teal: #42cdf6;
        --teal2: #09a896;
        --blue: #2b7fff;
        --blue2: #1a5bd4;
        --white: #f0f4ff;
        --muted: #8896b3;
        --border: rgba(46, 80, 140, 0.35);
        --glow: 0 0 40px rgba(14, 205, 184, 0.12);
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Poppins", sans-serif;
        background: var(--navy);
        color: var(--white);
        overflow-x: hidden;
        line-height: 1.7;
        font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      text-align: left;
      overflow-x: hidden;
        scrollbar-width: none; /* For Firefox */
        -ms-overflow-style: none; /* For Internet Explorer and Edge */
        background-color: #000;
      }

      /* ── GRID BACKGROUND ── */
      body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image:
          linear-gradient(rgba(43, 127, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(43, 127, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 0;
      }

      /* ── NAV ── */
   /* General Styles */

  
  @keyframes animate
  {
    0%{
        opacity: 1;
        transform: translate(0, 0);
    }
    20% {
      opacity: 0.01;  /* Fade out quickly within first 20% of animation */
  }
    100%{
        opacity: 0;
        transform: translate(var(--x), var(--y));
    }
  }
  @media (max-width: 768px) {
    html {
      overflow-x: hidden;  /* Prevent horizontal scrolling */
      margin: 0;
      padding: 0;
      max-width: 100%;
  }
  }
  body::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }
      
  .navbar {
    transition: background-color 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.904);
    color: white; /* Text color if needed */
  }
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  .grid {
    display: grid;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  
  .gap-12 {
    gap: 3rem;
  }
  
  .pt-32 {
    padding-top: 8rem;
  }
  
  .pb-12 {
    padding-bottom: 3rem;
  }
  
  .items-center {
    align-items: center;
  }
  /* General styles nav */
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 50;
  }
  
  .container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
  }


  /* logo */
  .logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 150px; /* Adjust based on your logo */
    width: auto;
}

.logo-main {
    height: 150px;
    display: block;
    margin-top: 3px;
    margin-left: 65px;
}
.logo-container img {
  max-width: none !important; /* prevents Tailwind from shrinking the image */
  height: 150px !important; /* keeps fixed height */
  width: auto !important; /* keeps proportions */
}
.logo-left,
.logo-bottom {
    position: absolute;
    height: 150px;
    opacity: 0; /* Hide initially */
    transition: all 0.8s ease-in-out; 
}

/* Bottom Image */
.logo-bottom {
    left: 65px;
    top: 100%;
    margin-top: 23px;
    transition: all 0.7s ease-in-out; 
}

/* Left Image */
.logo-left {
    left: -10%;
    top: 5px;
    margin-left: -50px;
}

/* Hover Effect */

.logo-container:hover .logo-bottom {
    top: 0;
    opacity: 1;
}

.logo-container:hover .logo-left {
    left: 0;
    opacity: 1;
}

@media (max-width: 768px) {
  .logo-container {
    margin-left: -70px;
  }
}


  
  .nav-links {
    display: flex;
    gap: 2.5rem;
    margin-right: 330px;
    align-items: center;
    
  }
  .nav-ser{
    gap: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
  }

  .nav-ser:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  .dropdown-icon {
    font-size: 1rem; /* Adjust icon size */
    transition: transform 0.3s;
    margin-left: -5px;
  }
  .nav-ser:hover {
    color: #4299e6;
  }
  
  /* Rotate icon when hovered */
  
  /* Dropdown styles */
  .nav-item {
    position: relative;
  }


  .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 100%;
  transform: translateX(-50%);
  width: 820px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(55, 157, 194, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-radius: 18px;
  display: flex;
  padding: 30px;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 110%;
}

  .dropdown-left {
    width: 40%;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.08);
    margin-left: 20px;
    text-align: left;
    color: #4299e6;
    font-size: 20px;
  }
  
  .industries-list {
    list-style: none; /* Removes bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    text-align: left; /* Ensures left alignment */
    margin-bottom: 10px;
    color: white;
    font-size: 17px;
  }
  .in{
    color: white;
    cursor: default;
    text-decoration: none;
  }
  .in:hover{
color: #4299e6;
  }
  

  .dropdown-right {
    width: 60%;
    padding: 10px;
  }
  

  /* 2x2 Services Grid Layout */
 .service-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;

}

.dropdown-link.half {
  width: 98%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
  color: white;
}

.dropdown-link.half:hover {
  background: rgba(66, 153, 230, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(66, 153, 230, 0.25);
  border-color: rgba(66, 153, 230, 0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

  @media (max-width: 768px) {
    .service-row {
      flex-direction: column;
      gap: 16px;
    }

    .dropdown-link.half {
      width: 100%;
    }
  }
  .servic{
    text-align: left;
    color: #4299e6; 
    font-size: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
  }
  .service-content {
  text-align: left;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-content strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.service-content p {
  font-size: 11px;
  color: #9ca3af;
  margin: 0;
}
  

  .partners-button {
    display: block;
    margin-top: 15px;
    text-align: left;
    color:#4299e6;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    margin-left: -8px;
   
  }

  .partners-button:hover {
    background: #2f2e2e;
  }

  .nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #4299e6;
  }
  
  .btn {
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  
  .btn:hover {
    background-color: rgba(51, 51, 51, 0.9);
  }
  
  /* Mobile menu styles */
  .mobile-only {
    display: none;
  }
  
  .menu-button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-icon {
    width: 24px;
    height: 24px;
    color: #333333;
    transition: color 0.3s;
  }
  
  .menu-icon:hover {
    color: #4299e6;
  }
  
  .mobile-menu {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .mobile-nav-link {
    display: block;
    color: #333333;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
  }
  
  .mobile-nav-link:hover {
    color: #4299e6;
  }
  
  .hidden {
    display: none;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
  
    .mobile-only {
      display: block;
    }
  }





      /* ── HERO ── */
      .hero {
        position: relative;
        z-index: 1;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 5% 80px;
        overflow: hidden;
      }

      .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        pointer-events: none;
      }
      .orb1 {
        width: 600px;
        height: 600px;
        background: rgba(43, 127, 255, 0.12);
        top: -100px;
        right: -100px;
      }
      .orb2 {
        width: 400px;
        height: 400px;
        background: rgba(14, 205, 184, 0.09);
        bottom: 0;
        left: 20%;
      }

      .hero-tag {
        font-family: "Poppins", monospace;
        font-size: 0.78rem;
        color: var(--teal);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
      }
      .hero-tag::before {
        content: "";
        display: block;
        width: 32px;
        height: 1px;
        background: var(--teal);
      }

      .hero h1 {
        font-family: "Poppins", sans-serif;
        font-size: clamp(2.8rem, 6vw, 5.2rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.02em;
        max-width: 820px;
        margin-bottom: 1.5rem;
        text-align: left;
      }
      .hero h1 .accent {
        color: var(--teal);
      }

      .hero-sub {
        font-size: 1.12rem;
        font-weight: 300;
        color: var(--muted);
        max-width: 600px;
        margin-bottom: 2.5rem;
        line-height: 1.75;
      }

      .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-bottom: 3rem;
      }
      .badge {
        font-family: "Poppins", monospace;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        padding: 0.35rem 0.85rem;
        border-radius: 3px;
        border: 1px solid var(--border);
        color: var(--muted);
        background: rgba(255, 255, 255, 0.02);
      }

      .hero-ctas {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .btn-primary {
        font-family: "Poppins", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        background: var(--teal);
        color: var(--navy);
        padding: 0.85rem 2rem;
        border-radius: 4px;
        text-decoration: none;
        transition:
          background 0.25s,
          transform 0.2s,
          box-shadow 0.25s;
      }
      .btn-primary:hover {
        background: #0ff5de;
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(14, 205, 184, 0.25);
      }
      .btn-outline {
        font-family: "Poppins", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        border: 1px solid var(--border);
        color: var(--white);
        padding: 0.85rem 2rem;
        border-radius: 4px;
        text-decoration: none;
        transition:
          border-color 0.25s,
          color 0.25s;
      }
      .btn-outline:hover {
        border-color: var(--teal);
        color: var(--teal);
      }

      /* ── STATS BAR ── */
      .stats-bar {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: var(--navy2);
      }
      .stat {
        padding: 2rem 2.5rem;
        border-right: 1px solid var(--border);
      }
      .stat:last-child {
        border-right: none;
      }
      .stat-num {
        font-family: "Poppins", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--teal);
        line-height: 1;
        margin-bottom: 0.4rem;
      }
      .stat-label {
        font-size: 0.82rem;
        color: var(--muted);
        font-weight: 300;
        letter-spacing: 0.04em;
      }

      /* ── SECTIONS ── */
      section {
        position: relative;
        z-index: 1;
        padding: 100px 5%;
      }

      .section-tag {
        font-family: "Poppins", monospace;
        font-size: 0.72rem;
        color: var(--teal);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.7rem;
      }
      .section-tag::before {
        content: "";
        display: block;
        width: 24px;
        height: 1px;
        background: var(--teal);
      }

      .section-title {
        font-family: "Poppins", sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin-bottom: 1rem;
      }

      .section-desc {
        font-size: 1rem;
        color: var(--muted);
        max-width: 620px;
        font-weight: 300;
        margin-bottom: 4rem;
      }

      /* ── SERVICES GRID ── */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
      }

      .service-card {
        background: linear-gradient(145deg, var(--navy2), #0a1424);
        padding: 2.4rem;
        position: relative;
        transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
      }

      .service-card:hover {
        transform: translateY(-6px);
        background: linear-gradient(145deg, var(--navy3), #0d1a30);
        box-shadow: 0 18px 45px rgba(0,0,0,0.45);
      }


      .service-logo {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: rgba(14,205,184,0.08);
        border: 1px solid rgba(14,205,184,0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        transition: transform 0.3s ease, background 0.3s ease;
      }

      .service-card:hover .service-logo {
        transform: scale(1.08);
        background: rgba(14,205,184,0.15);
      }

      .service-logo img {
        width: 36px;
        height: 46px;
        object-fit: contain;
      }

      .service-title {
        font-family: "Poppins", sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 0.6rem;
        letter-spacing: 0.02em;
        color: var(--white);
      }

      .service-tagline {
        font-size: 0.85rem;
        color: var(--teal);
        font-style: italic;
        margin-bottom: 1.2rem;
        font-weight: 300;
      }

      .service-bullets {
        list-style: none;
        margin-bottom: 1.5rem;
      }
      .service-bullets li {
        font-size: 0.9rem;
        color: var(--muted);
        padding: 0.3rem 0;
        padding-left: 1.2rem;
        position: relative;
        font-weight: 300;
        line-height: 1.5;
      }
      .service-bullets li::before {
        content: "›";
        position: absolute;
        left: 0;
        color: #42cdf6;
        font-weight: 600;
      }

.service-platforms {
  font-family: "Poppins", monospace;
  font-size: 0.7rem;
  color: rgba(66, 205, 246, 0.85);
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  letter-spacing: 0.03em;
}
.service-platforms strong {
  color: #42cdf6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.3rem;
}

      /* ── TECH MATRIX ── */
      #tech {
        background: var(--navy2);
      }

      .tech-grid {
        display: grid;
        gap: 0;
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
      }
      .tech-row {
        display: grid;
        grid-template-columns: 220px 1fr;
        border-bottom: 1px solid var(--border);
        transition: background 0.25s;
      }
      .tech-row:last-child {
        border-bottom: none;
      }
      .tech-row:hover {
        background: rgba(14, 205, 184, 0.03);
      }
      .tech-label {
        font-family: "Poppins", sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--teal);
        padding: 1.1rem 1.5rem;
        border-right: 1px solid var(--border);
        display: flex;
        align-items: center;
        letter-spacing: 0.03em;
        background: rgba(14, 205, 184, 0.03);
      }
      .tech-values {
        font-family: "Poppins", monospace;
        font-size: 0.78rem;
        color: var(--muted);
        padding: 1.1rem 1.5rem;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        letter-spacing: 0.02em;
        line-height: 1.6;
      }
      .tech-chip {
        display: inline-block;
        background: rgba(43, 127, 255, 0.08);
        border: 1px solid rgba(43, 127, 255, 0.2);
        border-radius: 3px;
        padding: 0.15rem 0.6rem;
        font-size: 0.72rem;
        color: rgba(160, 190, 255, 0.85);
        white-space: nowrap;
        transition:
          background 0.2s,
          border-color 0.2s;
      }
      .tech-row:hover .tech-chip {
        background: rgba(43, 127, 255, 0.12);
        border-color: rgba(43, 127, 255, 0.35);
      }

      /* ── MARKETS ── */
      .markets-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
      .market-card {
        background: var(--navy2);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 2rem;
        transition:
          border-color 0.3s,
          transform 0.3s,
          box-shadow 0.3s;
      }
      .market-card:hover {
        border-color: rgba(14, 205, 184, 0.4);
        transform: translateY(-4px);
        box-shadow: var(--glow);
      }
      .market-flag {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        display: block;
      }
      .market-name {
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
        color: var(--white);
      }
      .market-desc {
        font-size: 0.84rem;
        color: var(--muted);
        font-weight: 300;
        line-height: 1.65;
      }

      /* ── WHY ── */
      #why {
        background: var(--navy2);
      }

      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
      }
      .why-card {
        background: var(--navy2);
        padding: 2.2rem;
        transition: background 0.3s;
      }
      .why-card:hover {
        background: var(--navy3);
      }
      .why-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: rgba(14, 205, 184, 0.1);
        border: 1px solid rgba(14, 205, 184, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
      }
      .why-title {
        font-family: "Poppins", sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.6rem;
        color: var(--white);
      }
      .why-desc {
        font-size: 0.86rem;
        color: var(--muted);
        font-weight: 300;
        line-height: 1.65;
      }


/* ── VIDEO SECTION ── */
.video-section {
  text-align: center;
  padding: 80px 5%;
}

.video-section .section-title {
  margin-bottom: 1rem;
}

.video-section .section-desc {
  margin: 0 auto 40px;
}

.video-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .video-wrapper {
    width: 95%;
  }

  .video-wrapper iframe {
    height: 240px;
  }
}

      /* ── CTA SECTION ── */
      .cta-section {
        position: relative;
        z-index: 1;
        padding: 100px 5%;
        overflow: hidden;
        text-align: center;
      }
      .cta-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          var(--navy2) 0%,
          rgba(14, 205, 184, 0.06) 50%,
          var(--navy2) 100%
        );
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      .cta-content {
        position: relative;
        z-index: 1;
      }
      .cta-title {
        font-family: "Poppins", sans-serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
      }
      .cta-title .accent {
        color: var(--teal);
      }
      .cta-sub {
        font-size: 1rem;
        color: var(--muted);
        max-width: 500px;
        margin: 0 auto 2.5rem;
        font-weight: 300;
      }
      .cta-contact {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .contact-pill {
        font-family: "Poppins", monospace;
        font-size: 0.82rem;
        padding: 0.6rem 1.4rem;
        border-radius: 4px;
        border: 1px solid var(--border);
        color: var(--muted);
        background: rgba(255, 255, 255, 0.02);
        text-decoration: none;
        transition:
          border-color 0.25s,
          color 0.25s;
      }
      .contact-pill:hover {
        border-color: var(--teal);
        color: var(--teal);
      }
      .contact-pill.primary {
        background: var(--teal);
        color: var(--navy);
        border-color: var(--teal);
        font-weight: 500;
      }
      .contact-pill.primary:hover {
        background: #0ff5de;
        color: var(--navy);
      }

      /* ── FOOTER ── */
      footer {
        position: relative;
        z-index: 1;
        padding: 3rem 5%;
        border-top: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
      }
      .footer-logo {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 1.1rem;
        letter-spacing: 0.08em;
        color: var(--white);
      }
      .footer-logo span {
        color: var(--teal);
      }
      .footer-tagline {
        font-size: 0.82rem;
        color: var(--muted);
        font-style: italic;
        font-weight: 300;
      }
      .footer-links {
        display: flex;
        gap: 2rem;
        list-style: none;
      }
      .footer-links a {
        font-size: 0.8rem;
        color: var(--muted);
        text-decoration: none;
        letter-spacing: 0.04em;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--teal);
      }

      /* ── ANIMATIONS ── */
      .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── SCROLLBAR ── */
      ::-webkit-scrollbar {
        width: 6px;
      }
      ::-webkit-scrollbar-track {
        background: var(--navy);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 3px;
      }
      ::-webkit-scrollbar-thumb:hover {
        background: var(--teal2);
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        .services-grid {
          grid-template-columns: 1fr;
        }
        .markets-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .stats-bar {
          grid-template-columns: repeat(2, 1fr);
        }
        .stat {
          border-bottom: 1px solid var(--border);
        }
        .nav-links {
          display: none;
        }
        .tech-row {
          grid-template-columns: 1fr;
        }
        .tech-label {
          border-right: none;
          border-bottom: 1px solid var(--border);
        }
      }
      @media (max-width: 600px) {
        .markets-grid {
          grid-template-columns: 1fr;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .stats-bar {
          grid-template-columns: repeat(2, 1fr);
        }
      }
  