/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
  height: 60px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  padding-top: 100px;
  padding-bottom: 100px;
}
/* Enhanced Loader with Image */
/* Full-screen loader with logo and ripple animation */
#loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-content img.loader-logo {
  height: 80px;
  max-width: 90%;
  object-fit: contain;
}

/* Ripple Animation */
.magic-loader {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.magic-loader span {
  width: 15px;
  height: 15px;
  background: #b30000;
  border-radius: 50%;
  animation: bounce 0.6s infinite ease-in-out;
}
.magic-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.magic-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}
