.ajk-deepservices {
  background-color: #f9fafc;
}

.ajk-bigtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
}

.ajk-introtext {
  color: #5f5f5f;
  max-width: 800px;
  margin: 0 auto;
}

.ajk-cardbox {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.ajk-cardbox:hover {
  border-color: #ec8538;
  box-shadow: 0 20px 30px rgba(236, 133, 56, 0.1);
  transform: translateY(-5px);
}

.ajk-servicetitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ec8538;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.close:hover {
  color: #e60000;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}