:root {
    --black: #030507;
    --white: #f0f2f5;
    --offwhite: #e8e9eb;
    --acid: #31ada7;
    --cyan: #e9ecec;
    --blue:#31ada7;
    --green:#3f9e46;
    --mid: #1a1e23f9e464;
    --border: rgba(255,255,255,0.07);
    --border1: rgba(0,0,0,0.07);
    --glass: rgba(255,255,255,0.04);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  .c_blue {color: var(--blue);}
  .underline {text-decoration: underline;}

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  /* .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, background 0.2s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(49,173,167,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.15s ease;
    mix-blend-mode: difference;
  } */
   /* Core cursor dot */
/* Main cursor (arrow style) */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 25% 50%);
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: 
    transform 0.2s ease,
    width 0.25s ease,
    height 0.25s ease,
    border-radius 0.25s ease,
    background 0.25s ease;
  mix-blend-mode: difference;
}

/* Hover state (becomes UI chip) */
.cursor.active {
  width: 80px;
  height: 32px;
  border-radius: 20px;
  clip-path: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: sans-serif;
  color: var(--green);
  background: var(--green);
}

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--offwhite);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
 .logo img {height: 36px;}
  .logo-mark {
    width: 38px;
    height: 38px;
    position: relative;
    flex-shrink: 0;
  }

  .logo-mark svg { width: 100%; height: 100%; }

  .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1;
  }

  .logo-text span { color: var(--blue); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
  }
a {text-decoration: none;background: transparent;}
  .nav-links a:hover { color: var(--green); }

  .nav-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    /* background: var(--green); */
    color: var(--black);
    padding: 0;
    border: none;
    cursor: none;
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    /* clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); */
  }
.nav-cta img {
  width: 34px;
}
  /* .nav-cta:hover {
    transform: translateY(2px);
    box-shadow: 0 8px 24px rgba(49,173,167,0.3);
  } */

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(49,173,167,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(49,173,167,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 80%);
  }

  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(49,173,167,0.08) 0%, transparent 70%);
    top: 50%; right: -100px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .hero-glow-2 {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
    bottom: 0; left: 200px;
    pointer-events: none;
  }

  .hero-left { position: relative; z-index: 2; }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--blue);
    letter-spacing: 2px;
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(49,173,167,0.3);
    background: rgba(49,173,167,0.05);
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 108px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 28px;
  }

  .hero-h1 .line-2 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(240,242,245,0.4);
  }

  .hero-h1 .accent { color: var(--blue); }

  .hero-desc {
    font-size: 17px;
    font-weight: 300;
    color: rgba(240,242,245,0.6);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 44px;
  }

  .hero-actions { display: flex; gap: 16px; align-items: center; }

  .btn-primary {
    /* display: inline-flex; */
    align-items: center;
    text-align: center;
    gap: 10px;
    background: var(--green);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    outline: none;
    /* clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); */
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(49,173,167,0.35);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid rgba(240,242,245,0.3);
    padding-bottom: 2px;
    transition: all 0.2s;
  }

  .btn-secondary:hover { color: var(--blue); border-color: var(--blue); }

  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-visual {
    width: 480px;
    height: 480px;
    position: relative;
  }

  .hero-orb {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(49,173,167,0.15), transparent, rgba(0,229,255,0.1), transparent);
    animation: spin 12s linear infinite;
  }

  .hero-orb-2 {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, transparent, rgba(0,229,255,0.12), transparent, rgba(49,173,167,0.08), transparent);
    animation: spin 8s linear infinite reverse;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  .hero-orb-inner {
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(49,173,167,0.12), rgba(0,229,255,0.06), rgba(3,5,7,0.8));
    border: 1px solid rgba(49,173,167,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-orb-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(49,173,167,0.03) 30px, rgba(49,173,167,0.03) 31px),
      repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(49,173,167,0.03) 30px, rgba(49,173,167,0.03) 31px);
  }

  .hero-orb-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 6px;
    color: var(--blue);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(49,173,167,0.6);
  }

  .hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(49,173,167,0.12);
  }

  .hero-ring:nth-child(5) { inset: -20px; }
  .hero-ring:nth-child(6) { inset: -50px; animation: pulse-ring 3s ease-in-out infinite; }

  @keyframes pulse-ring {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.15; }
  }

  .hero-dots {
    position: absolute;
    inset: 0;
  }

  .hero-dot {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--blue);
  }

  .hero-dot:nth-child(1) { top: 15%; left: 50%; animation: orbit1 4s linear infinite; }
  .hero-dot:nth-child(2) { top: 50%; left: 10%; animation: orbit2 6s linear infinite; width: 5px; height: 5px; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
  .hero-dot:nth-child(3) { bottom: 20%; right: 15%; animation: orbit3 5s linear infinite; width: 6px; height: 6px; }

  @keyframes orbit1 { 0%,100%{transform:translateY(-140px) translateX(0)} 25%{transform:translateY(-70px) translateX(120px)} 50%{transform:translateY(80px) translateX(0)} 75%{transform:translateY(-20px) translateX(-110px)} }
  @keyframes orbit2 { 0%,100%{transform:translateX(150px) translateY(0)} 33%{transform:translateX(-60px) translateY(-90px)} 66%{transform:translateX(-80px) translateY(80px)} }
  @keyframes orbit3 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-120px) translateX(-80px)} }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }


  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--blue);
    letter-spacing: 2px;
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    color: rgba(240,242,245,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* MARQUEE */
  .marquee-bar {
    background: var(--blue);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--black);
    padding-right: 60px;
  }

  .marquee-item::before {
    content: '◆';
    font-size: 10px;
  }

  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTIONS SHARED */
  section { padding: 100px 48px; }

  .section-eyebrow {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--blue);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: rgba(240,242,245,0.55);
    max-width: 520px;
    line-height: 1.7;
  }

  /* ===== ABOUT BANNER ===== */
  #about {
    background: var(--mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  #about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, transparent 60%);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-left .section-title { margin-bottom: 24px; }

  .about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
  }

  .about-badge {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    color: rgba(240,242,245,0.5);
    background: var(--glass);
  }

  .about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .about-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .about-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .about-card:hover::before { transform: scaleX(1); }

  .about-card:hover {
    background: rgba(49,173,167,0.04);
    transform: translateY(-4px);
  }

  .about-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .about-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 8px;
  }

  .about-card-text {
    font-size: 13px;
    color: rgba(240,242,245,0.5);
    line-height: 1.6;
  }

  /* ===== SERVICES ===== */
  #services {
    position: relative;
    overflow: hidden;
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--black);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: none;
    padding: 40px 36px;
  }
  .service-card {
    background: rgba(49,173,167,.20);
  }
  .service-card:nth-child(2n) {
    background: rgba(63,158,70,.20);
  }

  .service-card:hover { background: rgba(49,173,167,0.03); }

  .service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(49,173,167,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-content{
    padding: 20px 36px 44px 36px;
  }
  .service-card:hover::after { opacity: 1; }

  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    letter-spacing: -2px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    position: absolute;
    z-index: 10;
    top: 24px; right: 24px;
    transition: color 0.3s;
  }

  .service-card:hover .service-num { color: rgba(49,173,167,0.08); }

  .service-icon-wrap {
    width: 54px; height: 54px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s, background 0.3s;
  }
/* .service-icon-wrap img {width: 100%;} */
  .service-card:hover .service-icon-wrap {
    border-color: rgba(49,173,167,0.4);
    background: rgba(49,173,167,0.08);
  }

  .service-icon { font-size: 24px; }

  .service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }

  .service-card:hover .service-title { color: var(--blue); }

  .service-desc {
    font-size: 14px;
    color: rgba(240,242,245,0.5);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 1;
  }

  .service-tag {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: rgba(240,242,245,0.4);
    letter-spacing: 1px;
    transition: all 0.2s;
  }

  .service-card:hover .service-tag {
    border-color: rgba(49,173,167,0.2);
    color: rgba(49,173,167,0.7);
  }

  .service-arrow {
    position: absolute;
    bottom: 28px; right: 28px;
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,242,245,0.3);
    font-size: 18px;
    transition: all 0.3s;
    transform: rotate(-45deg);
  }

  .service-card:hover .service-arrow {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    transform: rotate(0deg);
  }

  /* ===== AI BANNER ===== */
  #ai-banner {
    padding: 0 48px;
    margin: 0;
  }

  .ai-banner-inner {
    background: linear-gradient(135deg, var(--mid) 0%, rgba(0,229,255,0.05) 50%, var(--mid) 100%);
    border: 1px solid rgba(0,229,255,0.2);
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .ai-banner-inner::before {
    content: 'AI';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 300px;
    color: rgba(0,229,255,0.03);
    position: absolute;
    right: -20px;
    bottom: -60px;
    letter-spacing: -10px;
    line-height: 1;
    pointer-events: none;
  }

  .ai-banner-tag {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ai-banner-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--blue);
  }

  .ai-banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    letter-spacing: 2px;
    line-height: 0.95;
    margin-bottom: 20px;
    color: var(--white);
  }

  .ai-banner-title .cyan { color: var(--blue); }
    .ai-banner-title .blue { color: var(--blue); }

  .ai-banner-desc {
    font-size: 16px;
    color: rgba(240,242,245,0.55);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
  }

  .ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 500px;
  }

  .ai-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(240,242,245,0.65);
  }

  .ai-feature::before {
    content: '→';
    color: var(--blue);
    font-size: 14px;
  }

  .ai-banner-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
  }

  .ai-stat-card {
    background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.15);
    padding: 24px 28px;
    min-width: 220px;
  }

  .ai-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    color: var(--blue);
    line-height: 1;
  }

  .ai-stat-label {
    font-size: 12px;
    color: rgba(240,242,245,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* ===== PROCESS ===== */
  #process {
    background: var(--mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .process-header {
    text-align: center;
    margin-bottom: 72px;
  }

  .process-header .section-eyebrow { justify-content: center; }
  .process-header .section-eyebrow::before { display: none; }

  .process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent);
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
  }

  .step-number {
    width: 72px; height: 72px;
    background: var(--black);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--blue);
    letter-spacing: 2px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background 0.3s;
  }

  .process-step:hover .step-number {
    background: var(--blue);
    color: var(--black);
  }

  .step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 13px;
    color: rgba(240,242,245,0.45);
    line-height: 1.6;
  }

  /* ===== TECH BANNER ===== */
  #tech-banner {
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
  }

  .tech-banner-inner {
    background: var(--blue);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    position: relative;
    overflow: hidden;
  }

  .tech-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.04) 40px,
      rgba(0,0,0,0.04) 41px
    );
  }

  .tech-banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    color: var(--black);
    line-height: 0.92;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
  }

  .tech-banner-sub {
    font-size: 15px;
    color: rgba(3,5,7,0.65);
    line-height: 1.6;
    margin-top: 16px;
    position: relative;
    z-index: 1;
  }

  .tech-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
  }

  .tech-icon-box {
    background: rgba(0,0,0,0.1);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    transition: background 0.2s;
  }

  .tech-icon-box:hover { background: rgba(0,0,0,0.2); }

  .tech-icon-name {
    font-family: 'Fira Code', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.6);
    text-align: center;
  }

  /* ===== CLIENTS / TRUST ===== */
  #trust {
    border-top: 1px solid var(--border);
    text-align: center;
  }

  .trust-header { margin-bottom: 52px; }
  .trust-header .section-eyebrow { justify-content: center; }
  .trust-header .section-eyebrow::before { display: none; }

  .trust-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 80px;
  }

  .trust-logo {
    background: var(--black);
    padding: 36px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: rgba(240,242,245,0.2);
    transition: all 0.3s;
  }

  .trust-logo:hover {
    background: var(--glass);
    color: rgba(240,242,245,0.7);
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .testimonial-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 36px;
    position: relative;
    transition: border-color 0.3s;
  }

  .testimonial-card:hover { border-color: rgba(49,173,167,0.2); }

  .testimonial-quote {
    font-size: 48px;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.4;
  }

  .testimonial-text {
    font-size: 15px;
    color: rgba(240,242,245,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 300;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--black);
  }

  .author-name {
    font-weight: 600;
    font-size: 14px;
  }

  .author-role {
    font-size: 12px;
    color: rgba(240,242,245,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ===== CTA BANNER ===== */
  #cta {
    padding: 0 48px 100px;
  }

  .cta-inner {
    background: var(--mid);
    border: 1px solid var(--border);
    padding: 100px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(49,173,167,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner::after {
    content: 'START';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 280px;
    color: rgba(255,255,255,0.02);
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 20px;
    pointer-events: none;
  }

  .cta-eyebrow {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 20px;
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.92;
    letter-spacing: 3px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .cta-title .outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(240,242,245,0.3);
  }

  .cta-desc {
    font-size: 17px;
    color: rgba(240,242,245,0.5);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  /* Form */
  form {
    display: flex;
    justify-content: center;
  }
  .form-panel {
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;margin: 0;
    gap: 10px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
label {width: 100%; position: relative;color: #000;}
label  span {position: absolute; bottom: 17px; left: 20px; z-index: 100;color: red;}
.txt-field  {
  width: 100%; height: 40px; 
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid  rgba(0, 0, 0, 0.3);
  outline: none;
  background: none;
  font-family: 'Poppins', sans-serif; 
  text-align: left;
  font-size: 16px; color: #000;
  margin-bottom: 15px; padding : 0;}
.txt_area  {
  width: 100%; height: 40px; 
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
  background: none;
  font-family: 'Poppins', sans-serif; 
  text-align: left;font-size: 16px; color: #000;
  resize: vertical;margin-bottom: 15px; padding : 0;}
  .txt_area:focus, .txt-field:focus {
    border-top: none;
  border-left: none;
  border-right: none;
    outline-color: var(--green);
    border-bottom: 1px solid var(--green);
    outline: none;
  }
::-webkit-input-placeholder { /* Edge */
  font-family: 'Poppins', sans-serif; text-align: left;font-size: 16px; color: #000;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-family: 'Poppins', sans-serif; text-align: left;font-size: 16px; color: #000;
}

::placeholder {
  font-family: 'Poppins', sans-serif; text-align: left;font-size: 16px; color: #000;
}
.success-inner h1, .success-inner p {text-align: center;color: #000;}
    .mail-seccess {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
    }
    .success-inner {display: flex; flex-direction: column; justify-content: center;
    align-items: center;margin-top: 60px;}
    .success-inner p {margin-bottom: 20px;}
    .success-inner .submit-btn {text-align: center; margin-top: 0;padding: 10px 0;}


  /* ===== FOOTER ===== */
  footer {
    background: var(--mid);
    border-top: 1px solid var(--border);
    padding: 64px 48px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr .5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-brand .logo { margin-bottom: 16px; }

  .footer-brand .logo img {height: 30px;}

  .footer-desc {
    font-size: 14px;
    color: rgba(240,242,245,0.4);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
  }

  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(240,242,245,0.4);
    text-decoration: none;
    transition: all 0.2s;
  }

  .social-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .footer-col-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    display: flex;
    font-size: 14px;
    color: #f0f2f566;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a img.num {
    height: 24px;
    justify-content: center;
    align-items: center;
    padding-right: 5px;
  }
.footer-links a img {align-items: flex-start;justify-content: flex-start;height: 24px;padding-right: 5px;}
  .footer-links a:hover { color: var(--blue); }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-copy {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: rgba(240,242,245,0.25);
    letter-spacing: 1px;
    text-align: center;
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 12px;
    color: rgba(240,242,245,0.25);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--blue); }

  /* SCROLL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* second home page style */
  #about-white .section-title, #about-white .section-subtitle
  , #about-white .about-card-text {color: var(--black);}
  #career-white .ai-banner-title, #career-white .ai-banner-desc,
  #career-white .ai-feature, #career-white .ai-stat-label {color: var(--black);}

  #contact-white .cta-title, #contact-white .cta-desc, #contact-white .btn-secondary {color: var(--black);}
  
  #contact-white .cta-title .outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}
  #career-white, #contact-white {background: none;}
  #career-white .ai-stat-card {
    background: rgba(0, 0, 0, 0.05);}
  #about-white .about-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border1);}
  #about-white {background: var(--offwhite);}
  section:has(div#about-white), div:has(div#career-white), div:has(div#contact-white) {
  background: var(--offwhite) !important;
}
div:has(div#contact-white) {
  padding: 0 48px !important;background: #d1d2d3 !important;}
  .mbtm10 {margin-bottom: 10px;}

  

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .about-grid, .ai-banner-inner, .tech-banner-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-timeline::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-logos { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    #hero { padding: 100px 24px 60px; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .ai-banner-inner { padding: 44px 28px; }
    .tech-banner-inner { padding: 44px 28px; }
    .cta-inner { padding: 60px 28px; }
    .trust-logos { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    #ai-banner { padding: 0 24px; }
    #tech-banner { padding: 60px 24px; }
    #cta { padding: 0 24px 72px; }
     .logo img {height: 24px;}
     .nav-cta {
    padding: 10px 10px;
    font-size: 11px;
     }
     .form-panel {grid-template-columns: 1fr;}
     div:has(div#contact-white) {
  padding: 0 !important;background: #d1d2d3 !important;}
  footer {padding: 44px 28px 32px;}
  .footer-top {margin-bottom: 44px;}
.form-panel {width: 100%;}
  }