.qzx_aiHeroX {
  position: relative;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at 70% 40%, rgba(0,255,150,0.15), transparent),
              #000;
  overflow: hidden;
  color: #fff;
}

/* CANVAS */
#qzx_canvas_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* CONTAINER */
.qzx_containerX {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.qzx_leftX {
  max-width: 550px;
}

.qzx_titleX {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
}

.qzx_typingWrap {
  color: #00ff99;
}

.qzx_cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.qzx_descX {
  margin-top: 20px;
  opacity: 0.7;
  font-size: 18px;
}

.qzx_ctaX {
  margin-top: 30px;
  padding: 14px 30px;
  border-radius: 40px;
  background: transparent;
  border: 1px solid #00ff99;
  color: #00ff99;
  cursor: pointer;
  transition: 0.3s;
}

.qzx_ctaX:hover {
  background: #00ff99;
  color: #000;
}

/* RIGHT */
.qzx_rightX {
  flex: 1;
  display: flex;
  justify-content: center;
}

.qzx_handX {
  width: 500px;
  max-width: 100%;
  filter: brightness(0.9) contrast(1.2);
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width:768px){
  .qzx_containerX {
    flex-direction: column;
    text-align: center;
  }

  .qzx_titleX {
    font-size: 40px;
  }

  .qzx_handX {
    margin-top: 40px;
  }
}

.qzx_rightX {
  flex: 1;
  position: relative;
}

/* HAND BACKGROUND */
.qzx_handWrapX {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 750px;
  height: 500px;

  background: url("assets/images/robot-hand.png") no-repeat center;
  background-size: contain;

  /* 🔥 BLENDING MAGIC */
  filter: brightness(0.9) contrast(1.2);

  /* ✨ REMOVE HARD EDGES */
  -webkit-mask-image: radial-gradient(circle at 60% 50%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(circle at 60% 50%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);

  /* 🌟 GLOW */
  box-shadow: 
    0 0 120px rgba(0,255,150,0.25),
    0 0 250px rgba(0,255,150,0.15);

  opacity: 0.95;
}

.qzx_aiHeroX::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 40%;
  width: 600px;
  height: 600px;

  background: radial-gradient(circle, rgba(0,255,150,0.25), transparent 70%);
  filter: blur(120px);

  z-index: 0;
}

/*HERO Section CSS by Rishabh Ends*/

/*Second section CSS by Rishabh Starts*/

.nx_ai_flowX {
  position: relative;
  padding: 120px 20px;
  background: #000;
  overflow: hidden;
}

/* CANVAS BG */
#nx_bg_canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.nx_containerX {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.nx_titleX {
  font-size: 42px;
  margin-bottom: 80px;
}

.nx_titleX span {
  color: #00ff99;
}

/* FLOW */
.nx_flowX {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARDS */
.nx_cardX {
  flex: 1;
  min-width: 220px;
  padding: 40px;
  border-radius: 20px;

  background: rgba(0,255,150,0.03);
  border: 1px solid rgba(0,255,150,0.2);

  backdrop-filter: blur(10px);

  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GLOW PULSE */
.nx_cardX::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,255,150,0.15), transparent);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.nx_cardX:hover::before {
  opacity: 1;
}

/* HOVER */
.nx_cardX:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 40px rgba(0,255,150,0.2);
}

/* ICON */
.nx_iconX {
  font-size: 40px;
  margin-bottom: 15px;
}

/* TEXT */
.nx_cardX p {
  opacity: 0.6;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .nx_flowX {
    flex-direction: column;
  }
}

/*Second Section css by Rishabh Ends*/

/*Third section Cards CSS by Rishabh Starts*/
.zxq_ai_cards {
  position: relative;
  padding: 120px 20px;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.zxq_container_cards {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.zxq_cards_title {
  font-size: 42px;
  margin-bottom: 80px;
}

.zxq_cards_title span {
  color: #00ff99;
}

/* GRID */
.zxq_cards_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD BASE */
.zxq_card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.4s;
}

/* INNER */
.zxq_card_inner {
  padding: 50px;
  text-align: left;
  position: relative;
  z-index: 2;
}

/* TEXT */
.zxq_card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.zxq_card p {
  opacity: 0.6;
  margin-bottom: 20px;
}

.zxq_card button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
}

/* GLOW EFFECT */
.zxq_card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

/* HOVER STATES */
.zxq_card[data-glow="green"]:hover::before {
  background: radial-gradient(circle at 80% 80%, rgba(0,255,150,0.25), transparent 60%);
  opacity: 1;
}

.zxq_card[data-glow="blue"]:hover::before {
  background: radial-gradient(circle at 80% 80%, rgba(0,150,255,0.25), transparent 60%);
  opacity: 1;
}

.zxq_card[data-glow="purple"]:hover::before {
  background: radial-gradient(circle at 80% 80%, rgba(150,0,255,0.25), transparent 60%);
  opacity: 1;
}

.zxq_card[data-glow="teal"]:hover::before {
  background: radial-gradient(circle at 80% 80%, rgba(0,255,200,0.25), transparent 60%);
  opacity: 1;
}

/* HOVER LIFT */
.zxq_card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,150,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
  .zxq_cards_grid {
    grid-template-columns: 1fr;
  }

  .zxq_card_inner {
    padding: 30px;
  }
}

.zxq_card::before {
  background: radial-gradient(circle at var(--x) var(--y), rgba(0,255,150,0.25), transparent 60%);
}

/* GRAPHIC BASE */
.zxq_graphic {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ICON */
.zxq_graphic .icon {
  font-size: 40px;
  z-index: 2;
}

/* RINGS (like Tallium glow animation) */
.ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(0,255,150,0.3);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

.ring.delay {
  animation-delay: 1.5s;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.zxq_graph {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 120px;
}

.bar {
  width: 20px;
  background: linear-gradient(to top, #00ff99, #00ccff);
  border-radius: 5px;
  animation: grow 1.5s ease forwards;
}

@keyframes grow {
  from { height: 0; }
}

.zxq_ai_nodes span {
  width: 10px;
  height: 10px;
  background: #00ff99;
  border-radius: 50%;
  position: absolute;
  animation: float 3s infinite ease-in-out;
}

.zxq_ai_nodes span:nth-child(1) { top: 20px; left: 40px; }
.zxq_ai_nodes span:nth-child(2) { top: 60px; left: 80px; }
.zxq_ai_nodes span:nth-child(3) { top: 100px; left: 30px; }

@keyframes float {
  50% { transform: translateY(-10px); }
}
/*Third section Cards CSS by Rishabh Ends*/

/* =========================
   BASE
========================= */
body {
  margin: 0;
  background: #05070D;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* =========================
   LAYOUT
========================= */
.ai_hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ai_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(0,255,150,0.08), transparent 60%);
  filter: blur(120px);
}

.ai_hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;

  background: linear-gradient(
    to left,
    #05070D 0%,
    transparent 100%
  );

  pointer-events: none;
}

.ai_container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* =========================
   LEFT CONTENT
========================= */
.ai_left {
  flex: 1;
  z-index: 2;
}

.ai_heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}

.ai_highlight {
  color: #00ff9f;
}

.ai_sub {
  margin-top: 20px;
  font-size: 18px;
  color: #a0a0a0;
  max-width: 500px;
}

/* =========================
   BUTTON
========================= */
.ai_btn {
  margin-top: 30px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid #00ff9f;
  color: #00ff9f;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ai_btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,255,159,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.ai_btn:hover::after {
  opacity: 1;
}

/* =========================
   RIGHT VISUAL
========================= */
.ai_right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end; /* 🔥 push to right */
}

/* =========================
   HAND WRAPPER
========================= */
.ai_hand_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
}

/* =========================
   MAIN HAND IMAGE (FIXED EDGE)
========================= */
.ai_hand {
  max-width: 750px; /* bigger */
  width: auto;

  margin-right: -120px; /* 🔥 push outside */

  transform: translateX(80px); /* extend outward */

  animation: floatHand 6s ease-in-out infinite;

  -webkit-mask-image: radial-gradient(circle at 60% 50%, black 60%, transparent 100%);
  mask-image: radial-gradient(circle at 60% 50%, black 60%, transparent 100%);
}

/* =========================
   FLOAT ANIMATION
========================= */
@keyframes floatHand {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* =========================
   BACKGROUND GLOW
========================= */
.ai_hand_wrapper::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 500px;

  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);

  background: radial-gradient(
    ellipse at center,
    rgba(0,255,150,0.25) 0%,
    rgba(0,255,150,0.15) 30%,
    transparent 70%
  );

  filter: blur(120px);
  z-index: 1;
}

/* =========================
   VIGNETTE OVERLAY (REMOVES BOX)
========================= */
/*.ai_hand_wrapper::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    ellipse at center,
    transparent 60%,
    rgba(5,7,13,0.6) 85%,
    #05070D 100%
  );

  pointer-events: none;
  z-index: 2;
}
*/
/* =========================
   ENERGY GLOW (SOFT)
========================= */
.ai_energy_wave {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 45%;
  left: 60%;
  transform: translate(-50%, -50%);

  background: radial-gradient(circle, rgba(0,255,150,0.25), transparent 70%);
  filter: blur(40px);

  animation: energyPulse 4s ease-in-out infinite;
}

@keyframes energyPulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* =========================
   LIGHT SWEEP (CINEMATIC)
========================= */
.ai_light_sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  animation: sweep 5s linear infinite;
  mix-blend-mode: overlay;
}

@keyframes sweep {
  0% { transform: translateX(-120%) rotate(25deg); }
  100% { transform: translateX(120%) rotate(25deg); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .ai_container {
    flex-direction: column;
    text-align: center;
  }

  .ai_heading {
    font-size: 42px;
  }
}

.ai_energy_core {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 55%;
  left: 58%;
  transform: translate(-50%, -50%);

  background: radial-gradient(circle, #00ff9f 0%, rgba(0,255,150,0.6) 40%, transparent 70%);
  filter: blur(20px);

  animation: corePulse 2.5s ease-in-out infinite;
  z-index: 2;
}

@keyframes corePulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

.ai_energy_flow {
  position: absolute;
  width: 300px;
  height: 400px;
  top: 20%;
  left: 60%;
  transform: translateX(-50%);

  background: linear-gradient(
    to top,
    rgba(0,255,150,0.6),
    rgba(0,255,150,0.3),
    transparent
  );

  filter: blur(30px);
  opacity: 0.7;

  animation: flowUp 3s linear infinite;
  z-index: 1;
}

@keyframes flowUp {
  0% {
    transform: translate(-50%, 40px);
    opacity: 0;
  }
  30% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -80px);
    opacity: 0;
  }
}

.ai_energy_flow {
  position: absolute;
  width: 300px;
  height: 400px;
  top: 20%;
  left: 60%;
  transform: translateX(-50%);

  background: linear-gradient(
    to top,
    rgba(0,255,150,0.6),
    rgba(0,255,150,0.3),
    transparent
  );

  filter: blur(30px);
  opacity: 0.7;

  animation: flowUp 3s linear infinite;
  z-index: 1;
}

@keyframes flowUp {
  0% {
    transform: translate(-50%, 40px);
    opacity: 0;
  }
  30% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -80px);
    opacity: 0;
  }
}

.ai_hand_wrapper::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);

  background-image: radial-gradient(#00ff9f 1px, transparent 1px);
  background-size: 20px 20px;

  opacity: 0.2;
  animation: particlesMove 6s linear infinite;
}

@keyframes particlesMove {
  from { transform: translate(-50%, -50%) translateY(0); }
  to { transform: translate(-50%, -50%) translateY(-100px); }
}

/* =========================
   GLOBAL PARTICLE FLOW (AI ENERGY)
========================= */
.ai_global_particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* PARTICLE LAYER 1 */
.ai_global_particles::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;

  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);

  background-image:
    radial-gradient(circle, rgba(0,255,150,0.8) 1.5px, transparent 2px);

  background-size: 80px 80px;

  opacity: 0.6;

  animation: particleFlow 12s linear infinite;
}

/* PARTICLE LAYER 2 (DEPTH) */
.ai_global_particles::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;

  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);

  background-image:
    radial-gradient(circle, rgba(0,255,150,0.5) 1px, transparent 2px);

  background-size: 60px 60px;

  opacity: 0.4;

  animation: particleFlowSlow 18s linear infinite;
}

/* FLOW ANIMATION */
@keyframes particleFlow {
  0% {
    transform: translate(-50%, -50%) translate(0px, 0px) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) translate(-250px, -200px) scale(1.1);
    opacity: 0;
  }
}

@keyframes particleFlowSlow {
  0% {
    transform: translate(-50%, -50%) translate(0px, 0px) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) translate(-350px, -250px) scale(1.2);
    opacity: 0;
  }
}

.ai_energy_origin {
  position: absolute;
  width: 120px;
  height: 120px;

  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);

  background: radial-gradient(circle, rgba(0,255,150,0.8), transparent 70%);
  filter: blur(25px);

  z-index: 2;
}