/* Loader Styles */
.central-icon {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation-name: ripple;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
}

.central-icon img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 #fff4, 0 0 0 0 #fff4; }
  80%  { box-shadow: 0 0 0 10px #fff0, 0 0 0 20px #fff0; }
  100% { box-shadow: 0 0 0 0 #fff0, 0 0 0 0 #fff0; }
}

.loader-message {
  margin-top: 30px;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
