/* ✅ Popup Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

/* ✅ Popup Box */
.popup {
  background: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  padding: 25px 30px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ✅ Scroll styling inside popup */
.popup::-webkit-scrollbar {
  width: 6px;
}
.popup::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

/* ✅ Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
}
.close-btn:hover {
  color: red;
}

/* ✅ Service Item box styling */
.service-item {
  border: 1px solid #ddd;
  transition: 0.3s;
  background: #fff;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive */
@media (max-width: 480px) {
  .popup {
    padding: 20px;
    font-size: 15px;
  }
}
