@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom colors using Tailwind’s directives */
:root {
  --color-primary: #064e94;
  --color-secondary: #0ea5e9;
  --color-bgsoft: #f9fafb;
}

/* Example custom classes if needed */
.btn-primary {
  @apply bg-[var(--color-primary)] text-white px-6 py-3 rounded-full hover:bg-[var(--color-secondary)] transition shadow-lg;
}