.nxZ_heroFix_991 {
  position: relative;
  min-height: 100vh;
  padding-top: 180px;
  padding-bottom: 80px;
  background: #0b0b0f;
  overflow: hidden;
  color: #fff;
}

/* CANVAS */
#nxZ_aiCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

/* CONTENT */
.nxZ_container_991 {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 3;
}

/* TITLE */
.nxZ_title_991 {
  font-size: 60px;
  font-weight: 700;
}

/* MORPH TEXT */
.nxZ_typingContainer_991 {
  position: relative;
  height: 80px;
  margin-top: 10px;
}

.nxZ_word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  opacity: 0;
  font-size: 60px;
  white-space: nowrap;

  background: linear-gradient(90deg,#ffae00,#ff5e00,#6ea8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: all 0.6s ease;
}

.nxZ_word.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* DESC */
.nxZ_desc_991 {
  margin-top: 20px;
  color: #bbb;
}

/* BUTTON */
.nxZ_btn_991 {
  margin-top: 30px;
  padding: 14px 40px;
  border-radius: 40px;

  background: linear-gradient(135deg,#ffae00,#ff6a00);
  border: none;
  cursor: pointer;

  font-weight: 600;

  box-shadow: 0 0 20px rgba(255,170,0,0.4);
  transition: all 0.3s ease;
}

.nxZ_btn_991:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255,170,0,0.9);
}

/* INITIAL HIDDEN STATE */
.nxZ_title_991,
.nxZ_desc_991,
.nxZ_btn_991,
.nxZ_card_991 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.nxZ_floatIcon_991 {
  filter:
    drop-shadow(0 0 10px rgba(255,170,0,0.6))
    drop-shadow(0 0 20px rgba(255,170,0,0.3));
}

/* RATINGS */
.nxZ_ratingWrap_991 {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* GLASS CARDS */
.nxZ_card_991 {
  padding: 14px 26px;
  border-radius: 40px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,170,0,0.25);

  box-shadow:
    0 0 10px rgba(255,170,0,0.2),
    inset 0 0 10px rgba(255,170,0,0.1);

  transition: all 0.4s ease;
}

/* HOVER PREMIUM */
.nxZ_card_991:hover {
  transform: translateY(-6px) scale(1.05);

  box-shadow:
    0 0 25px rgba(255,170,0,0.8),
    0 0 60px rgba(255,170,0,0.3);
}

/* FLOATING ICONS */
.nxZ_floatWrap_991 {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.nxZ_floatIcon_991 {
  position: absolute;
  font-size: 32px;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(255,170,0,0.7));
}

/* POSITIONS + MOTION */
.nxZ_cart_991 {
  top: 20%;
  left: 8%;
  animation: float1 6s infinite alternate;
}

.nxZ_pay_991 {
  top: 60%;
  right: 10%;
  animation: float2 7s infinite alternate;
}

.nxZ_ai_991 {
  bottom: 20%;
  left: 20%;
  animation: float3 8s infinite alternate;
}

.nxZ_chart_991 {
  top: 40%;
  right: 30%;
  animation: float4 6s infinite alternate;
}

/* KEYFRAMES */
@keyframes float1 {
  from { transform: translateY(0); }
  to { transform: translateY(-40px); }
}

@keyframes float2 {
  from { transform: translateX(0); }
  to { transform: translateX(-50px); }
}

@keyframes float3 {
  from { transform: translateY(0); }
  to { transform: translateY(-60px); }
}

@keyframes float4 {
  from { transform: translateY(0); }
  to { transform: translateY(-30px); }
}

/* GLOW BACKGROUND */
.nxZ_heroFix_991::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,170,0,0.2), transparent 70%);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);
  z-index: 1;
}

/* RESPONSIVE */
@media(max-width:768px){
  .nxZ_title_991 { font-size: 36px; }
}

.nxZ_heroFix_991::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,170,0,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,120,0,0.12), transparent 40%);

  z-index: 1;
}

@media(max-width:768px){

  .nxZ_typingContainer_991 {
    height: auto;
    min-height: 60px;
  }

  .nxZ_word {
    position: relative;
    left: auto;
    transform: none;

    font-size: 32px;
    line-height: 1.2;

    white-space: normal;   /* ✅ allow wrapping */
    text-align: center;
  }

}

/*Hero Section CSS by Rishabh Ends*/

/*Second Section CSS by Rishabh Starts*/
.lxA_flowUltra_4721 {
  padding: 120px 20px;
  background: #0b0b0f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.lxA_container_4721 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.lxA_title_4721 {
  font-size: 42px;
  font-weight: 700;
}

.lxA_desc_4721 {
  margin-top: 15px;
  color: #bbb;
}

/* FLOW WRAP */
.lxA_flowWrap_4721 {
  position: relative;
  margin-top: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LINE */
.lxA_line_4721 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, transparent, #ffae00, transparent);
  transform: translateY(-50%);
  z-index: 0;
}

/* NODE */
.lxA_node_4721 {
  position: relative;
  z-index: 2;

  width: 120px;
  height: 120px;

  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  font-size: 28px;

  border: 1px solid rgba(255,170,0,0.2);

  transition: all 0.4s ease;
}

/* LABEL */
.lxA_node_4721 span {
  margin-top: 8px;
  font-size: 12px;
  color: #aaa;
}

/* ACTIVE NODE (AI) */
.lxA_node_4721.active {
  box-shadow:
    0 0 30px rgba(255,170,0,0.9),
    0 0 60px rgba(255,170,0,0.3);

  transform: scale(1.1);
}

/* HOVER EFFECT */
.lxA_node_4721:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255,170,0,0.7);
}

/* RESPONSIVE */
@media(max-width:768px){
  .lxA_flowWrap_4721 {
    flex-direction: column;
    gap: 30px;
  }

  .lxA_line_4721 {
    display: none;
  }
}

/* FLOW WRAP */
.lxA_flowWrap_4721 {
  position: relative;
  margin-top: 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BASE LINE */
.lxA_line_4721 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, transparent, #ffae00, transparent);
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.3;
}

/* MOVING ENERGY */
.lxA_energy_4721 {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120px;
  height: 6px;

  background: linear-gradient(90deg, transparent, #ffae00, transparent);
  filter: blur(6px);

  transform: translateY(-50%);
  animation: energyMove 4s linear infinite;
  z-index: 1;
}

@keyframes energyMove {
  0% { left: -10%; }
  100% { left: 110%; }
}

/* NODE */
.lxA_node_4721 {
  position: relative;
  z-index: 2;

  width: 120px;
  height: 120px;

  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  font-size: 28px;

  border: 1px solid rgba(255,170,0,0.2);

  transition: all 0.4s ease;

  animation: floatNode 4s ease-in-out infinite;
}

/* FLOATING MOTION */
@keyframes floatNode {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* LABEL */
.lxA_node_4721 span {
  margin-top: 8px;
  font-size: 12px;
  color: #aaa;
}

/* ACTIVE NODE */
.lxA_node_4721.active {
  box-shadow:
    0 0 30px rgba(255,170,0,0.9),
    0 0 60px rgba(255,170,0,0.3);

  transform: scale(1.15);
}

/* HOVER */
.lxA_node_4721:hover {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(255,170,0,0.8);
}

@media(max-width:768px){

  /* FLOW WRAP → COLUMN */
  .lxA_flowWrap_4721 {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
  }

  /* HIDE HORIZONTAL LINE */
  .lxA_line_4721 {
    display: none;
  }

  /* VERTICAL LINE */
  .lxA_flowWrap_4721::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;

    background: linear-gradient(
      to bottom,
      transparent,
      #ffae00,
      transparent
    );

    opacity: 0.4;
    z-index: 0;
  }

  /* ENERGY FLOW VERTICAL */
  .lxA_energy_4721 {
    width: 6px;
    height: 100px;

    left: 50%;
    top: -10%;

    transform: translateX(-50%);
    animation: energyMoveVertical 4s linear infinite;
  }

  @keyframes energyMoveVertical {
    0% { top: -10%; }
    100% { top: 110%; }
  }

  /* NODE CENTER FIX */
  .lxA_node_4721 {
    width: 100px;
    height: 100px;
    font-size: 24px;
  }

}
@media(max-width:768px){
  .lxA_node_4721 {
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(255,170,0,0.3);
  }
}
/*Second Section CSS by Rishabh Ends*/

/*Features Section CSS by Rishabh Starts*/
.qxF_featuresUltra_771 {
  padding: 120px 20px;

  /* MATCHED TO YOUR HERO THEME */
  background: linear-gradient(
    180deg,
    #0c0f1a 0%,
    #13182a 50%,
    #0e1220 100%
  );

  color: #fff;
  position: relative;
  overflow: hidden;
}


.qxF_featuresUltra_771::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;

  background: radial-gradient(
    circle,
    rgba(255, 200, 0, 0.12),
    rgba(80, 120, 255, 0.08),
    transparent 70%
  );

  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(140px);

  z-index: 0;
}


.qxF_featuresUltra_771::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.03),
    transparent,
    rgba(255,255,255,0.02)
  );

  z-index: 0;
}

/* CONTAINER */
.qxF_container_771 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.qxF_title_771 {
  font-size: 42px;
  font-weight: 700;
}

.qxF_desc_771 {
  margin-top: 15px;
  color: #bbb;
}

/* GRID */
.qxF_grid_771 {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.qxF_card_771 {
  position: relative;
  padding: 30px;
  border-radius: 20px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);

  overflow: hidden;

  transition: all 0.4s ease;
}

/* GRADIENT BORDER LAYER */
.qxF_card_771::before {
  content: "";
  position: absolute;
  inset: -1px;

  border-radius: 20px;

  background: linear-gradient(
    120deg,
    #ffae00,
    #ff5e00,
    #6ea8ff,
    #ffae00
  );

  background-size: 300% 300%;

  animation: borderMove 6s linear infinite;

  z-index: 0;
}

/* INNER CONTENT LAYER */
.qxF_card_771::after {
  content: "";
  position: absolute;
  inset: 1px;

  border-radius: 20px;
  background: #111116;

  z-index: 1;
}

/* CONTENT ABOVE */
.qxF_card_771 * {
  position: relative;
  z-index: 2;
}

/* ANIMATION */
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* GLOW EFFECT */
.qxF_card_771::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at top, rgba(255,170,0,0.2), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.qxF_card_771:hover::before {
  opacity: 1;
}

/* HOVER */
.qxF_card_771:hover {
  transform: translateY(-10px) scale(1.03);

  box-shadow:
    0 0 40px rgba(255,170,0,0.6),
    0 0 80px rgba(255,170,0,0.2);
}

/* ICON */
.qxF_icon_771 {
  font-size: 36px;
  margin-bottom: 15px;

  animation: iconGlow 2.5s ease-in-out infinite;
}

/* GLOW PULSE */
@keyframes iconGlow {
  0% {
    text-shadow: 0 0 5px rgba(255,170,0,0.4);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(255,170,0,1),
                 0 0 40px rgba(255,170,0,0.6);
    transform: scale(1.1);
  }
  100% {
    text-shadow: 0 0 5px rgba(255,170,0,0.4);
    transform: scale(1);
  }
}

/* TEXT */
.qxF_card_771 h3 {
  margin-bottom: 10px;
}

.qxF_card_771 p {
  color: #aaa;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .qxF_grid_771 {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .qxF_grid_771 {
    grid-template-columns: 1fr;
  }
}

.qxF_featuresUltra_771::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;

  background: radial-gradient(circle, rgba(255,170,0,0.08), transparent 70%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);

  z-index: 0;
}
/*Features Section CSS by Rishabh Ends*/

/*Dashboard Sectio CSS by Rishabh Starts*/
.dzX_dashboardUltra_6621 {
  padding: 120px 20px;

  background: linear-gradient(
    180deg,
    #0c0f1a,
    #13182a,
    #0e1220
  );

  position: relative;
  color: #fff;
  overflow: hidden;
}

/* CONTAINER */
.dzX_container_6621 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.dzX_title_6621 {
  font-size: 42px;
  font-weight: 700;
}

.dzX_desc_6621 {
  margin-top: 10px;
  color: #bbb;
}

/* WRAP */
.dzX_dashWrap_6621 {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

/* MINI PANEL */
.dzX_panel_6621 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dzX_cardMini_6621 {
  padding: 20px;
  border-radius: 15px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,170,0,0.2);

  box-shadow: 0 0 15px rgba(255,170,0,0.2);

  transition: 0.3s;
}

.dzX_cardMini_6621:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255,170,0,0.6);
}

/* MAIN BOARD */
.dzX_mainBoard_6621 {
  padding: 30px;
  border-radius: 20px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,170,0,0.2);

  position: relative;
}

/* FAKE CHART */
.dzX_chart_6621 {
  height: 220px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
    radial-gradient(circle at 20% 50%, rgba(255,170,0,0.15), transparent 60%);

}

/* GRID LINES */
.dzX_chart_6621::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

  background-size: 40px 40px;
}

/* MOVING LIGHT */
.dzX_chart_6621::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.1),
    transparent
  );

  animation: chartShine 4s infinite;
}

@keyframes chartShine {
  0% { left: -50%; }
  100% { left: 120%; }
}

@keyframes chartMove {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* ACTIVITY */
.dzX_activity_6621 {
  margin-top: 20px;
  text-align: left;
  color: #aaa;
}

.dzX_activity_6621 div {
  margin-top: 10px;
  position: relative;
  padding-left: 10px;
}

/* PULSE DOT */
.dzX_activity_6621 div::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;

  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: #ffae00;

  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.dzX_mainBoard_6621 {
  position: relative;
}

/* INNER GLOW */
.dzX_mainBoard_6621::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 30% 20%,
    rgba(255,170,0,0.08),
    transparent 70%
  );

  z-index: 0;
}

.dzX_cardMini_6621 p {
  animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
  from { text-shadow: 0 0 5px rgba(255,170,0,0.3); }
  to { text-shadow: 0 0 15px rgba(255,170,0,0.8); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .dzX_dashWrap_6621 {
    grid-template-columns: 1fr;
  }
}

.dzX_chartSVG_6621 {
  width: 100%;
  height: 100%;
}

/* ANIMATE LINE DRAW */
.dzX_chartSVG_6621 polyline {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 3s ease forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
/*Dashboard Sectio CSS by Rishabh Ends*/

/*CTA Section CSS by Rishabh Starts*/
.ctA_ultraFinal_991 {
  padding: 140px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;

  background: radial-gradient(
    circle at center,
    #13182a,
    #0c0f1a 70%
  );
  color: #fff;
}

/* GLOW BACKGROUND */
.ctA_ultraFinal_991::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;

  background: radial-gradient(
    circle,
    rgba(255,170,0,0.15),
    rgba(80,120,255,0.08),
    transparent 70%
  );

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(160px);

  z-index: 0;
}

/* CONTAINER */
.ctA_container_991 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* TITLE */
.ctA_title_991 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;

  background: linear-gradient(
    90deg,
    #ffae00,
    #ff6a00,
    #6ea8ff,
    #ffae00
  );
  background-size: 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% }
  100% { background-position: 300% }
}

/* DESC */
.ctA_desc_991 {
  margin-top: 20px;
  color: #bbb;
  font-size: 16px;
}

/* BUTTON WRAP */
.ctA_btnWrap_991 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.ctA_btnPrimary_991 {
  padding: 16px 40px;
  border-radius: 40px;

  background: linear-gradient(135deg,#ffae00,#ff6a00);
  border: none;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 0 25px rgba(255,170,0,0.5);
  transition: all 0.3s ease;
}

.ctA_btnPrimary_991:hover {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(255,170,0,0.9);
}

/* SECONDARY BUTTON */
.ctA_btnSecondary_991 {
  padding: 16px 40px;
  border-radius: 40px;

  background: transparent;
  border: 1px solid rgba(255,170,0,0.4);
  color: #fff;

  cursor: pointer;
  transition: all 0.3s ease;
}

.ctA_btnSecondary_991:hover {
  background: rgba(255,170,0,0.1);
  box-shadow: 0 0 25px rgba(255,170,0,0.5);
}

/* TRUST TEXT */
.ctA_trust_991 {
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ctA_title_991 {
    font-size: 28px;
  }
}

/* SPOTLIGHT LAYER */
.ctA_spotlight_991 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(255,170,0,0.25), transparent 70%);
  filter: blur(80px);

  pointer-events: none;
  z-index: 1;

  transform: translate(-50%, -50%);
  opacity: 0.6;
}
/*CTA Section CSS by Rishabh Ends*/