/* ===============================
   SERVICES PAGE LOADER
================================ */
#service-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0f3f31, #071e18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#service-loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Minimal Elegant Dot */
.loader-dot {
  width: 14px;
  height: 14px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(46, 204, 113, 0.6);
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(2.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


/* Prevent scroll while loading */
html.loading,
body.loading {
  overflow: hidden;
}
