@font-face {
    font-family: 'BaseNeue';
    src: url('fonts/BaseNeueTrial-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'BaseNeueBold';
    src: url('fonts/BaseNeueTrial-CondensedBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
:root {
  --dark:        #07090F;
  --dark-2:      #0D1220;
  --dark-3:      #111827;
  --blue:        #2B45FF;
  --yellow:      #ffcc22;
  --orange:      #FF6B1A;
  --purple-dark: #1A0B3B;
  --white:       #FFFFFF;
  --muted:       #6b6b6b;
  --light-gray:  #B8C0D0;
  --card-bg:     #EEF0F8;
  --border:      rgba(255,255,255,0.08);
  --font-display:'BaseNeue', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --header-h:    110px;
  --max-w:       1600px;
  --radius:      16px;
  --radius-sm:   10px;
  --t:           0.28s ease;
}
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; padding: 0; 
}
html { 
  scroll-behavior: smooth; 
}
body { 
  font-family: var(--font-body); 
  background: var(--dark); 
  color: var(--white); 
  line-height: 1.65; 
  overflow-x: hidden; 
}
img { 
  max-width: 100%; 
  display: block; 
}
a { 
  text-decoration: none; 
  color: inherit; 
  transition: color var(--t); 
}
ul { 
  list-style: none; 
}
.container {
  max-width: var(--max-w); 
  margin: 0 auto; 
  padding: 0 40px; 
}
.text-yellow { 
  color: var(--yellow); 
}
.mt-32 { 
  margin-top: 32px; 
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: none;
    border-bottom: 1px solid var(--border);
    transition: background var(--t);
}
.header.scrolled { 
  background: rgba(7,9,15,0.98); 
}
.header__inner {
  height: var(--header-h);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
}

.logo {
   display: flex; 
   align-items: center; 
   gap: 1px; 
  }
.logo__text { 
  font-family: var(--font-body); 
  font-weight: 700; 
  font-size: 22px; 
  letter-spacing:-0.5px; 
}
.logo__badge { 
  display: flex; 
  align-items: center; 
}
.nav__list { 
  display: flex; 
  align-items: center; 
  gap: 50px; 
}
.nav__link {
    font-size: 17px;
    font-weight: 400;
    color: var(--muted);
    font-family: 'poppins';
}
.nav__link:hover, .nav__link.active {
   color: var(--yellow);
  }
.nav__link.active {
  font-weight: bold !important; 
}
.nav__link {
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}
.nav__link:after {
    content: "";
    background: #ffcc22;
    width: 0; 
    height: 1px; 
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav__link:hover:after {
    width: 100%; 
}

.nav__link.active:after {
    width: 100%;
}
.nav__link:hover {
    color: #ffcc22;
}

.hamburger {
  display: none; 
  flex-direction: column; 
  gap: 5px;
  background: none;
  border: none; 
  cursor: pointer; 
  padding: 4px;
}
.hamburger span { 
  display: block; 
  width: 24px; 
  height: 2px; 
  background: var(--white);
  border-radius: 2px; 
  transition: all var(--t); 
  }
.hamburger.open span:nth-child(1) { 
  transform: rotate(45deg) translate(5px,5px); 
}
.hamburger.open span:nth-child(2) { 
  opacity: 0; 
}
.hamburger.open span:nth-child(3) { 
  transform: rotate(-45deg) translate(5px,-5px); 
}

   .btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  gap: 15px;
  padding: 16px 42px; 
  border-radius: 100px; 
  font-family: 'BaseNeueBold', sans-serif;
  font-weight: 700; 
  font-size: 22px; 
  letter-spacing: 1.5px; 
  text-transform: uppercase;
  cursor: pointer; 
  white-space: nowrap; 
  transition: all var(--t);
  background: #ffffff !important; 
  color: var(--orange) !important;
  border: none !important;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn__icon { 
  display: flex; 
  align-items: center; 
  max-width: 40px; 
}
.btn:before, .btn:after {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--orange); 
  border-radius: 100px;
  z-index: -1; 
  transition: all 1s ease;
}
.btn:before {
  clip-path: polygon(20% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
  transform: skewX(-5deg); 
}
.btn:after {
  clip-path: polygon(0% 10%, 90% 100%, 100% 90%, 100% 0%, 10% 0%, 0% 0%);
  transform: skewX(-5deg); 
}
a.btn.btn--outline:hover {
    background-color: #ff5c1d !important;
    color: #ffffff !important;
}

/* pseudo elements */
a.btn.btn--outline:hover::before,
a.btn.btn--outline:hover::after {
    background-color: #ffffff !important;
}
a.btn.btn--yellow:hover{
      background-color: #ffcc22 !important;
    color: #fff !important;
}
a.btn.btn--yellow:hover::before,
a.btn.btn--yellow:hover::after {
    background-color: #fff !important;
}
a.btn.btn--dark-pill:hover{
  background-color: #ff5c1d !important;
  color: #000 !important;
}
a.btn.btn--dark-pill:hover::before,
a.btn.btn--dark-pill:hover::after {
    background-color: #000 !important;
}
.btn--outline-yellow:hover{
  background-color: #ff5c1d !important;
  color: #fff !important;
}
.btn--outline-yellow:hover::before,
.btn--outline-yellow:hover::after {
    background-color: #fff !important;
}
a.btn.btn--yellow {
    color: #ffcc22 !important;
}

a.btn.btn--yellow::before, a.btn.btn--yellow::after {
    background: #ffcc22 !important;
}
.btn__icon { display: flex; align-items: center; }

.btn--outline {
  background: #fff;
  color: #ff5c1d;
}
.btn--outline-yellow {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--yellow);
}
.btn--yellow {
  background: var(--yellow);
  color: #000;
  border: 1.5px solid var(--yellow);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    /* min-height: 100vh; */
    padding-block: 160px 0px !important;
    background: #030919;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__lines-deco {
    position: absolute;
    right: -13%;
    top: 18%;
    transform: translateY(-53%);
    width: 624px;
    opacity: 1;
    scale: 1;
    pointer-events: none;
    z-index: 99999;
}
.hero__lines-deco img { 
  width: 100%; 
}

.hero__inner {
  position: relative; 
  z-index: 1;
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 80px; 
  align-items: center;
  padding-top: 60px; 
  padding-bottom: 80px;  
  width: 100% !important;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 93px;
    line-height: 100px;
    letter-spacing: 1.5px;
    margin-bottom: 64px;
    text-transform: uppercase;
    transform: scaleY(1.4);
}

.hero__btns { 
  display: flex; 
  gap: 30px; 
  flex-wrap: wrap; 
}

:root {
    --orange: #ff5c1d;
}

.video-banner-container {
    display: flex;
    align-items: center;
    background-image: url(images/video-text.png);
    background-repeat: no-repeat;
    padding: 0px 40px 0px 0px;
    border-radius: 100px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: -13px;
    background-size: 100% 100%;
}
.play-button-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.hero__left {
    animation: fadeInLeft 3s ease-out forwards;
    opacity: 0; 
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px); 
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.rotating-text {
    width: 100%;
    height: 100%;
  background-image: -webkit-linear-gradient( -45deg, rgb(255,92,29) 0%, rgb(255,204,34) 100%);    border-radius: 50%;
    animation: rotateText 10s linear infinite;
}

.rotating-text svg {
    fill: white;
    font-family: 'BaseNeueBold';
    font-size: 11px;
    font-weight: 200 !important;
    text-transform: uppercase;
    width: 130px !important;
    height: 130px !important;
    letter-spacing: 3px;
} 

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.play-icon {
    position: absolute;
    color: white;
    font-size: 24px;
    z-index: 2;
}

/* Banner Text */
.banner-text {
    margin-left: 30px;
    color: white;
}

.banner-text h2 {
    font-size: 38px;
    line-height: 1.1;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

.banner-text span {
    opacity: 0.8;
}

/* Video Popup Styles */
.video-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-content {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: -40px; right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/* Video pill */
.hero__video-pill {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 20px;
  max-width: 360px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.pill__icon-wrap {
  position: relative; flex-shrink: 0;
  width: 52px; height: 52px;
}
.pill__spinner-text {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--orange);
  font-size: 5.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: white;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6px;
  line-height: 1.3;
  animation: spin 10s linear infinite;
}
.pill__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white; z-index: 2;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pill__text strong { display: block; font-size: 16px; font-weight: 600; }
.pill__text span { font-size: 14px; color: var(--muted); }

.hero__desc {
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    max-width: 100%;
    margin-bottom: 36px;
    margin-top: 56px;
}
.hero__stats { display: flex;     justify-content: space-between; }
.stat { display: flex; align-items: center; gap: 14px; }
.stat__num {
    font-family: 'BaseNeue';
    color: var(--blue);
    font-size: 58px;
    line-height: 78px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: scaleY(1.4);
}
.stat__label {
    font-size: 20px;
    color: #eff0f1;
    line-height: 32px;
    margin-bottom: -1px;
    margin-left: 0px;
}


/* ============================================================
   MOCKUP SECTION
   ============================================================ */
.mockup-section {
    background: linear-gradient(180deg, var(--dark) 0%, #0A0E1A 100%);
    padding: 0 0 0px;
    height: 780px;
    overflow: hidden;
}
.mockup-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  /* max-width: 1100px; */
   margin: 0 auto;
}
.mockup-img { width: 100%; border-radius: 20px; }


/* ============================================================
   3 CARDS
   ============================================================ */
.circle-stack {
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;
    width: 200px;
    overflow: hidden;
}
.circle {
    position: absolute;
    border-radius: 50%;
    background-color: #6385ff; /* Image wala blue color */
    opacity: 0.3; /* Transparency ke liye */
    transition: all 0.5s ease;
}

/* Har circle ka size aur position alag set karenge */
.c1 {
    width: 96px;
    height: 95px;
    left: 0;
    z-index: 5;
    opacity: 0.5;
}
.c2 {
    width: 85px;
    height: 85px;
    left: 25px;
    z-index: 4;
    opacity: 0.4;
}
.c3 {
    width: 75px;
    height: 75px;
    left: 45px;
    z-index: 3;
    opacity: 0.3;
}
.c4 {
    width: 65px;
    height: 65px;
    left: 65px;
    z-index: 2;
    opacity: 0.2;
}
.c5 {
    width: 55px;
    height: 55px;
    left: 75px;
    z-index: 1;
    opacity: 0.1;
}
.circle-stack:hover .c2 { left: 35px; }
.circle-stack:hover .c3 { left: 55px; }
.circle-stack:hover .c4 { left: 75px; }
.circle-stack:hover .c5 { left: 85px; }
.cards-section {
  background: var(--white);
  padding: 100px 0 60px;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
  margin-bottom: 56px;
}
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 1s ease, border-color 1s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 1;
}
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(26, 115, 232, 0.3); 
    cursor: pointer;
}
.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    z-index: 2;
}
.card.card--1:hover {
    border: 1px solid #f75a1d;
    border-bottom: 4px solid #f75a1d;
}
.card.card--2:hover {
    border: 1px solid #F7C722;
    border-bottom: 4px solid #F7C722;
}
.card.card--3:hover {
    border: 1px solid #1e4dff;
    border-bottom: 4px solid #1e4dff;
}
.card:hover::after {
    left: 100%;
}
.card.card--1 {
    border-bottom: 4px solid #f75a1d;
}
.card.card--2 {
    border-bottom: 4px solid #F7C722;
}
.card.card--3 {
    border-bottom: 4px solid #1e4dff;
}
.sphere-container {
    display: flex;
    justify-content: left;
    align-items: start;
    width: 130px;
    height: 100px;
    position: relative;
}

.layer {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.l1 {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 215, 0, 0.2);
}

.l2 {
    width: 85%;
    height: 85%;
    background-color: rgba(255, 215, 0, 0.4);
    margin-top: -13px;
}

.l3 {
    width: 80%;
    height: 80%;
    background-color: rgba(255, 215, 0, 0.6);
    margin-top: -13px;
}
.l4 {
    width: 75%;
    height: 75%;
    background-color: rgba(255, 215, 0, 0.8);
    margin-top: -19px;
}
.l5 {
    width: 70%;
    height: 70%;
background-color: rgba(255, 215, 0, 0.9);
    /* box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.3); */
    margin-top: -15px;
}
.circles-container {
    display: flex;
    justify-content: left;
    align-items: start;
}

.c-layer {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* a.btn.btn--dark-pill {
    background: #050d26 !important;
    color: #ff5c1d !important;
    z-index: 1;
}

a.btn.btn--dark-pill:before {
    background-color: #ff5c1d !important;
    z-index: -3;
} */
/* Sab se bahar wali layer */
.p1 {
    width: 100px;
    height: 100px;
    background: rgba(255, 92, 29, 0.15); /* Light peach */
}

/* Darmiyan wali layer */
.p2 {
    width: 70%;
    height: 70%;
    background: rgba(255, 92, 29, 0.2);
}

.p3 {
    width: 60%;
    height: 60%;
    background: #ffa07a; /* Solid color */
}
.sphere-container:hover .layer {
    transform: scale(1.02);
}
.card__orb {
  width: 80px; height: 80px; border-radius: 50%;
  margin-bottom: 28px; position: relative;
}
.card__orb::before, .card__orb::after {
  content:''; position: absolute; border-radius: 50%;
}
.card__orb--red { background: radial-gradient(circle, #ff9999 0%, #ff6b6b 40%, #ff444460 80%, transparent 100%); }
.card__orb--yellow { background: radial-gradient(circle, #ffe066 0%, #f5c300 40%, #f5c30060 80%, transparent 100%); }
.card__orb--blue { background: radial-gradient(circle, #8ab4ff 0%, #2B45FF 30%, transparent 100%); }

.card__num {
    font-size: 22px;
    line-height: 34px;
    font-weight: 900;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
    font-family: 'BaseNeueBold';
}.card__title {
    font-family: 'BaseNeueBold';
    font-size: 50px;
    line-height: 62px;
    letter-spacing: 0.5px;
    color: #0D1220;
    margin-bottom: 16px;
}
.card__desc {
    font-size: 19px;
    color: #030919;
    line-height: 31px;
}
.card__border {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; border-radius: 0 0 20px 20px;
}
.card__border--red { background: linear-gradient(90deg, var(--orange), #ff4444); }
.card__border--yellow { background: linear-gradient(90deg, #f5c300, #ffdb58); }
.card__border--blue { background: linear-gradient(90deg, var(--blue), #6b8fff); }

.cards-cta {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 999;
}
a.btn.btn--dark-pill {
    background: #000 !important;
}
/* ============================================================
   HOW HUX9 WORKS
   ============================================================ */
.how-section {
  position: relative;
  background: #2B45FF;
  padding: 80px 0;
  overflow: hidden;
}
.how-section__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.how-section__wave {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100%; min-height: 65%; object-fit: cover; opacity: 1;
}
.how-section__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.how-section__title {
  font-family: var(--font-display);
  font-size: 93px;
  line-height: 100px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  transform: scaleY(1.3);
  color: var(--white);
  /* margin-bottom: 20px; */
}
.how-section__sub {
    font-size: 20px;
    color: #cedcec;
    line-height: 32px;
    max-width: 79%;
}
a#howBtn{
      width: 42%;
}
/* Steps */
.how-section__steps { display: flex; flex-direction: column; gap: 16px; }
.step { position: relative; }
.step__card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 28px 100px 28px 28px;
  backdrop-filter: blur(8px);
  transition: background var(--t);
}
.step--active .step__card {
  background: var(--white);
  border-color: transparent;
  border-bottom: 4px solid var(--yellow);
}
.step__card h4 { font-family: var(--font-display); font-size: 26px; color: #0D1220; margin-bottom: 10px; }
.step--active .step__card h4 { color: #0D1220; }
.step__card:not(.step--active .step__card) h4 { color: var(--white); }
.step__card p { font-size: 14px; color: #555; line-height: 1.65; }
.step:not(.step--active) .step__card p { color: rgba(255,255,255,0.75); }
.step__num {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 52px; color: rgba(200,210,255,0.3);
  line-height: 1; pointer-events: none;
}
.step--active .step__num { color: rgba(43,69,255,0.15); }


/* ============================================================
   FROM PROBLEM TO SOLUTION
   ============================================================ */
.problem-section {
  position: relative;
  background: #F8F5EE;
  padding: 100px 0 60px;
  overflow: hidden;
}
.problem-section__glow {
  position: absolute; left: 50%; top: 20%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,195,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.problem-section__heading { margin-bottom: 48px; text-align: center; }
.problem-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 74px);
    letter-spacing: 1px;
    line-height: 75px;
    color: #050d26;
    text-align: start;
    transform: scaleY(1.3);
}
.problem-title--yellow {
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    transform: scaleY(1.3);
    line-height: 115px;

}
/* .problem-arrow svg { flex-shrink: 0; } */
.problem-title--yellow span.problem-arrow img {
    width: 75px;
}
/* Grid */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

.problem-col { padding: 0; }
.problem-col--dark { background: #141820; }
.problem-col--orange { background: linear-gradient(145deg, #FF8C00, #FF6B00, #FFAA00); }

.problem-col__header {
  padding: 16px 28px;
  font-family: var(--font-display); font-size: 14px; letter-spacing: 2px;
  background: #2B45FF; color: var(--white);
  text-align: center;
}
.problem-col__header--orange {
  background: #1a0d00; color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px;
}
.logo-sm { font-family: var(--font-body); font-weight: 700; font-size: 18px; display: flex; align-items: center; gap: 3px; }

.problem-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.problem-item:last-child { border-bottom: none; }
.problem-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.problem-item__icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--white); font-weight: 700;
}
.problem-item--light p { color: rgba(255,255,255,0.9); }
.problem-item__icon--blue {
  background: transparent;
  width: 28px; height: 28px;
}

.problem-section__cta { display: flex; justify-content: center; margin-top: 48px; }


/* ============================================================
   OUR CAPABILITIES
   ============================================================ */
.capabilities-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-image: url(images/Layer-2-copy-6.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.capability-item:before {
    content: "";
    background-image: url(images/Rectangle-6-copy-10.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
    display: flex;
    left: -29px;
    top: 61px;
    height: 172px;
    width: 56px;
}
.capabilities-section__lines {
  position: absolute; right: 0; top: 0; width: 340px; opacity: 0.4; pointer-events: none;
}
.capabilities-section__lines img { width: 100%; }

.capabilities-section__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.capabilities-title {
    font-family: 'BaseNeueBold';
    font-size: 100px;
    line-height: 112px !important;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.capabilities-3d img {
    max-width: 75%;
}
/* Capability items */
.capability-item {
  display: flex; align-items: center; gap: 80px;
  padding: 18px 0;
}
.capability-item__icon-wrap {
  width: 82px; height: 82px; flex-shrink: 0;
  background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.capabilities-section__right > :nth-child(3)::before, .capabilities-section__right > :nth-child(7)::before {
    top: 70px;
    left: 63px;
    transform: rotate(180deg);
    height: 160px;
}
.capabilities-section__right > :nth-child(9)::before{
  display: none;
}
.capability-item__icon-fallback {
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: 22px; border-radius: 14px;
}
.capability-item__connector {
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, rgba(245,195,0,0.6), transparent);
  flex-shrink: 0;
}
.capability-item__text h4 {
    font-family: 'BaseNeueBold';
    font-size: 37px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.capability-item__text p { font-size: 18px; color: #4f535e; }

.capability-arrow {
  font-size: 12px; color: var(--yellow);
  margin: 6px 0 6px 30px;
}


/* ============================================================
   WHAT WE BUILD / DON'T
   ============================================================ */
.build-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background-image: url(images/Layer-2-copy-71.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
/* .build-section__wave {
  position: absolute; inset: 0; pointer-events: none;
} */
/* .build-section__wave img {
  position: absolute; bottom: 0; left: 0; width: 100%; opacity: 0.25; object-fit: cover;
} */

.build-section__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: center;
}
.build-title {
    font-family: var(--font-display);
    font-size: 79px;
    line-height: 85px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transform: scale(1.1);
    margin-left: 24px;
}
.build-desc {
    font-size: 19px;
    color: #fff;
    line-height: 1.75;
    max-width: 80%;
    /* margin-left: -24px; */
}
.build-section__right > :nth-child(1) {
    background: #21062f !important;
    border-radius: 12px 0px 0px 12px;
}
.build-section__right { display: grid; grid-template-columns: 1fr 1fr; gap: 0px; }
.build-col { background: rgba(255,255,255,0.05); border-radius: 12px 12px 12px 12px; overflow: hidden; }
.build-col--dropped { border-radius: 0px 12px 12px 0px;}

.build-col__header {
    padding: 31px 42px;
    font-family: var(--font-display);
    font-size: 23px;
    transform: scale(1.1);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot--green {
    background: #b2df26;
}
.dot--red { background: #ff0000; }

.build-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.build-row:last-child { border-bottom: none; }
.build-row p {
    font-size: 17px;
    color: #bdb5c1;
    line-height: 31px;
}
.build-check { color: #22c55e; font-size: 15px; flex-shrink: 0; margin-top: 7px; }
.build-cross { color: #ef4444; font-size: 15px; flex-shrink: 0; margin-top: 7px; }


/* ============================================================
   BUILT ACROSS TIMEZONES
   ============================================================ */
.timezones-section {
  background: var(--white);
  padding: 100px 0;
}
.timezones-section__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.globe-wrap { max-width: 100%; margin: 0 auto 40px; }
.globe-wrap img {
    width: 100%;
    /* Initial Glow */
    filter: drop-shadow(0 10px 40px rgba(43, 69, 255, 0.3));
    
    /* Animation Call: Floating aur Glow dono ek sath */
    animation: uniqueGlobeLoop 6s ease-in-out infinite;
    
    /* Smoothness ke liye */
    will-change: transform, filter;
}

@keyframes uniqueGlobeLoop {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 10px 40px rgba(43, 69, 255, 0.3));
    }
    33% {
        /* Halka sa tilt aur upar move */
        transform: translateY(-15px) scale(1.02) rotate(2deg);
        /* Glow barh jayegi */
        filter: drop-shadow(0 20px 60px rgba(43, 69, 255, 0.6));
    }
    66% {
        /* Doosri taraf tilt */
        transform: translateY(-5px) scale(0.98) rotate(-2deg);
        filter: drop-shadow(0 15px 30px rgba(43, 69, 255, 0.4));
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 10px 40px rgba(43, 69, 255, 0.3));
    }
}
.timezones-cta { display: flex; justify-content: center;     position: relative; z-index: 0;}

.timezones-title {
    font-family: var(--font-display);
    font-size: 76px;
    line-height: 88px;
    letter-spacing: 1px;
    color: #0D1220;
    margin-bottom: 40px;
    transform: scale(1.1);
    margin-left: 33px;
}

.timezone-feature {
    background: #F0F3FA;
    border-radius: 14px;
    padding: 40px 37px 20px;
    margin-bottom: 21px;
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid #f4581d;
}
.timezone-feature__title {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 0.5px;
    color: #0D1220;
    margin-bottom: 6px;
    transform: scale(1.2);
    margin-left: 62px;
}
.timezone-feature__desc {
    font-size: 18px;
    color: #000;
    line-height: 30px;
    margin-bottom: 16px;
}
.timezone-feature__bar {
  height: 3px; border-radius: 2px;
  width: 100%;
}
.timezone-feature.col2 {
    border-color: #f4c522;
}
.timezone-feature.col3 {
    border-color: #1e4dff;
}
/* .timezone-feature__bar--red { background: linear-gradient(90deg, var(--orange), transparent); }
.timezone-feature__bar--yellow { background: linear-gradient(90deg, var(--yellow), transparent); }
.timezone-feature__bar--blue { background: linear-gradient(90deg, var(--blue), transparent); } */


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  background: #030919;
  padding: 120px 0;
  overflow: hidden;
}
.cta-section__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-wave {
  position: absolute; left: 0; width: 100%;
}
.cta-wave--top {
    top: 0;
    transform: rotate(180deg);
    opacity: 0.8;
    filter: blur(30px);
    /* Transition ko slow rakhein taake pani jaisa flow aaye */
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.8s ease, 
                filter 0.8s ease;
    will-change: transform;
}

/* Hover Effect: Pure Section ya Parent par hover karne se wave move hogi */
.cta-section:hover .cta-wave--top {
    /* rotate(180deg) ko barkrar rakhte hue scale aur skew add kiya hai */
    transform: rotate(180deg) scaleY(1.3) scaleX(1.1) skewX(5deg);
    opacity: 1;
    filter: blur(20px); /* Blur thoda kam karne se wave waziha hogi */
}

/* Loop Animation (Agar aap chahte hain ke hover par wave hilti rahe) */
.your-parent-section:hover .cta-wave--top {
    animation: waterFlow 3s ease-in-out infinite alternate;
}

@keyframes waterFlow {
    0% {
        transform: rotate(180deg) scaleY(1.2) skewX(0deg);
    }
    100% {
        transform: rotate(180deg) scaleY(1.4) skewX(8deg);
    }
}.cta-wave--bottom { bottom: 0; opacity: 0.8; filter: blur(30px);}

.cta-section__inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-title {
    font-family: var(--font-display);
    font-size: 86px;
    line-height: 93px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    transform: scale(1.1);
}
.cta-desc {
    font-size: 18px;
    color: #fff;
    max-width: 100%;
    margin: 0 auto 48px;
    line-height: 30px;
}
.cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;  position: relative; z-index: 0;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #010511;
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer__inner { }
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1.2fr 0.6fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer__logo { margin-bottom: 20px; }
.footer__tagline {
    font-size: 18px;
    color: #808288;
    line-height: 1.7;
    max-width: 72%;
}
.footer__col-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    font-family: 'BaseNeueBold';
}
.footer__col.col1 .footer__col-line {
    width: 39%;
    background: #ff5c1d;
}
.footer__col-line {
      width: 39%;
   height: 2px; background: var(--yellow); border-radius: 2px;
  margin-bottom: 20px;
}
.col3 .footer__col-line {
    width: 78%;
    background: #173ec7;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col a {
    font-size: 19px;
    color: #808288;
}.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__copy {
    font-size: 18px;
    color: #808288;
}
.footer__legal { display: flex; align-items: center; gap: 12px; }
.footer__legal a { font-size: 18px; color: #808288; }
.footer__legal a:hover { color: var(--white); }
.footer__legal span { color: var(--border); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__lines-deco { display: none; }
  .how-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .capabilities-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .build-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .timezones-section__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .problem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 20px; }

  .nav {
    display: none; position: fixed;
    top: var(--header-h); left: 0; width: 100%;
    background: #0D1220;
    border-bottom: 1px solid var(--border);
    padding: 28px 20px 36px;
  }
  .nav.open { display: block; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 6px; }
  .nav__link { font-size: 20px; color: var(--white); padding: 10px 0; display: block; }
  .hamburger { display: flex; }

  .hero { padding-top: var(--header-h); min-height: auto; }
  .hero__inner { padding: 48px 0 60px; }
  .hero__title { font-size: 62px; }
  .hero__stats { gap: 36px; }
  .stat__num { font-size: 44px; }

  .cards-grid { grid-template-columns: 1fr; }
  .mockup-section { padding-bottom: 48px; }

  .build-section__right { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .how-section { padding: 60px 0; }
  .capabilities-section { padding: 60px 0; }
  .build-section { padding: 60px 0; }
  .timezones-section { padding: 60px 0; }
  .cta-section { padding: 80px 0; }
  .footer { padding-top: 48px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 52px; }
  .hero__btns { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
  /* *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #2B45FF;
    --yellow: #FFB800;
    --white: #ffffff;
    --dark: #0D1220;
  } */

  /* body {
    font-family: 'Barlow', sans-serif;
    background: #111;
  } */

  /* ── STICKY WRAPPER ── */
  .how-wrapper {
    position: relative; 
  background: #2B45FF;
  /* padding: 80px 0; */
  /* overflow: hidden; */
    height: 200vh;
  }

  .how-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--blue);
  }

  /* ── COLORFUL BLOB BG ── */
  .how-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
  }
  .blob-1 { width: 420px; height: 420px; top: -80px; right: 15%; background: radial-gradient(circle, #ff3cac, #784ba0); }
  .blob-2 { width: 300px; height: 300px; top: 30%; right: 5%;  background: radial-gradient(circle, #2af598, #009efd); }
  .blob-3 { width: 260px; height: 260px; bottom: -60px; right: 30%; background: radial-gradient(circle, #f7971e, #ffd200); opacity: 0.35; }

  /* ── LAYOUT ── */
  .how-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 97px;
  }

  /* ── LEFT PANEL ── */
  .how-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .how-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(64px, 7vw, 100px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 1px;
    transform: scaleY(1.15);
    transform-origin: top left;
  }
  /* .how-title span { color: var(--yellow); display: block; } */

  .how-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(220,230,255,0.85);
    max-width: 380px;
    min-height: 56px;
    transition: opacity 0.4s ease;
  }

  .how-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: 2px solid var(--yellow);
    border-radius: 100px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: background 0.25s, color 0.25s;
  }
  .how-btn:hover { background: var(--yellow); color: var(--dark); }

  .btn-icon {
    width: 28px; height: 28px;
    background: var(--yellow);
    border-radius: 50%;
    display: grid; place-items: center;
    transition: background 0.25s;
  }
  .how-btn:hover .btn-icon { background: var(--dark); }
  .btn-icon svg { width: 14px; height: 14px; fill: var(--dark); }
  .how-btn:hover .btn-icon svg { fill: var(--yellow); }

  /* ── RIGHT: STEP CARDS STACK ── */
  .how-steps {
    position: relative;
    height: 320px;
    perspective: 900px;
  }

  .step-card {
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 96px 110px 36px 36px;
    border-bottom: 4px solid var(--yellow);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    transform-origin: bottom center;
    will-change: transform, opacity;
    /* initial stacked appearance */
    transition: none; /* JS handles transforms */
  }

 .step-name {
    font-family: 'BaseNeue';
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    transform: scaleY(1.3);
}

.step-desc {
    font-size: 19px;
    color: #000;
    line-height: 31px;
}
.step-num {
    position: absolute;
    right: 24px;
    top: 10%;
    font-family: 'BaseNeue';
    font-size: 60px;
    font-weight: 900;
    color: rgba(43, 69, 255, 0.12);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -2px;
    font-size: 111px;
    transform: scaleY(1.3);
}

:root {
    --dark-bg: #0b0d17;
    --orange-grad: linear-gradient(135deg, #ff5c1d 0%, #ff8a00 50%, #ffc800 100%);
    --blue-accent: #4d6fff;
}

.comparison-section {
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
}

.comparison-container {
    display: flex;
    max-width: 100%;
    width: 100%;
    position: relative;
}

.panel {
    padding: 60px 40px;
    flex: 1;
    border-radius: 12px;
}

/* Left Dark Panel */
.left-panel {
    background-color: var(--dark-bg);
    color: white;
    z-index: 1;
    margin-right: -20px;
    padding-top: 80px;
    padding-right: 44px;
    height: 495px;
    margin-top: 60px;
}

.blue-tag {
    background-color: var(--blue-accent);
    color: white;
    padding: 10px 43px;
    border-radius: 15px 15px 0 0;
    position: absolute;
    top: -4px;
    left: 13%;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'BaseNeueBold';
    letter-spacing: 2px;
    transform: scale(1.2);
}
.left-panel .list-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1d2230;
}
.left-panel .list-item:last-of-type {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Right Orange Panel */
.right-panel {
    background-image: url(images/Vector-Smart-Object-copy-9.png);
    color: white;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 615px;
    background-size: 100% 100%;
}
/* Panel Header (Black Box) */
.panel-header {
    background: #000;
    width: fit-content;
    padding: 8px 70px;
    border-radius: 0 0 15px 15px;
    margin: -60px auto 40px;
}
.right-panel .logo-box {
    width: 75px;
    height: 75px;
    border: 7px solid #4c73ff;
    border-radius: 16px;
}
.brand-name {
    font-weight: bold;
    font-size: 32px;
    display: flex;
    align-items: center;
    font-family: 'BaseNeueBold';
    transform: scale(1.1);
    gap: 10px;
}
span.brand-name img {
    width: 123px;
}
.brand-name span { color: var(--blue-accent); }

/* List Items Styling */
.list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}
.logo-box img {
    width: 33px;
}
.icon-box, .logo-box {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.left-panel p {
    font-size: 20px !important;
    color: #a9abb1 !important;
    line-height: 32px !important;
}
.icon-box {
    color: black;
    font-weight: bold;
    font-size: 30px;
}

.right-panel p {
    font-size: 20px;
}
/* .panel p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
} */
.right-panel .list-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #feb38b;
}
.right-panel .list-item:last-of-type {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Responsive */
@media (max-width: 900px) {
    .comparison-container { flex-direction: column; }
    .left-panel { margin-right: 0; margin-bottom: -30px; }
    .blue-tag { left: 40px; }
}