/* Inside the model icon CSS */
.modal-icon-square-wrap {
  text-align: center;
  margin: 5px;
}

.modal-icon-square {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 20px;
  margin-top: 25px;
}

.modal-icon-square i {
  font-size: 32px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.modal-icon-square:hover {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  box-shadow: 0 0 20px rgba(221, 36, 118, 0.7);
  transform: translateY(-8px);
}

.modal-icon-square:hover i {
  transform: scale(1.2);
  color: #fff;
}

.modal-icon-square-wrap p {
  font-size: 18px;
  margin-top: 6px;
  line-height: 1.3;
}

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.532) !important;
  backdrop-filter: blur(8px);
  opacity: 1 !important;
}


/* category icons css */
.icon-square-wrap {
  text-align: center;
  width: 90px;
}

.icon-square {
  width: 51px;
  height: 51px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 12px;
  margin-top: 8px;
}

.icon-square i {
  font-size: 23px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon-square:hover {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  box-shadow: 0 0 20px rgba(221, 36, 118, 0.7);
  transform: translateY(-8px);
}

.icon-square:hover i {
  transform: scale(1.2);
  color: #fff;
}

.icon-square-wrap p {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.3;
}


/* category wrapper css */
.category-wrap {
  width: 40px;
  margin-right: 200px;
}

.category-box {
  width: 220px;
  height: auto;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  margin-top: 25px;
}


/* modal box css */
.modal-box {
  margin: 0 auto;
  background: #10376d;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  margin-top: 25px;
}
