/* HERO BASE */
.fxA_heroAI_8821 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 80px;

  background:
    radial-gradient(circle at 70% 40%, rgba(255,174,0,0.08), transparent 60%),
    radial-gradient(circle at 20% 60%, rgba(120,80,200,0.08), transparent 60%),
    #06070c;

  color: #fff;
  position: relative;
  overflow: hidden;
}

/* AI GRID */
.fxA_grid_8821 {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,174,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,174,0,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.4;
}

/* LEFT CONTENT */
.fxA_left_8821 {
  width: 50%;
  z-index: 2;
}

/* TITLE (GOLD GRADIENT) */
.fxA_title_8821 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;

  background: linear-gradient(90deg,#ffffff,#ffae00,#ff7b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESC */
.fxA_desc_8821 {
  margin-top: 20px;
  color: #aaa;
  max-width: 500px;
}

/* BUTTONS */
.fxA_btnWrap_8821 {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.fxA_btnPrimary_8821 {
  padding: 14px 32px;
  border-radius: 40px;

  background: linear-gradient(135deg,#ffae00,#ff6a00);
  border: none;
  color: #000;

  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 0 20px rgba(255,170,0,0.4);
  transition: all 0.3s ease;
}

.fxA_btnPrimary_8821:hover {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(255,170,0,0.9);
}

.fxA_btnGhost_8821 {
  padding: 14px 32px;
  border-radius: 40px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,174,0,0.2);
  color: #fff;

  backdrop-filter: blur(10px);
}

/* TRUST */
.fxA_trust_8821 {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #bbb;
}

/* RIGHT SIDE */
.fxA_right_8821 {
  width: 50%;
  position: relative;
  height: 500px;
}

/* CORE (GOLD ORB) */
.fxA_core_8821 {
  width: 160px;
  height: 160px;
  border-radius: 50%;

  background: radial-gradient(circle,#ffae00,#ff6a00);

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

  box-shadow: 0 0 15px rgba(255,170,0,0.3);

  animation: pulseGold 3s infinite;
}

@keyframes pulseGold {
  0% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.1); }
  100% { transform: translate(-50%,-50%) scale(1); }
}

/* NODES */
.fxA_node_8821 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffae00;
  position: absolute;

  box-shadow: 0 0 12px rgba(255,170,0,0.9);
}

.n1 { top: 10%; left: 30%; }
.n2 { top: 80%; left: 40%; }
.n3 { top: 20%; right: 20%; }
.n4 { bottom: 10%; right: 30%; }

/* DATA FLOW LINES */
.fxA_line_8821 {
  position: absolute;
  width: 2px;
  height: 140px;

  background: linear-gradient(#ffae00, transparent);
  opacity: 0.6;

  animation: flowGold 2s infinite linear;
}

@keyframes flowGold {
  0% { opacity: 0; transform: translateY(-30px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(30px); }
}

/* MOBILE */
@media(max-width:768px){
  .fxA_heroAI_8821 {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px;
  }

  .fxA_left_8821,
  .fxA_right_8821 {
    width: 100%;
  }

  .fxA_right_8821 {
    margin-top: 60px;
    height: 300px;
  }

  .fxA_title_8821 {
    font-size: 34px;
  }
}

.nxZ_heroFix_991 {
  transform: translateZ(0);
  will-change: transform;
}
/*Hero Section CSS by Rishabh by Ends*/


/*API Neural Network Section CSS by Rishabh Starts*/
/* SECTION */
.nxNet_flowAI_7721 {
  padding: 140px 20px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,170,0,0.08), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(120,80,200,0.08), transparent 60%),
    #06070c;
  color: #fff;
  overflow: hidden;
}

/* CONTAINER */
.nxNet_container_7721 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.nxNet_title_7721 {
  font-size: 42px;
  font-weight: 700;
}

.nxNet_desc_7721 {
  margin-top: 15px;
  color: #bbb;
}

/* NETWORK AREA */
.nxNet_canvasWrap_7721 {
  position: relative;
  margin-top: 100px;
  height: 500px;
}

/* CONNECTION LINES FROM CORE */
.nxNet_canvasWrap_7721::before,
.nxNet_canvasWrap_7721::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(#ffae00, transparent);
  opacity: 0.4;
  filter: blur(1px);
}

/* LEFT SIDE CONNECTION */
.nxNet_canvasWrap_7721::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
}

/* RIGHT SIDE CONNECTION */
.nxNet_canvasWrap_7721::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
}

/* EXTRA CONNECTION FOR 4TH NODE */
.n4::after {
  content: "";
  position: absolute;

  width: 2px;
  height: 160px;

  background: linear-gradient(#ffae00, transparent);
  opacity: 0.4;

  top: -120px;
  left: 50%;
  transform: translateX(-50%) rotate(20deg);
}

/* SVG */
/*.nxNet_svg_7721 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}*/

/*.nxNet_svg_7721 path {
  fill: none;
  stroke: rgba(255,170,0,0.4);
  stroke-width: 2;

  filter: drop-shadow(0 0 6px rgba(255,170,0,0.6));
}

.nxNet_svg_7721 line {
  stroke: rgba(255,170,0,0.5);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(255,170,0,0.6));
}*/

.nxNet_dataDot_7721 {
  position: absolute;
  width: 8px;
  height: 8px;

  background: #ffae00;
  border-radius: 50%;

  box-shadow: 0 0 12px #ffae00;

  z-index: 2;
  pointer-events: none;
}

/* CORE */
.nxNet_core_7721 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 150px;
  height: 150px;

  border-radius: 50%;
  background: radial-gradient(circle,#ffae00,#ff6a00);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  box-shadow: 0 0 15px rgba(255,170,0,0.3);

  z-index: 3;
  animation: corePulse 2.5s infinite ease-in-out;
}

@keyframes corePulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

/* NODES */
.nxNet_node_7721 {
  position: absolute;
  z-index: 2;

  width: 110px;
  height: 110px;

  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: 24px;

  border: 1px solid rgba(255,170,0,0.2);
  box-shadow: 0 0 15px rgba(255,170,0,0.3);

  transition: all 0.4s ease;
  animation: floatNode 4s ease-in-out infinite;
}

.nxNet_node_7721 span {
  font-size: 12px;
  margin-top: 5px;
  color: #aaa;
}

/* NODE POSITIONS (BALANCED) */
.n1 { top: 25%; left: 18%; }
.n2 { bottom: 20%; left: 28%; }
.n3 { top: 22%; right: 22%; }
.n4 { bottom: 22%; right: 18%; }

/* FLOAT */
@keyframes floatNode {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* HOVER */
.nxNet_node_7721:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,170,0,0.3);
}

/* DATA PULSES */
.nxNet_pulse_7721 {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffae00;
  border-radius: 50%;
  box-shadow: 0 0 12px #ffae00;
  z-index: 2;
}

/* SMOOTH MOVEMENTS */
.p1 { top: 30%; left: 30%; animation: move1 3s linear infinite; }
.p2 { top: 60%; left: 60%; animation: move2 3.5s linear infinite; }
.p3 { top: 40%; left: 70%; animation: move3 3.2s linear infinite; }
.p4 { top: 70%; left: 40%; animation: move4 3.8s linear infinite; }

@keyframes move1 {
  0% { transform: translate(0,0); opacity:0; }
  50% { opacity:1; }
  100% { transform: translate(120px,120px); opacity:0; }
}

@keyframes move2 {
  0% { transform: translate(0,0); opacity:0; }
  50% { opacity:1; }
  100% { transform: translate(-140px,-120px); opacity:0; }
}

@keyframes move3 {
  0% { transform: translate(0,0); opacity:0; }
  50% { opacity:1; }
  100% { transform: translate(-100px,80px); opacity:0; }
}

@keyframes move4 {
  0% { transform: translate(0,0); opacity:0; }
  50% { opacity:1; }
  100% { transform: translate(100px,-120px); opacity:0; }
}

/* RESPONSIVE */
@media(max-width:768px){

  .nxNet_canvasWrap_7721 {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .nxNet_svg_7721 {
    display: none;
  }

  .nxNet_node_7721,
  .nxNet_core_7721 {
    position: relative;
  }

}

/* SUBTLE NETWORK GLOW */
.nxNet_core_7721::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(255,170,0,0.15), transparent 70%);
  filter: blur(80px);

  z-index: -1;
}


/* INFO BOX */
.nxNet_infoBox_7721 {
  margin-top: 60px;

  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  z-index: 2;
  position: relative;
}

/* ITEM */
.nxNet_infoItem_7721 {
  padding: 14px 22px;
  border-radius: 30px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,170,0,0.25);

  font-size: 14px;
  color: #ddd;

  display: flex;
  align-items: center;
  gap: 10px;

  transition: all 0.3s ease;

  box-shadow: 0 0 15px rgba(255,170,0,0.3);
}

/* HOVER EFFECT */
.nxNet_infoItem_7721:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 15px rgba(255,170,0,0.3);
}
/*API Neural Network Section CSS by Rishabh Ends*/

/*Integration Types section CSS by Rishabh Starts*/
.zxQx_pyrWrap_8842 {
  padding: 120px 20px;
  background:
    radial-gradient(circle at 25% 35%, rgba(255,170,0,0.08), transparent 60%),
    radial-gradient(circle at 75% 65%, rgba(100,120,255,0.08), transparent 60%),
    #07080d;

  color: #fff;
  position: relative;
  isolation: isolate;
}

/* LAYOUT */
.zxQx_inner_8842 {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.zxQx_left_8842 {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* AI BACKGROUND (SAFE) */
.zxQx_bgAura_8842 {
  position: absolute;
  width: 260px;
  height: 260px;

  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,170,0,0.15), transparent 70%);
  opacity: 0.6;
}

/* PYRAMID */
.zxQx_pyramid_8842 {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 12px;
}

/* LAYERS */
.zxQx_layer_8842 {
  padding: 12px 20px;
  border-radius: 8px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,170,0,0.2);

  font-size: 14px;
  text-align: center;

  opacity: 0;
  transform: translateY(30px);

  transition: all 0.5s ease;
}

/* WIDTHS (PYRAMID SHAPE) */
.zL1 { width: 160px; }
.zL2 { width: 220px; }
.zL3 { width: 280px; }
.zL4 { width: 340px; }

/* ACTIVE */
.zxQx_layer_8842.active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(255,170,0,0.25);
}

/* HOVER */
.zxQx_layer_8842:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(255,170,0,0.5);
}

/* RIGHT */
.zxQx_right_8842 {
  flex: 1;
}

/* TEXT */
.zxQx_title_8842 {
  font-size: 38px;
  font-weight: 700;
}

.zxQx_desc_8842 {
  margin-top: 15px;
  color: #bbb;
}

/* POINTS */
.zxQx_points_8842 {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zxQx_point_8842 {
  padding: 12px 18px;
  border-radius: 25px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,170,0,0.2);

  font-size: 14;

  transition: 0.3s;
}

.zxQx_point_8842:hover {
  transform: translateX(6px);
  box-shadow: 0 0 15px rgba(255,170,0,0.4);
}

/* RESPONSIVE */
@media(max-width:900px){

  .zxQx_inner_8842 {
    flex-direction: column;
    text-align: center;
  }

  .zxQx_right_8842 {
    margin-top: 40px;
  }

}

/* ACTIVE PULSE */
.zxQx_layer_8842.active {
  animation: zxPulseGlow 2.5s infinite ease-in-out;
}

@keyframes zxPulseGlow {
  0%,100% {
    box-shadow: 0 0 10px rgba(255,170,0,0.25);
  }
  50% {
    box-shadow: 0 0 22px rgba(255,170,0,0.6);
  }
}

/* HOVER FOCUS SYSTEM */
.zxQx_pyramid_8842:hover .zxQx_layer_8842 {
  opacity: 0.3;
  transform: scale(0.95);
}

.zxQx_layer_8842:hover {
  opacity: 1 !important;
  transform: scale(1.05) !important;
  z-index: 3;

  box-shadow:
    0 0 25px rgba(255,170,0,0.7),
    0 0 50px rgba(255,170,0,0.3);
}

/* SMOOTH TRANSITIONS */
.zxQx_layer_8842 {
  transition: all 0.35s ease;
}

/* RIGHT SIDE FADE EFFECT */
.zxQx_right_8842 {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.zxFadeOut {
  opacity: 0;
  transform: translateY(10px);
}

.zxFadeIn {
  opacity: 1;
  transform: translateY(0);
}

/* GLOW TRAVEL DOT */
.zxQx_flowDot_8842 {
  position: absolute;
  width: 8px;
  height: 8px;

  background: #ffae00;
  border-radius: 50%;

  box-shadow:
    0 0 10px #ffae00,
    0 0 20px #ffae00;

  pointer-events: none;
  z-index: 3;

  opacity: 0;
}
/*Integration Types section CSS by Rishabh Ends*/

/*CTA Section CSS by Rishabh Starts*/
.zxCTA_wrap_5531 {
  padding: 120px 20px;
  text-align: center;

  background:
    radial-gradient(circle at 50% 40%, rgba(255,170,0,0.12), transparent 60%),
    #07080d;

  color: #fff;
}

.zxCTA_inner_5531 {
  max-width: 800px;
  margin: auto;
}

.zxCTA_title_5531 {
  font-size: 40px;
  font-weight: 700;
}

.zxCTA_desc_5531 {
  margin-top: 15px;
  color: #bbb;
}

/* BUTTONS */
.zxCTA_btnWrap_5531 {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.zxCTA_primary_5531 {
  padding: 14px 40px;
  border-radius: 40px;

  background: linear-gradient(135deg,#ffae00,#ff6a00);
  border: none;

  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 0 20px rgba(255,170,0,0.4);
  transition: 0.3s;
}

.zxCTA_primary_5531:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255,170,0,0.8);
}

.zxCTA_secondary_5531 {
  padding: 14px 40px;
  border-radius: 40px;

  background: transparent;
  border: 1px solid rgba(255,170,0,0.4);

  color: #fff;
  cursor: pointer;

  transition: 0.3s;
}

.zxCTA_secondary_5531:hover {
  background: rgba(255,170,0,0.1);
  box-shadow: 0 0 20px rgba(255,170,0,0.3);
}

/* RESPONSIVE */
@media(max-width:768px){
  .zxCTA_title_5531 { font-size: 28px; }
}
/*CTA Section CSS by Rishabh Ends*/