/* Azeem Technologies — Custom styles not expressible in Tailwind */

/* ── Marquee Animation ──────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 18s linear infinite; }

/* ── Custom Font Families ───────────────────────────────── */
.font-montserrat { font-family: 'Montserrat', sans-serif; }
.font-lato       { font-family: 'Lato', sans-serif; }

/* ── Custom Colors ──────────────────────────────────────── */
.text-brand        { color: #007BFF; }
.text-brand-dark   { color: #0062CC; }
.text-muted        { color: #666666; }
.text-secondary    { color: #555555; }
.text-label        { color: #999999; }
.text-placeholder  { color: #AAAAAA; }
.text-placeholder-dim { color: #888888; }
.text-success      { color: #28A745; }
.text-success-light { color: #7FD996; }
.bg-muted-bg       { background-color: #F8F9FA; }
.bg-line           { background-color: #DDDDDD; }

/* ── Custom Shadows ─────────────────────────────────────── */
.shadow-sm-custom   { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.shadow-card        { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.shadow-card-md     { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.shadow-card-lg     { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.shadow-brand       { box-shadow: 0 6px 16px rgba(0,123,255,0.28); }
.shadow-brand-lg    { box-shadow: 0 10px 24px rgba(0,123,255,0.3); }
.shadow-sticky      { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* ── Custom Grid Column Sizes ───────────────────────────── */
.grid-cols-auto-1fr { grid-template-columns: auto 1fr; }
.grid-cols-1fr-auto { grid-template-columns: 1fr auto; }
.grid-cols-1-1fr    { grid-template-columns: 1fr minmax(0,1fr); }
.grid-cols-1-1fr-b  { grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); }
.grid-cols-1-1fr-2  { grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); }
.grid-cols-1-0-85fr { grid-template-columns: minmax(0,1fr) minmax(0,0.85fr); }
.grid-cols-1-4fr    { grid-template-columns: 1.4fr 1fr 1fr; }
.grid-cols-auto-2fr { grid-template-columns: auto 2fr; }

/* ── Pseudo / Complex ───────────────────────────────────── */
.text-wrap-pretty  { text-wrap: pretty; }
.mask-marquee      { mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }

/* ── Form Base ──────────────────────────────────────────── */
.form-input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  padding: 12px 16px;
}

/*
 * ── Tailwind Component Classes ───────────────────────────
 * Written as plain CSS, not @apply: these classes live in custom.css,
 * which is loaded as an ordinary stylesheet. The Tailwind Play CDN
 * (cdn.tailwindcss.com) only compiles classes found in the DOM or in
 * inline <style type="text/tailwindcss"> blocks — it never processes
 * external .css files, so @apply here would silently do nothing.
 */
.btn-primary {
  background-color: #007BFF;
  color: #ffffff;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.28);
  font-size: 16px;
  display: inline-block;
}
.btn-secondary {
  background-color: #ffffff;
  color: #333333;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  display: inline-block;
}
.btn-cta {
  background-color: #007BFF;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.28);
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.06);
}

.card-white {
  background-color: #ffffff;
  color: #333333;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.card-white::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}
.card-white:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.06);
}
.badge-pill {
  display: inline-block;
  background-color: rgba(40, 167, 69, 0.12);
  color: #28A745;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.025em;
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.badge-outline {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 9999px;
}
.badge-accent {
  display: inline-block;
  background-color: rgba(40, 167, 69, 0.15);
  color: #7FD996;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 9999px;
}
.form-label {
  color: #333333;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex: none;
}
.contact-label {
  color: #999999;
  font-weight: 700;
  font-size: 12px;
}
.meta-label {
  color: #999999;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.025em;
}
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 12px;
}
.section-subheading {
  font-size: 16px;
  color: #666666;
  text-align: center;
}
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}
.footer-link {
  color: #AAAAAA;
  font-size: 14px;
}
.divider-light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-link {
  color: #333333;
  font-weight: 700;
  font-size: 14px;
}
.nav-link-active {
  color: #007BFF;
}
.body-wrapper {
  font-family: 'Lato', sans-serif;
  color: #333333;
  background-color: #F8F9FA;
  min-height: 100vh;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  padding: 64px 32px;
}
.section-bg-white {
  background-color: #ffffff;
}
.footer-dark {
  background-color: #333333;
  color: #AAAAAA;
  padding: 56px 32px;
}
.h1-hero {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.375;
  color: #333333;
  letter-spacing: -0.025em;
}
