@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:    #0B1F3A;
  --steel:   #1B3A6B;
  --mid:     #2C5282;
  --gold:    #C8941A;
  --gold-lt: #E8B84B;
  --white:   #F5F7FA;
  --off:     #EEF1F7;
  --muted:   #8A9BBD;
  --text:    #1A2A42;
  --shadow:  0 4px 32px rgba(11,31,58,0.18);
  --radius:  6px;
  --trans:   0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; color: var(--navy); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Nav ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,31,58,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(200,148,26,0.25); display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 68px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a { color: rgba(245,247,250,0.78); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px; transition: color var(--trans); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 0.5rem 1.2rem; border-radius: var(--radius); font-weight: 600 !important; transition: background var(--trans) !important; }
.nav-cta:hover { background: var(--gold-lt) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }

/* ── Buttons ── */
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all var(--trans); border: 2px solid transparent; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,148,26,0.35); }
.btn-outline { background: transparent; border-color: rgba(245,247,250,0.5); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--steel); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off); transform: translateY(-2px); }

/* ── Sections ── */
.section { padding: 5.5rem 5%; }
.section-sm { padding: 3.5rem 5%; }
.section-dark { background: var(--navy); }
.section-navy { background: var(--steel); }
.section-off { background: var(--off); }
.container { max-width: 1160px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.2rem; }
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: #4A6080; max-width: 640px; line-height: 1.75; }
.section-subtitle.light { color: rgba(245,247,250,0.72); }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1.2rem 0 2rem; }

/* ── Cards ── */
.card { background: var(--white); border-radius: 10px; padding: 2rem; box-shadow: 0 2px 20px rgba(11,31,58,0.08); transition: transform var(--trans), box-shadow var(--trans); border: 1px solid rgba(11,31,58,0.07); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,148,26,0.2); border-radius: 10px; padding: 2rem; transition: border-color var(--trans), transform var(--trans); }
.card-dark:hover { border-color: var(--gold); transform: translateY(-4px); }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Icon Box ── */
.icon-box { width: 52px; height: 52px; border-radius: 10px; background: rgba(200,148,26,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.icon-box svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }

/* ── Badge / Tag ── */
.badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(200,148,26,0.12); color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 20px; }
.tag { display: inline-block; padding: 0.25rem 0.7rem; background: rgba(200,148,26,0.1); color: var(--gold); border-radius: 4px; font-size: 0.75rem; font-weight: 600; margin: 0.2rem; }

/* ── Stats Bar ── */
.stats-bar { display: flex; flex-wrap: wrap; background: var(--gold); border-radius: 10px; overflow: hidden; }
.stat-item { flex: 1; min-width: 140px; padding: 1.8rem 2rem; border-right: 1px solid rgba(11,31,58,0.15); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(11,31,58,0.7); font-weight: 500; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Cert Badge ── */
.cert-badge { display: flex; align-items: center; gap: 0.8rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(200,148,26,0.2); border-radius: 8px; padding: 0.8rem 1rem; transition: border-color var(--trans); }
.cert-badge:hover { border-color: var(--gold); }
.cert-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.cert-text { font-size: 0.82rem; color: rgba(245,247,250,0.85); line-height: 1.35; }

/* ── Page Hero with BG Image ── */
.page-hero {
  padding: 9rem 5% 5.5rem;
  position: relative; overflow: hidden; min-height: 380px;
  display: flex; align-items: center;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(11,31,58,0.93) 0%, rgba(27,58,107,0.85) 60%, rgba(11,31,58,0.75) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; width: 100%; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(245,247,250,0.75); max-width: 640px; line-height: 1.75; }

/* ── Footer ── */
footer { background: #060F1E; padding: 4rem 5% 2rem; border-top: 1px solid rgba(200,148,26,0.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; color: rgba(245,247,250,0.55); line-height: 1.7; max-width: 260px; }
.footer-heading { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(245,247,250,0.55); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(245,247,250,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.82rem; color: rgba(245,247,250,0.4); }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--gold) 0%, #B8841A 100%); border-radius: 14px; padding: 3.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { font-size: 2rem; color: var(--navy); max-width: 520px; line-height: 1.2; }
.cta-banner p { color: rgba(11,31,58,0.65); font-size: 0.95rem; margin-top: 0.5rem; }

/* ── Meet the Team ── */
.team-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; border: 1px solid rgba(11,31,58,0.08);
  box-shadow: 0 4px 28px rgba(11,31,58,0.1);
  transition: transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 2.5rem 2rem; text-align: center; position: relative;
}
.team-photo {
  width: 110px; height: 110px; border-radius: 50%;
  border: 4px solid var(--gold); margin: 0 auto 1rem;
  object-fit: cover; display: block;
}
.team-photo-placeholder {
  width: 110px; height: 110px; border-radius: 50%;
  border: 4px solid var(--gold); margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--steel), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700;
  color: var(--white);
}
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); font-weight: 700; }
.team-title { font-size: 0.85rem; color: var(--gold); font-weight: 500; margin-top: 0.3rem; }
.team-body { padding: 2rem; }
.team-bio { font-size: 0.9rem; color: #4A6080; line-height: 1.8; margin-bottom: 1.5rem; }
.team-skills { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1.5rem; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #0077B5; color: var(--white);
  padding: 0.5rem 1.2rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; transition: background var(--trans);
}
.team-linkedin:hover { background: #005885; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.testimonial-card {
  background: var(--off); border-radius: 10px; padding: 1.5rem;
  border-left: 3px solid var(--gold); position: relative;
}
.testimonial-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(200,148,26,0.2); position: absolute; top: 0.5rem; left: 1rem; line-height: 1; }
.testimonial-text { font-size: 0.88rem; color: #4A6080; line-height: 1.75; font-style: italic; padding-top: 1.5rem; }
.testimonial-author { font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-top: 0.8rem; }

/* ── Industries ── */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.industry-card {
  border-radius: 12px; overflow: hidden; position: relative;
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  cursor: default; transition: transform var(--trans), box-shadow var(--trans);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.industry-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.industry-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.5) 60%, transparent 100%); }
.industry-content { position: relative; z-index: 2; padding: 1.8rem; }
.industry-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.industry-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); font-weight: 700; margin-bottom: 0.4rem; }
.industry-desc { font-size: 0.82rem; color: rgba(245,247,250,0.7); line-height: 1.6; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.8rem; }
.industry-tag { background: rgba(200,148,26,0.2); color: var(--gold); font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 3px; }

/* ── Public Sector Highlight ── */
.ps-highlight {
  background: linear-gradient(135deg, #0B2E5A 0%, #1B3A6B 100%);
  border-radius: 12px; padding: 2.5rem; border: 1px solid rgba(200,148,26,0.25);
  position: relative; overflow: hidden;
}
.ps-highlight::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,148,26,0.12) 0%, transparent 70%);
}
.ps-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(200,148,26,0.15); border: 1px solid rgba(200,148,26,0.3); color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1rem; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-d1 { opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards; }
.fade-up-d2 { opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards; }
.fade-up-d3 { opacity: 0; animation: fadeUp 0.7s 0.3s ease forwards; }

/* ── Responsive ── */
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .industry-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(11,31,58,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1rem 5%; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-hamburger { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; }
}
