

.overview-icons1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* .overview-icon {
  flex: 1 1 100px;
  text-align: center;
} */

.overview-icon1 {
  flex: 1 1 100px;
  text-align: center;
  /* background: rgba(255, 255, 255, 0.05); */
    background: rgba(255, 184, 255, 0.884);
  color: #111;
  backdrop-filter: blur(10px);
  width: 25% !important;
  border-radius: 20px;
  padding: 22px;
  margin: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.overview-icon1:hover{
  background-color: #ec1b96;
  color: #fff !important;
}

.overview-icon1 img {
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
  color: #fff !important;
}

.overview-icon1 p {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  font-weight: 600;
}
.overview-icon1 p:hover{
    color: #FFF;
}
/* .overview-icon p:hover{
  color: #ec1b96;
} */

@media (max-width: 900px) {
  .overview-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .overview-left, .overview-right {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .overview-icons1 {
    justify-content: center;
    gap: 15px;
  }
}