/* --- Variables --- */
:root {
  --primary-color: #0a2351; /* Deep Corporate Blue */
  --secondary-color: #c59d5f; /* Sophisticated Gold */
  --dark-text: #333333;
  --light-grey: #f8f9fa;
  --body-text-color: #555;
}

/* --- Base --- */
body {
  font-family: 'Lato', sans-serif;
  color: var(--body-text-color);
  padding-top: 80px; /* space for fixed navbar */
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* --- Buttons & Links --- */
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background-color: #b38e55;
  border-color: #b38e55;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-outline-light {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  border-width: 2px;
}

a { color: var(--secondary-color); }
a:hover { color: #b38e55; }

/* --- Navbar --- */
.navbar { transition: all 0.3s ease-in-out; padding: 15px 0; }
.navbar-brand img { transition: height 0.3s ease-in-out; }
.navbar-nav .nav-link { font-weight: 600; }
.navbar-nav .nav-link.active { color: var(--primary-color) !important; }

/* --- Hero --- */
.hero-section {
  background: linear-gradient(rgba(10, 35, 81, 0.82), rgba(10, 35, 81, 0.82)), url('images/banner-1.jpg') center/cover no-repeat;
  padding: clamp(140px, 22vh, 240px) 0 120px;
}
.hero-subtext { max-width: 820px; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 12px;
  border-radius: 999px;
}
.text-gradient {
  background: linear-gradient(135deg, #fff, #dcdfe6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.check-list {
  list-style: none;
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.check-list li {
  color: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.check-list .bi { color: #62d26f; }

.industry-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.badge-soft {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* --- Sections --- */
.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-alt {
  background: linear-gradient(180deg, #fafbfc, #f3f5f9);
}

/* --- Outcomes --- */
.outcome-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  text-align: left;
  box-shadow: 0 8px 24px rgba(10,35,81,0.05);
}
.outcome-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(135deg, var(--primary-color), #12306d);
  box-shadow: 0 8px 18px rgba(10, 35, 81, 0.25);
  margin-bottom: 10px; font-size: 20px;
}
.outcome-title { color: var(--primary-color); margin: 4px 0 8px; }

/* --- Service Cards --- */
.service-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 8px 24px rgba(10, 35, 81, 0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(10, 35, 81, 0.08);
  border-color: var(--secondary-color);
}
.service-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px;
  background: linear-gradient(135deg, var(--primary-color), #12306d);
  box-shadow: 0 8px 18px rgba(10, 35, 81, 0.25);
}
.service-title { color: var(--primary-color); margin-top: 16px; margin-bottom: 10px; }
.service-points { margin: 12px 0 0; padding-left: 0; list-style: none; }
.service-points li { display: flex; gap: 10px; margin-bottom: 8px; }
.service-points i { color: var(--secondary-color); margin-top: 3px; }

/* --- How It Works --- */
.icon-circle {
  font-size: 1.6rem;
  color: var(--secondary-color);
  width: 80px; height: 80px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(10,35,81,0.05);
}

/* --- Trust cards --- */
.trust-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(10,35,81,0.05);
}
.trust-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  background: linear-gradient(135deg, var(--primary-color), #12306d);
  box-shadow: 0 8px 18px rgba(10, 35, 81, 0.25);
  margin-bottom: 12px;
}
.trust-title { color: var(--primary-color); margin-bottom: 8px; }

/* --- Deliverables --- */
.deliverable-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(10,35,81,0.05);
  text-align: left;
}
.deliverable-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  background: linear-gradient(135deg, var(--primary-color), #12306d);
  box-shadow: 0 8px 18px rgba(10, 35, 81, 0.25);
  margin-bottom: 10px;
}
.deliverable-title { color: var(--primary-color); margin-bottom: 8px; }

/* --- FAQ --- */
.accordion-item { border: 1px solid #e9ecef; margin-bottom: 10px; border-radius: 8px !important; }
.accordion-button { font-weight: 600; color: var(--primary-color); }
.accordion-button:not(.collapsed) { background-color: var(--light-grey); box-shadow: none; color: var(--primary-color); }
.accordion-button:focus { box-shadow: 0 0 0 0.25rem rgba(197, 157, 95, 0.25); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #0a2351, #12306d);
  padding: 64px 0;
}
.cta-banner .opacity-90 { opacity: 0.9; }

/* --- Footer --- */
footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
}
footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
footer a:hover { color: #fff; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Page header banners (used on About, Services, Blog, Contact) */
.page-header {
  position: relative;
  color: #fff;
  background-color: var(--primary-color);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(96px, 16vh, 160px) 0;
  min-height: 320px;              /* ensures visibility even with little content */
  display: flex;
  align-items: center;
}

.page-header .subtitle {
  opacity: 0.9;
  max-width: 760px;
  margin: 12px 0 0;
}

/* Variants per page */
.page-header.about-header {
  background-image:
    linear-gradient(rgba(10,35,81,0.80), rgba(10,35,81,0.80)),
    url('images/about-banner.jpg');
}

.page-header.services-header {
  background-image:
    linear-gradient(rgba(10,35,81,0.80), rgba(10,35,81,0.80)),
    url('images/services-banner.jpg');
}

.page-header.blog-header {
  background-image:
    linear-gradient(rgba(10,35,81,0.80), rgba(10,35,81,0.80)),
    url('images/blog-banner.jpg');
}

.page-header.contact-header {
  background-image:
    linear-gradient(rgba(10,35,81,0.85), rgba(10,35,81,0.85)),
    url('images/contact-banner.jpg');
}



/* ===== ABOUT PAGE ONLY STYLES ===== */

/* Founder Meta Pills */
.founder-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.accent-pill {
  background-color: rgba(197, 157, 95, 0.12);
  color: var(--primary-color);
  border: 1px solid rgba(197, 157, 95, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}
.accent-pill:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Founder Image */
.founder-photo {
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(10, 35, 81, 0.15);
  object-fit: cover;
}

/* Stat Cards */
.stat-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  text-align: center;
  padding: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(10, 35, 81, 0.05);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(10, 35, 81, 0.08);
}
.stat-number {
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 700;
}
.stat-label {
  color: #666;
  margin-top: 4px;
  font-size: 0.9rem;
}

/* Value Cards */
.value-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 26px 20px;
  box-shadow: 0 8px 24px rgba(10,35,81,0.05);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(10,35,81,0.08);
  border-color: var(--secondary-color);
}
.value-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #12306d);
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 6px 14px rgba(10,35,81,0.25);
}

/* Timeline Section */
.timeline {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--secondary-color);
}
.timeline-item {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 10px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 4px;
  width: 12px;
  height: 12px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff;
}

/* Quote Card (How We Work box) */
.quote-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(10,35,81,0.05);
}
.quote-card ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.quote-card li {
  margin-bottom: 6px;
  color: #555;
}
.quote-author {
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
  font-size: 0.95rem;
  margin-top: 10px;
}