/* HiringMitra — style.css */
:root {
  --primary:   #1A56DB;
  --primary-d: #1447C0;
  --cyan:      #00AEEF;
  --navy:      #0B1340;
  --blue:      #1A56DB;
  --success:   #10B981;
  --warning:   #F59E0B;
  --danger:    #EF4444;
  --bg:        #F8FAFF;
  --bg2:       #EFF6FF;
  --border:    #E2E8F0;
  --text:      #0F172A;
  --muted:     #64748B;
  --white:     #ffffff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; text-decoration: none; transition: all 0.2s; line-height: 1; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--cyan)); color: #fff; box-shadow: 0 2px 10px rgba(26,86,219,0.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.4); }
.btn-outline { background: #fff; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--bg2); }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }

/* Grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Flex helpers */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* Text helpers */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* Loader */
.loader { display: flex; justify-content: center; padding: 40px; grid-column: 1 / -1; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive grids */
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
