/* home sec s */

.home-hero {
  background: #000;
  min-height: 608px;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

/* Desktop default */
/* .hero-padding {
  padding-left: 80px;
  padding-right: 80px;
} */

/* =========================
   HERO BOX
========================= */
.hero-container {
  background: #232323;
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 32px rgba(255, 255, 255, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.35);
}

/* =========================
   LEFT
========================= */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  color: #9b7cff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

/* =========================
   CENTER IMAGE
========================= */
.hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-robot {
  max-width: 608px;
  width: 100%;
  z-index: 2;
}

/* =========================
   RIGHT CONTENT
========================= */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.right-glow {
  position: absolute;
  top: -90px;
  right: 40px;
  width: 280px;
  height: 280px;
  background: linear-gradient(101.67deg,
      #93c3fd 0%,
      #7d86ed 45.89%,
      #5b63ed 100%);
  filter: blur(110px);
  opacity: 0.85;
  border-radius: 50%;
  z-index: 1;
}

.hero-info {
  position: relative;
  max-width: 360px;
  z-index: 2;
  /* margin-top: 198px; */
  /* background: red; */
  /* margin-bottom: -90px; */
}

.hero-desc {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  font-family: lato;
  margin-top: 198px;

}

/* .hero-desc p{
    margin-top: 198px;
    margin-bottom: 1rem;
  } */

/* =========================
   BUTTONS
========================= */
.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-btn-primary {
  background: linear-gradient(101.67deg, #93c3fd, #7d86ed, #5b63ed);
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  border: none;
  font-weight: 600;
}

.hero-btn-outline {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 14px 28px;
  border: none;
  font-weight: 600;
}

/* =========================
   TABLET (768px–1023px)
========================= */
/* @media (max-width: 1023px) {
    .hero-padding {
      padding-left: 32px;
      padding-right: 32px;
    } 

     .right-glow {
      width: 220px;
      height: 20px;
      filter: blur(90px);
    } 

     .hero-title {
      font-size: 36px;
    } 

    .hero-desc{
      margin-top: 0px;
    }
   } */


/* =========================
   TABLET (768px–1023px)
========================= */

@media(width:1024px) {
  .hero-robot {
    min-height: 520px;
  }

  .hero-desc {
    /*   margin-top: -200px;        remove desktop hack */
    font-size: 15px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 118px;
    height: 34px;
    font-size: 10px;
    padding: 5px;

  }

}

@media (max-width: 1023px) {

  .hero-padding {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Keep hero height balanced */
  .home-hero {
    min-height: 520px;
  }

  /* LEFT */
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  /* CENTER IMAGE */
  .hero-robot {
    max-width: 320px;
    height: 350px;
    /* justify-content: center; */
    margin-right: 60px;
  }

  /* RIGHT COLUMN */
  .hero-right {
    justify-content: center;
    align-items: center;
  }

  .hero-info {
    max-width: 200px;
    margin-right: -390px;

  }

  .hero-desc {
    margin-top: -200px;
    /* remove desktop hack */
    font-size: 15px;
  }

  /* GLOW — keep it soft, not flat */
  .right-glow {
    width: 150px;
    /* height: 250px; */
    /* top: 60px; */
    bottom: 560px;
    right: 20px;
    filter: blur(90px);
    opacity: 0.8;
    margin-top: -400px;
  }

  .hero-actions {
    /* margin-top: 20px; */
    /* width: 118px; */
    /* padding: 12px; */
    /* height: 34px; */
    /* font-size: 14px; */
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 118px;
    height: 34px;
    font-size: 10px;
    padding: 5px;

  }
}



/* =========================
   MOBILE (<768px)
========================= */
@media (max-width: 767px) {
  .hero-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-container {
    padding: 24px;
  }

  .hero-left,
  .hero-center,
  .hero-right {
    text-align: start;
    justify-content: start;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-center {
    margin: 32px 0;
  }

  .right-glow {
    display: none;
  }

  .hero-info {
    margin-top: 200px;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
