.hero-section {
  width: 100%;
  border-radius: 50px;
}

.hero-video {
  width: 100%;
  height: auto;
  border-radius: 50px;
  padding-top: 20px;
}

.container_animation_wrapper {
  position: relative;
  width: 90vw;
  height: 80vh;
  overflow: hidden;
  margin: 0 auto;
}

.card {
  /* Existing styles... */
  position: absolute;
  width: 100px;
  height: 75px;
  border-radius: 15px;
  background: #f9faff;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 11;
}

/* Hover effect: scale + glass reflection */
.card:hover {
  transform: scale(1.05);
}

/* Reflection stripe */
.card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0) 50%
  );
  transform: rotate(25deg) translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Trigger reflection animation on hover */
.card:hover::after {
  opacity: 1;
  animation: shine 1s forwards;
}

/* Shine animation keyframes */
@keyframes shine {
  from {
    transform: rotate(25deg) translateX(-100%);
  }

  to {
    transform: rotate(25deg) translateX(100%);
  }
}

.card img {
  width: 35px;
  height: 35px;
}

.info-box {
  position: absolute;
  top: 200px;
  right: 20px;
  max-width: 400px;
  background: rgb(248, 244, 255);
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: none;
  z-index: 20;
}

.info-box h3 {
  margin: 0 0 5px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
}

/* Positioning cards */
#emp {
  top: 40%;
  left: 10%;
  width: 150px;
  height: 150px;
}

#badge {
  top: 20%;
  left: 25%;
}

#award {
  top: 60%;
  left: 25%;
}

#goals {
  top: 80%;
  left: 27%;
}

#feed {
  top: 40%;
  left: 45%;
  width: 150px;
  height: 150px;
}

#recognition {
  top: 10%;
  left: 35%;
}

#like {
  top: 10%;
  left: 50%;
}

#comment {
  top: 10%;
  left: 60%;
}

#notification {
  top: 25%;
  left: 65%;
}

#spotlight {
  top: 40%;
  left: 80%;
  width: 150px;
  height: 150px;
}

#insights {
  top: 70%;
  left: 75%;
}

#manager {
  top: 70%;
  left: 65%;
}

#hierarchy {
  top: 65%;
  left: 35%;
}

#growth {
  top: 75%;
  left: 45%;
}

#journey {
  top: 70%;
  left: 55%;
}

#spotlight img {
  width: 50px;
  height: 50px;
}

#feed img {
  width: 50px;
  height: 50px;
}

#emp img {
  width: 50px;
  height: 50px;
}
.checklist .fancy-box.style2 .icon img {
  width: 40px;
}
.animation_diagram {
  position: relative;
}
/*======= Media Query For Responsive Screens ========*/

/* ================================================ */
@media only screen and (max-width: 1299px) {
  #spotlight {
    top: 40%;
    left: 80%;
    width: 75px;
    height: 75px;
  }

  #feed {
    top: 40%;
    left: 45%;
    width: 75px;
    height: 75px;
  }

  #emp {
    top: 40%;
    left: 10%;
    width: 75px;
    height: 75px;
  }
}

@media only screen and (max-width: 1023px) {
  #spotlight {
    top: 40%;
    left: 75%;
    width: 75px;
    height: 75px;
  }

  #feed {
    top: 40%;
    left: 40%;
    width: 75px;
    height: 75px;
  }

  #emp {
    top: 40%;
    left: 0%;
    width: 75px;
    height: 75px;
  }

  #badge {
    top: 20%;
    left: 5%;
  }

  #award {
    top: 60%;
    left: 5%;
  }

  #goals {
    top: 80%;
    left: 10%;
  }

  #recognition {
    top: 10%;
    left: 25%;
  }

  #like {
    top: 5%;
    left: 45%;
  }

  #comment {
    top: 10%;
    left: 65%;
  }

  #notification {
    top: 25%;
    left: 65%;
  }

  #insights {
    top: 70%;
    left: 75%;
  }

  #manager {
    top: 80%;
    left: 65%;
  }

  #hierarchy {
    top: 70%;
    left: 25%;
  }

  #growth {
    top: 75%;
    left: 45%;
  }

  #journey {
    top: 55%;
    left: 55%;
  }

  .feature-box.style1 {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
}

@media (min-width: 980px) and (max-width: 1023px) {
}
