.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #32c9d8;
  z-index: 9999;
}

.loader-container img {
  width: 120px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* 🔴 Hide loader for mobile & tablets */
@media (max-width: 1024px) {
  .loader-container {
    display: none !important;
  }
}
