/* normal css */
html{
    scroll-behavior: smooth;
}
 .section-heading{
       text-transform: capitalize;
    }
  
.bg-white-logo img{
    background-color: white !important;
    padding: 2px !important;
    border-radius: 1px !important;
}
/* .step-image:first-child{
    width: 100% !important;
    height: auto !important;
} */
.saturn-stage {
    aspect-ratio: 1 / 1;
  }

  .saturn-stage canvas {
    display: block;
    width: 100%;
    height: 100%;
  }
*{
    scroll-behavior: smooth;
}

      .orbit-group {
            transform-origin: 463.5px 463.5px;
            animation: spin 20s linear infinite;
        }

        .orbit-group-2 {
            transform-origin: 463.5px 463.5px;
            animation: spin 20s linear infinite;
        }

        .satellite-img {
            transform-box: fill-box;
            transform-origin: center;
            animation: spin-reverse 20s linear infinite;
            opacity: 0.8;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes spin-reverse {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }


    
/* dot */
 .hero-dots {
        position: relative;
    }

    .dots-field {
        z-index: 0;
    }

    .dot {
        position: absolute;
        border-radius: 50%;
        background: #ffffff;
        will-change: transform;
    }

    /* keep your actual content above the dots */
    .hero-dots>*:not(.dots-field) {
        position: relative;
        z-index: 1;
    }

    /* bar animation */
    .cone-card {
                overflow: hidden;
            }

            .bars {
                position: relative;
                height: 80px;
                align-items: flex-end;
            }

            .bar {
                transform-origin: bottom;
                will-change: height, background-color, opacity;
                background-color: white !important;
                transition:
                    height 300ms ease-out,
                    background-color 300ms ease-out,
                    opacity 300ms ease-out;
            }

            .bar.cone-active {
                background-color: #00B47B !important;
            }
/* ai infra */
 
        :root {
            /* JS overwrites this on lg with the real bottom of the pinned heading.
               Both the CSS `top:` and the ScrollTrigger start read this value,
               so they can never drift apart. */
            --sticky-offset: 140px;
        }

        /* ---------- Sticky scroll section ---------- */
        .scroll-steps {
            position: relative;
        }

        /* Sticky stage:
           - `top` uses the SAME variable the JS uses for the trigger start.
           - height is clamped so the stage can never be taller than the space
             left under the pinned heading (this was the main lg bug). */
        .steps-grid {
            position: sticky;
            top: var(--sticky-offset);
            height: clamp(280px, calc(100dvh - var(--sticky-offset) - 24px), 430px);
            grid-template-rows: minmax(0, 1fr);
        }

        .steps-list-outer {
            position: relative;
            overflow: hidden;
        }

        .steps-list {
            will-change: transform;
        }

        .step-item {
            will-change: transform;
        }

        .step-card {
            background-color: transparent;
            transition: background-color .45s ease;
        }

        .step-item.is-active .step-card {
            background-color: #fff;
        }

        .step-label {
            color: rgba(0, 180, 123, 0.5);
            transition: color .45s ease;
        }

        .step-item.is-active .step-label {
            color: #00B47B;
        }

        .step-title {
            color: rgba(255, 255, 255, 0.4);
            transition: color .45s ease;
        }

        .step-item.is-active .step-title {
            color: #0E0F12;
        }

        .step-desc {
            color: rgba(255, 255, 255, 0.4);
            transition: color .45s ease;
        }

        .step-item.is-active .step-desc {
            color: #66696E;
        }

        .step-dot {
            background-color: #E3E3E0;
            border-color: #E3E3E0;
            transition: background-color .45s ease, border-color .45s ease;
            margin-left: -8px;
        }

        .step-item.is-active .step-dot {
            background-color: #00B47B;
            border-color: #fff;
        }

        /* GSAP drives opacity — no CSS transition here or it fights the tween */
        .step-image {
            border-radius: 20px;
        }

        .step-indicator {
            transition: width .4s ease, background-color .4s ease;
        }

        /* ---------- Pinned heading ---------- */
        /* Stays sticky (so nothing jumps) and simply fades out when the
           bottom paragraph arrives. The old `position: relative; top: 0`
           made it teleport off-screen. */
        .animatio-head {
            transition: opacity .35s ease;
        }

        .animatio-head.release-sticky {
            opacity: 0;
            pointer-events: none;
        }

        /* ---------- Static tablet/mobile version ---------- */
        .static-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .6s ease, transform .6s ease;
        }

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

    /* globe animation */
    /* desktop */
    
 /* proof section  */
      


  /* ---------------- LEFT : COMPANY LIST ---------------- */
  .co-item {
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .co-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .co-dash {
    width: 16px;
    height: 1px;
    background: #67696E;
    flex-shrink: 0;
    transition: background .35s ease, width .35s ease;
  }

  .co-name {
    font-size: 15px;
    font-weight: 500;
    color: #9A9DA3;
    transition: color .35s ease, font-weight .35s ease;
  }

  .co-item.active .co-dash {
    width: 39px;
    background: #00B47B;
  }

  .co-item.active .co-name {
    color: #0B0D11;
    font-weight: 700;
  }

  /* ---------------- SECTION ----------------
     overflow-x:clip  →  no horizontal scrollbar,
     but vertical overflow stays VISIBLE so the
     flying card can escape the stage upward.     */
  .proof-section {
    overflow-x: clip;
  }

  /* ---------------- STAGE ---------------- */
  .stage {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 600 / 430;
    perspective: 1200px;
  }

  /* ---------------- CARD (base) ---------------- */
  .stack-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    border-radius: 24px;
    overflow: hidden;

    transform-origin: center center;
    backface-visibility: hidden;

    padding: 28px 30px 24px;

    background: linear-gradient(180deg, #1C1D21 0%, #131417 100%);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 20px 45px -25px rgba(0, 0, 0, .35);

    pointer-events: none;

    transition:
      transform 1s cubic-bezier(.22, 1, .36, 1),
      opacity   .8s ease,
      filter    .8s ease;
  }

  /* the card that currently sits on top */
  .stack-card.is-main {
    pointer-events: auto;

    background: radial-gradient(120% 140% at 0% 0%,
        #23252B 0%, #17181B 55%, #101114 100%);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45);
  }

  /* ---------------- EXIT ANIMATION ----------------
     MUST stay AFTER .is-main so pointer-events:none wins  */
  .stack-card.is-exit {
    pointer-events: none;
    animation: cardToBack 1.2s both;   /* 1.2s = JS EXIT_DURATION */
  }

  /*  0%  → 42%  : card rises, stays full size & full opacity
      42%        : card is at its peak, now it drops behind the deck
      42% → 100% : card descends into the LAST deck position      */
  @keyframes cardToBack {

    0% {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 1;
      filter: brightness(1);
      z-index: 9999;
      animation-timing-function: cubic-bezier(.22, 1, .36, 1); /* fast up, ease out */
    }

    42% {
      transform: translate3d(0, -68%, 0) scale(0.25);   /* ⬅ peak height (tweak me) */
      opacity: 0.9;
      filter: brightness(1);
      z-index: 9999;
      animation-timing-function: cubic-bezier(.4, 0, .2, 1);  /* ease in, smooth down */
    }

    /* flip behind the deck right at the peak */
    42.01% {
      z-index: 1;
    }

    100% {
      transform: translate3d(0, var(--exit-y, -60px), 0)
                 scale(var(--exit-scale, .84));
      opacity: var(--exit-opacity, .2);
      filter: brightness(var(--exit-brightness, .68));
      z-index: var(--exit-z, 995);
    }
  }

  .badge-dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #00B47B;
  }

  .eyebrow-right {
    font-size: 10.5px;
    letter-spacing: .14em;
    color: #6C6F76;
    font-weight: 600;
  }

  .stat-line {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #B7BABF;
    font-weight: 500;
  }

  .divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
  }

  .metric-box {
    flex: 1;
    min-width: 0;
  }

  .foot-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: fit-content;
    max-width: 150px;

    background: #fff;
    color: #111;
    border-radius: 999px;

    padding: 7px 13px 7px 11px;

    font-weight: 700;
    font-size: 13px;
  }

  .itme-image {
    display: block;
    width: auto;
    height: 20px;
    max-width: 115px;
    object-fit: contain;
  }

  .arrow-btn {
    width: 34px;
    height: 34px;
    flex-shrink: 0;

    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background .3s ease, color .3s ease, transform .3s ease;
  }

  .arrow-btn:hover {
    transform: scale(1.06);
  }

  /* ---------------- MOBILE ---------------- */
  @media (max-width: 767px) {
    .stack-card {
      padding: 22px 18px 18px;
      border-radius: 20px;
    }

    .stage {
      max-width: 100%;
      height: 430px;
      aspect-ratio: auto;
    }
  }

  .pfc-proof { overflow-x: clip; }

/* ---------------- LEFT LIST ---------------- */
.pfc-item {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.pfc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.pfc-dash {
  width: 16px;
  height: 1px;
  background: #67696E;
  flex-shrink: 0;
  transition: background .35s ease, width .35s ease;
}
.pfc-name {
  font-size: 15px;
  font-weight: 500;
  color: #9A9DA3;
  transition: color .35s ease, font-weight .35s ease;
}
.pfc-item.active .pfc-dash {
  width: 39px;
  background: #00B47B;
}
.pfc-item.active .pfc-name {
  color: #0B0D11;
  font-weight: 700;
}

/* ---------------- STAGE (FrameLayout) ----------------
   overflow:hidden so the dive clips at the stage edge.     */
.pfc-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 640 / 600;
  /* overflow: hidden; */
  perspective: 1200px;
  --pfc-card-h: 400px;
}

/* ---------------- CARD (LinearLayout) ----------------
   Every card keeps ONE static layout box (slot 0 — the widest,
   front-most position). We never touch top/left/width again.
   The whole stack is animated with transform: translate()
   scaleX(), which is compositor-only (no layout, no paint per
   frame) — that's the actual cause of smoothness.            */
.pfc-card {
  position: absolute;
  top: 22%;
  left: 3%;
  width: 94%;
  height: var(--pfc-card-h);
  border-radius: 24px;
  overflow: hidden;

  padding: 28px 30px 24px;

  background: linear-gradient(180deg, #1C1D21 0%, #131417 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  

  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  will-change: transform;
  transform-origin: 0% 0%;
  backface-visibility: hidden;

  /* GSAP owns transform/x/y/scaleX. This transition only covers
     background/border/shadow (the is-main swap), so it never
     fights with GSAP's own tweens. */
  transition: background .5s ease, border-color .5s ease, box-shadow .5s ease;
}
.pfc-card.is-main {
  background: radial-gradient(120% 140% at 0% 0%,
      #23252B 0%, #17181B 55%, #101114 100%);
  border-color: rgba(255, 255, 255, .08);
 
}

/* ---------------- CARD INNER PIECES ---------------- */
.pfc-stat-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #B7BABF;
  font-weight: 500;
}
.pfc-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}
.pfc-metric-box { flex: 1; min-width: 0; }
.pfc-foot-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 150px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 7px 13px 7px 11px;
  font-weight: 700;
  font-size: 13px;
}
.pfc-itme-image {
  display: block;
  width: auto;
  height: 20px;
  max-width: 115px;
  object-fit: contain;
}
@media (max-width: 1023px) {
  
  .pfc-card {
  
    top: 10%;
  }
}
/* ---------------- MOBILE ---------------- */
@media (max-width: 767px) {
  .pfc-stage {
    aspect-ratio: 540 / 700;
    --pfc-card-h: 400px;
  }
  .pfc-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
    width: 100%;
    left: 0%;
    top: 10%;
  }
}
.about-banner-img{
    animation: float 9s ease-in-out infinite
}
 @keyframes float {

      0%,
      100% {
        transform: translateY(0) rotate(-2deg)
      }

      50% {
        transform: translateY(-14px) rotate(1deg)
      }
    }



    /* heading css */

    .heading-cta-title {
    font-size: 36px; /* 48px */
    line-height: 40px;
    color: white;
    font-weight: 700;
    letter-spacing: -2.17px;
    text-transform: capitalize;
    text-align: center;
}
.heading-cta-desc{
   line-height: 24px;
   font-size: 16px;
   color: white;
   text-align: center;
}

@media (min-width: 768px) {
    .heading-cta-title {
        font-size: 48px;
        line-height: 56px;
    }
    .heading-cta-desc{
   line-height: 28px;
   font-size: 18px;
  
}
}
@media (min-width: 1024px) {
    .heading-cta-title {
        font-size: 62px;
        line-height: 65px;
    }
}