@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap");

body {
  font-family: "Cairo", "Inter", sans-serif;

  background-color: #f8faff;

  color: #1e293b;
  line-height: 1.7;
}

.text-primary {
  color: #007bff;
}

.bg-primary {
  background-color: #007bff;
}

.bg-secondary {
  background-color: #e0f7fa;
}

.container {
  max-width: 1300px;
}

.shadow-lg-custom {
  box-shadow: 0 12px 30px -5px rgba(0, 123, 255, 0.15),
    0 8px 10px -6px rgba(0, 123, 255, 0.1);
}

a:focus,
button:focus {
  outline: 2px solid #007bff;

  outline-offset: 3px;

  border-radius: 9999px;
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.9;
  }
}

.animate-pulse-slow {
  animation: pulse-slow 3s infinite ease-in-out;
}
