*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --navy: #002b56; --orange: #e07328; }
body { font-family: Arial, Helvetica, sans-serif; font-size: 18px; color: var(--navy); min-height: 100vh; display: flex; flex-direction: column; }
header { background: #fff; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 4px rgba(0,0,0,.08); }
nav { max-width: 1200px; margin: 0 auto; height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; }
.logo img { height: 50px; }
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
main { flex: 1; }
footer { background: var(--navy); color: #fff; text-align: center; padding: 1.5rem; font-size: 14px; }
footer a { color: #fff; }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: 2rem; margin-bottom: 0.6rem; }
.section-header .underline { width: 60px; height: 4px; background: var(--orange); margin: 0 auto; }

/* ── Value section ── */
.value-section { max-width: 1100px; margin: 4rem auto; padding: 0 2rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.value-card { background: #f7f9fc; border-top: 4px solid var(--orange); padding: 1.75rem; border-radius: 4px; }
.value-card h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.1rem; }
.value-card p { font-size: 0.95rem; line-height: 1.65; color: #444; }

/* ── Industries banner ── */
.industries { background: #f0f4f9; padding: 3rem 2rem; text-align: center; }
.industries h2 { margin-bottom: 1.25rem; font-size: 1.5rem; color: var(--navy); }
.industry-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.industry-tag { background: var(--navy); color: #fff; padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.9rem; }

/* ── About ── */
.about-content { max-width: 900px; margin: 4rem auto; padding: 0 2rem; line-height: 1.75; }
.about-content h1 { font-size: 2.2rem; margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--orange); display: inline-block; }
.about-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid #e0e6ee; }
.about-content p { margin-bottom: 1.2rem; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 2.5rem; border-left: 3px solid var(--orange); margin-top: 1.5rem; }
.timeline-item { margin-bottom: 2.5rem; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -3.05rem; top: 0.4rem; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--orange); }
.timeline-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.2rem; }
.timeline-company { color: var(--orange); font-weight: 600; font-size: 0.95rem; }
.timeline-dates { font-size: 0.88rem; color: #666; margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.95rem; line-height: 1.65; color: #444; }

/* ── Certifications ── */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.cert-card { border: 1px solid #ddd; border-left: 4px solid var(--orange); padding: 1rem 1.2rem; border-radius: 4px; }
.cert-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; line-height: 1.4; }
.cert-card span { font-size: 0.85rem; color: #666; }

/* ── Services ── */
.services-content { max-width: 1100px; margin: 4rem auto; padding: 0 2rem; }
.services-content h1 { text-align: center; font-size: 2.4rem; margin-bottom: 0.5rem; }
.services-divider { border: none; border-top: 1px solid #ccc; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 4rem; }
.service-card h2 { color: var(--orange); font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { line-height: 1.7; font-size: 0.97rem; }
.services-bottom-divider { border: none; border-top: 1px solid #ccc; margin-top: 3rem; }

/* ── Contact ── */
.contact-content { max-width: 1100px; margin: 4rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 0.75rem; line-height: 1.7; }
.contact-info a { color: var(--navy); text-decoration: none; }
.contact-info a:hover { color: var(--orange); }
.contact-form label { display: block; font-weight: 600; margin-bottom: 0.3rem; margin-top: 1rem; font-size: 16px; }
.contact-form label:first-of-type { margin-top: 0; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 0.6rem 0.8rem; border: 1px solid #ccc; border-radius: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: var(--navy); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
.form-required { color: var(--orange); }
.btn-submit { display: inline-block; margin-top: 1.5rem; padding: 0.75rem 2.5rem; background: var(--navy); color: white; border: none; border-radius: 4px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--orange); }
.form-message { margin-top: 1rem; padding: 0.75rem; border-radius: 4px; font-size: 16px; display: none; }
.form-message.success { background: #e6f4ea; color: #2d6a4f; display: block; }
.form-message.error { background: #fdecea; color: #b71c1c; display: block; }
.topic-checkboxes { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.3rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-weight: normal; font-size: 16px; margin-top: 0; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: auto; }

@media (max-width: 768px) {
  .services-grid, .contact-content, .value-grid { grid-template-columns: 1fr; }
  .name-row { grid-template-columns: 1fr; }
  nav { padding: 0 1rem; }
  .nav-links { gap: 1.2rem; font-size: 15px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 2rem; }
}
/* ── Hero with background image ── */
.hero { position: relative; color: #fff; text-align: center; min-height: 520px; display: flex; align-items: center; justify-content: center;
  background: url('assets/HomePageDecisions.jpg') center center / cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,25,60,0.78); }
.hero-inner { position: relative; z-index: 1; padding: 5rem 2rem 4rem; width: 100%; max-width: 960px; margin: 0 auto; }
.hero h1 { font-size: 2.8rem; max-width: 860px; margin: 0 auto 1.2rem; line-height: 1.3; }
.hero p { font-size: 1.15rem; max-width: 720px; margin: 0 auto 2.2rem; opacity: 0.92; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-cta { display: inline-block; padding: 0.85rem 2.2rem; background: var(--orange); color: #fff; text-decoration: none; border-radius: 4px; font-weight: 600; font-size: 1rem; transition: background .2s; }
.hero-cta:hover { background: #c8611a; }
.hero-cta-outline { display: inline-block; padding: 0.85rem 2.2rem; background: transparent; color: #fff; text-decoration: none; border-radius: 4px; font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,0.7); transition: all .2s; }
.hero-cta-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.hero-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 3.5rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 2.5rem; }
.stat { text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.88rem; opacity: 0.8; margin-top: 0.4rem; max-width: 140px; }

/* ── Meet Jay ── */
.meet-jay { background: #f7f9fc; padding: 4rem 2rem; }
.meet-jay-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: start; }
.meet-jay-text h2 { font-size: 1.9rem; margin-bottom: 0.4rem; }
.meet-jay-title { color: var(--orange); font-weight: 600; font-size: 0.95rem; margin-bottom: 1rem; }
.meet-jay-text p { line-height: 1.75; color: #333; margin-bottom: 1rem; font-size: 0.97rem; }
.meet-jay-link { display: inline-block; margin-top: 0.5rem; color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--orange); padding-bottom: 2px; transition: color .2s; }
.meet-jay-link:hover { color: var(--orange); }
.meet-jay-certs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; min-width: 280px; }
.cert-badge { background: var(--navy); color: #fff; padding: 0.9rem 1rem; border-radius: 6px; font-size: 0.88rem; font-weight: 700; line-height: 1.3; text-align: center; }
.cert-badge span { font-weight: 400; font-size: 0.8rem; opacity: 0.85; display: block; margin-top: 0.2rem; }

/* ── Services preview ── */
.services-preview { max-width: 1100px; margin: 4rem auto; padding: 0 2rem; }
.services-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.sp-card { display: block; text-decoration: none; color: var(--navy); background: #fff; border: 1px solid #e0e6ee; border-top: 3px solid var(--orange); border-radius: 4px; padding: 1.25rem; transition: box-shadow .2s, transform .2s; }
.sp-card:hover { box-shadow: 0 4px 16px rgba(0,43,86,.12); transform: translateY(-2px); }
.sp-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.sp-card h3 { font-size: 0.97rem; margin-bottom: 0.4rem; color: var(--navy); }
.sp-card p { font-size: 0.88rem; line-height: 1.55; color: #555; }

@media (max-width: 900px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .meet-jay-inner { grid-template-columns: 1fr; }
  .meet-jay-certs { grid-template-columns: repeat(4, 1fr); min-width: unset; }
}
@media (max-width: 600px) {
  .services-preview-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { gap: 2rem; }
  .meet-jay-certs { grid-template-columns: 1fr 1fr; }
}