:root {
  --accent: #f2a019;
  --dark: #344154;
  --muted: #8d99a6;
  --bg: #f5f7f8;
  --card: #ffffff;
}
*{box-sizing:border-box}
body {
  font-family: 'Open Sans', system-ui, Arial;
  background-color: var(--bg);
  color: var(--dark);
  margin:0;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
  font-weight:800;
}

/* NAVBAR */
.navbar {
  padding: 1rem 2rem;
  transition: background .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(4px);
  border-bottom: 3px solid rgba(242, 160, 25, 0.06);
}

.navbar.scrolled {
  background: linear-gradient(180deg, rgba(17, 28, 37, 0.75), rgba(17, 28, 37, 0.6));
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: var(--accent);
}

/* NEW class for when navbar is on a light page background */
.navbar.on-light-page {
  background: var(--card);
  box-shadow: 0 6px 20px rgba(25, 35, 45, 0.06);
  border-bottom-color: var(--accent);
}

.navbar-brand {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 1px;
}

.navbar-brand .icon {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: var(--accent);
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 6px;
  text-transform: uppercase;
  cursor: pointer;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent);
}

/* NEW styles to override text/button colors for the new light-page state */
.navbar.on-light-page .navbar-nav .nav-link {
  color: var(--dark);
}
.navbar.on-light-page .navbar-nav .nav-link:hover,
.navbar.on-light-page .navbar-nav .nav-link.active {
  color: var(--accent);
}
.navbar.on-light-page .nav-right .lang-btn {
  color: var(--dark);
  border-color: var(--dark);
}
.navbar.on-light-page .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2852, 65, 84, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  background-color: #000;
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  padding: 8px 0;
  border-radius: 0;
}

.dropdown-item {
  padding: 16px 22px;
  color: #fff;
  font-weight: 600;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-right .lang-btn {
  padding: 6px 10px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 700;
  background: transparent;
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.70);
  transition: opacity .7s ease;
}

.hero .content {
  position: relative;
  z-index: 20;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 2px;
  font-weight: 800;
}
.hero h1, 
.hero p {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9); /* stronger */
}


/* SECTIONS & PAGES */
.page { padding-top: 100px; }
#home-page { padding-top: 0; }
.section-padding { padding: 80px 0; }

.card {
  border: none;
  box-shadow: 0 6px 20px rgba(25, 35, 45, 0.06);
  transition: transform .25s ease;
}
.card:hover { transform: translateY(-8px); }

.card-media { height: 220px; background-size: cover; background-position: center; }

.btn-ghost { background: var(--dark); color: #fff; }

/* RESTORED STYLES for Home Page Sections */
.quote-box { background: var(--accent); color: #fff; }

.stat { background: #fff; box-shadow: 0 6px 20px rgba(25, 35, 45, 0.04); }
.stat h2 { color: var(--accent); }

.hex {
  width: 64px; height: 64px; flex-shrink: 0; background: #5e6a77; border-radius: 8px; color: #fff;
}

.cta-card { background: var(--accent); color: #fff; }

/* Deliverables Page Layout */
.deliverable-content-area img {
  max-width: 100%; height: auto; border-radius: 8px; margin-bottom: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* NEW STYLES for Deliverables Topic Navigator */
.nav-pills { background: var(--card); overflow: hidden; }
.nav-pills .nav-link { color: var(--dark); text-align: left; padding: 1rem; font-weight: 700; border-radius: 0; border-bottom: 1px solid var(--bg); transition: background-color 0.2s ease, color 0.2s ease; }
.nav-pills .nav-link:last-child { border-bottom: none; }
.nav-pills .nav-link.active { background-color: var(--accent); color: #fff; }
.nav-pills .nav-link:not(.active):hover { background-color: var(--bg); }

/* BLOG */
.blog-post { background: var(--card); margin-bottom: 2.5rem; }
.blog-post .post-media img { width:100%; height:auto; }
.blog-post .post-body { padding: 2rem; }
.blog-post .post-meta { color: var(--muted); margin-bottom: 1rem; display:flex; align-items:center; }
.post-meta .meta-icon { background-color: var(--accent); color:#fff; width:40px; height:40px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; margin-right:1rem; font-size:1.2rem; }

.sidebar-widget { background: var(--card); padding:1.5rem; margin-bottom:2rem; }
.sidebar-widget .widget-title { font-size:1.2rem; margin-bottom:1rem; padding-bottom:.5rem; border-bottom:2px solid var(--bg); }
.sidebar-widget ul { list-style:none; padding-left:0; }
.sidebar-widget ul li a { color: var(--muted); text-decoration:none; transition: color .2s ease; }
.sidebar-widget ul li a:hover { color: var(--accent); }

.latest-post-item { display:flex; align-items:center; margin-bottom:1rem; }
.latest-post-item img { width:60px; height:60px; object-fit:cover; margin-right:1rem; }

.tag-link { display:inline-block; padding:.3rem .8rem; background:var(--bg); color:var(--muted); text-decoration:none; margin:.2rem; border-radius:4px; transition: background-color .2s ease, color .2s ease; }
.tag-link:hover { background:var(--accent); color:#fff; }

/* FOOTER */
footer { background: #465663; color: #e6eef3; }

/* responsive tweaks */
@media (max-width: 991px){ .navbar { padding:.6rem 1rem } }
/* styles.css — breadcrumb tweaks */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  --bs-breadcrumb-divider: "›"; /* nicer divider */
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--muted, #8d99a6);
  padding: 0 0.5rem;
}
.breadcrumb .breadcrumb-item a {
  color: var(--dark, #344154);
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--accent, #f2a019);
  text-decoration: underline;
}
/* /* WHAT WE DO section */
.what-we-do {
  --panel-bg: #ffffff;
  --panel-border: rgba(52,65,84,0.06);
}

.quote-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(242,160,25,0.04), rgba(242,160,25,0.02));
  border: 1px solid var(--panel-border);
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 110px;
  line-height: 1;
  color: rgba(242,160,25,0.12);
  font-family: "Georgia", serif;
  user-select: none;
  pointer-events: none;
}

.quote-panel h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--dark);
  margin-top: 0;
}

.quote-text {
  font-size: 1.125rem;
  color: var(--dark);
}

.check-list li {
  margin-bottom: .6rem;
  color: var(--dark);
  font-weight: 600;
}

/* service cards */
.service-card {
  background: #fff;
  border: 1px solid rgba(25,35,45,0.04);
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(25,35,45,0.08);
}
.icon-circle {
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(242,160,25,0.12), rgba(52,65,84,0.03));
  font-size:24px;
  color: var(--accent);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .quote-mark { font-size: 72px; left: 10px; top: 6px; }
  .quote-panel { padding: 1.75rem; }
}

@media (max-width: 575.98px) {
  .quote-mark { display:none; }
  .quote-panel { padding: 1.25rem; }
  .service-card { padding: 1rem; }
}

/* subtle reveal animation on anchor insertion */
.quote-panel, .service-card {
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(8px);
  animation: revealUp .5s ease forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
/* WHAT WE DO — modern feature strip */
.what-we-do-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98));
  --card-bg: #ffffff;
}

/* Heading styles */
.what-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}
.what-title .muted {
  color: var(--muted, #8d99a6);
  opacity: .95;
}
.what-title .accent-strong {
  color: var(--accent, #f2a019);
}

/* tiny decorative lines + center icon */
.title-deco {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.title-deco .line {
  height:2px;
  width:110px;
  background: linear-gradient(90deg, rgba(0,0,0,0.04), rgba(0,0,0,0.01));
  border-radius:2px;
}
.title-deco .icon-circle{
  display:inline-block;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(242,160,25,0.08);
  color: var(--accent, #f2a019);
  font-weight:700;
  transform: translateY(-1px);
}

/* Feature card */
.feature-card {
  background: var(--card, #fff);
  border: 1px solid rgba(52,65,84,0.04);
  transition: transform .28s ease, box-shadow .28s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding-top:28px;
  padding-bottom:28px;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(25,35,45,0.06);
}

/* Round icon */
.feature-icon {
  width:86px;
  height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background: linear-gradient(180deg, rgba(242,160,25,0.12), rgba(52,65,84,0.02));
  color:var(--accent, #f2a019);
  font-size:34px;
  box-shadow: 0 8px 18px rgba(25,35,45,0.04);
}

/* Title + description */
.feature-card h5 {
  margin-top:8px;
  margin-bottom:8px;
  color: var(--dark, #344154);
  font-weight:700;
}
.feature-card p {
  color: var(--muted, #7b8792);
  line-height:1.5;
  font-size:0.95rem;
  max-width: 18rem;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .title-deco .line { width:60px; }
  .feature-card p { max-width: 100%; padding-left: 12px; padding-right:12px; }
}
@media (max-width: 575.98px) {
  .feature-icon { width:66px; height:66px; font-size:26px; }
  .feature-card { padding-top:20px; padding-bottom:20px; }
}
/* SVG icons in feature circles */
.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent, #f2a019);
}
/* Accent orange for headings */
.accent-text {
  color: #f2a019; /* Orange */
}

/* Decorative underline */
.section-padding h2 {
  position: relative;
  /* display: inline-block; */
  padding-bottom: 8px;
}

.section-padding h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f2a019; /* Orange underline */
  margin: 12px auto 0;
  border-radius: 2px;
}
/* Bigger, bold "WHAT WE DO" heading */
.what-we-do-title {
  font-size: 2.8rem;   /* adjust as needed */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.what-we-do-title .accent-strong {
  color: #f2a019;  /* your orange highlight */
}
