:root {
  --color-primary: #1e40af;
  --color-secondary: #3b82f6;
  --nav-fg: #ffffff;
  --logo-filter: brightness(0) invert(1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --section-padding: 80px 20px;
  --max-width: 1100px;
  --border-radius: 8px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Base — CRITICAL: font-family must be applied to ALL text elements explicitly */
body { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: #333; }
p, li, a, span, label, input, textarea, button { font-family: var(--font-body); }
p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.75rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); }

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

/* NAV - CRITICAL: hamburger hidden on desktop, links visible on desktop */
header { position: sticky; top: 0; z-index: 1000; background: var(--color-primary); }
header .nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
  display: flex !important; justify-content: space-between; align-items: center; min-height: 70px; }
header img.logo { max-height: 50px; width: auto; filter: var(--logo-filter); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-name { color: var(--nav-fg); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.01em; }
/* Desktop nav — MUST be horizontal flex row; do NOT override these rules */
nav { display: flex; align-items: center; }
nav #nav-links { display: flex !important; flex-direction: row !important; list-style: none !important; gap: 30px; padding: 0; margin: 0; background: transparent !important; position: static !important; }
nav #nav-links li { padding: 0; border: none; }
nav #nav-links a { color: var(--nav-fg); text-decoration: none; font-weight: 500; font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.02em; }
nav #nav-links a:hover { opacity: 0.8; }
#hamburger { display: none; background: none; border: none; color: var(--nav-fg); font-size: 1.5rem; cursor: pointer; font-family: inherit; }

/* HERO */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.hero-split-text { background: var(--color-primary); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 60px 40px; }
.hero-split-image { background-image: url('hero-800x400.jpg'); background-size: cover; background-position: center; }
.cta-button { display: inline-block; background: var(--color-secondary); color: white;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* SECTIONS — alternating backgrounds, centered headings */
section { padding: var(--section-padding); }
section h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 1.5rem; color: var(--color-primary); text-align: center; }
section h2::after { content: ''; display: block; width: 48px; height: 3px; background: var(--color-primary); margin: 10px auto 0 auto; border-radius: 2px; }
section > p:first-of-type { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
#about { background: #fff; }
#offerings { background: #f7f7f7; }
#contact { background: #fff; }
/* Center all section body text */
#about p, #about li { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
#offerings .container > p { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
#contact .contact-details-row, #contact > .container > p { text-align: center; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 2rem; text-align: center; }
.card { background: white; padding: 28px; border-radius: var(--border-radius); border-top: 4px solid var(--color-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.card-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem auto; }
.card-icon i { font-size: 1.4rem; color: var(--color-primary); }
.card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.card-photo { width: 100%; height: 180px; object-fit: cover; border-radius: var(--border-radius) var(--border-radius) 0 0; margin-bottom: 1rem; display: block; }

/* CONTACT */
.contact-details-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-circle i { color: white; font-size: 0.9rem; }
.contact-item a { color: #333; text-decoration: none; font-size: 0.9rem; }
.contact-item a:hover { color: var(--color-primary); }
.contact-item span { font-size: 0.9rem; }
.social-links { display: flex; gap: 12px; justify-content: center; margin-top: 1rem; }
.social-links a, .social-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; text-decoration: none; transition: transform 0.2s, opacity 0.2s; }
.social-links a:hover, .social-circle:hover { transform: translateY(-2px); opacity: 0.85; }
.form-wrapper { width: 100%; max-width: 700px; margin: 2rem auto 0; overflow: hidden; border-radius: var(--border-radius); border: 1px solid #e5e7eb; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.form-wrapper iframe { display: block; }

/* FOOTER */
footer { background: var(--color-primary); color: white; text-align: center; padding: 24px 20px; }
footer a { color: rgba(255,255,255,0.8); }

/* MOBILE — optimised for touch devices */
@media (max-width: 767px) {
  #hamburger { display: block !important; }
  nav #nav-links { display: none !important; flex-direction: column !important; gap: 0 !important; position: absolute !important;
    top: 70px; left: 0; right: 0; background: var(--color-primary); padding: 10px 20px; z-index: 999; }
  nav #nav-links.open { display: flex !important; }
  nav #nav-links li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  nav #nav-links a { font-size: 1rem; padding: 8px 0; display: flex; align-items: center; min-height: 44px; }
  #hero { min-height: 80vh; }
  #hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  #hero p { font-size: clamp(0.9rem, 3vw, 1.05rem); }
  section { padding: 48px 16px; }
  section h2 { font-size: clamp(1.2rem, 5vw, 1.5rem); margin-bottom: 1rem; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 20px; }
  .contact-details-row { flex-direction: column; align-items: center; gap: 16px; }
  .cta-button { padding: 14px 28px; font-size: 1rem; min-height: 48px; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-text { padding: 40px 20px; min-height: 50vh; }
  .hero-split-image { min-height: 40vh; }
  .form-wrapper iframe { height: 700px; }
  footer { padding: 20px 16px; font-size: 0.85rem; }
}

/* TABLET */
@media (min-width: 768px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .contact-details-row { flex-direction: row; }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
/* ── SiteHub font enforcement (post-processed) ── */
body, p, li, a, span, div, button, input, textarea, label, select, td, th, blockquote, figcaption, nav, ul, ol, dl, dt, dd, address, small, strong, em, b, footer, header, main, section, article, aside, figure, details, summary { font-family: 'Open Sans', sans-serif !important; }
h1, h2, h3, h4, h5, h6, .brand-name, .stat-number { font-family: 'Montserrat', sans-serif !important; }


/* === SITEHUB CUSTOM STYLING === */
/* Auto-generated from user styling preferences */

:root {
  --color-primary: #059669 !important;
  --primary-color: #059669 !important;
  --primary-blue: #059669 !important;
  --color-secondary: #0891b2 !important;
  --secondary-color: #0891b2 !important;
  --secondary-blue: #0891b2 !important;
  --accent-color: #f97316 !important;
  --text-color: #0f172a !important;
  --background-color: #ffffff !important;
  --logo-filter: none !important;
  --font-heading: 'Montserrat', sans-serif !important;
  --heading-font: 'Montserrat', sans-serif !important;
  --font-body: 'Open Sans', sans-serif !important;
  --body-font: 'Open Sans', sans-serif !important;
}

/* === END CUSTOM STYLING === */


































