/* Theme adapted from provided HTML design */
:root {
  /* Palette matched to provided logo (blue + red) */
  --primary-color: #2e5771; /* logo blue */
  --secondary-color: #fff;
  --accent-color: #b22b2b; /* logo red */
  --accent-2: #0f2e44; /* deep blue for gradients */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #333;
  overflow-x: hidden;
  padding-top: 92px; /* fixed navbar spacing */
}

/* Scroll reveal animations (lightweight) */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(3px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1), filter 700ms ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal-up {
  transform: translateY(18px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Corporate: What we do */
.whatwedo-pro .card-soft {
  background:
    radial-gradient(circle at 18% 22%, rgba(178, 43, 43, 0.10), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(46, 87, 113, 0.12), transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #eef1f4;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}
.whatwedo-lead h2 {
  letter-spacing: -0.02em;
}
.whatwedo-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--primary-color) 60%, var(--accent-color) 120%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}
.whatwedo-icon i {
  font-size: 1.35rem;
}
.whatwedo-card {
  border-color: #eef1f4 !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}
.whatwedo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 18%, rgba(46, 87, 113, 0.10), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.whatwedo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10);
  border-color: rgba(46, 87, 113, 0.25) !important;
}
.whatwedo-card:hover::before {
  opacity: 1;
}
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 87, 113, 0.10);
  color: var(--primary-color);
  border: 1px solid rgba(46, 87, 113, 0.14);
  flex: 0 0 44px;
}
.svc-icon i {
  font-size: 1.2rem;
}
.list-check {
  list-style: none;
  padding-left: 0;
}
.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin: 0.4rem 0;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: rgba(178, 43, 43, 0.14);
  border: 1px solid rgba(178, 43, 43, 0.22);
}
.list-check li::after {
  content: "";
  position: absolute;
  left: 0.27rem;
  top: 0.78rem;
  width: 0.35rem;
  height: 0.2rem;
  border-left: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: rotate(-45deg);
}

/* Corporate: Mission / Vision */
.mv-pro {
  background:
    radial-gradient(circle at 18% 22%, rgba(46, 87, 113, 0.12), transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(178, 43, 43, 0.10), transparent 50%),
    linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}
.mv-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #eef1f4;
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  gap: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.mv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(46, 87, 113, 0.10), transparent 44%);
  pointer-events: none;
}
.mv-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--primary-color) 60%, var(--accent-color) 120%);
  color: #fff;
  flex: 0 0 54px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.mv-icon i {
  font-size: 1.35rem;
}

/* Links */
a {
  color: var(--primary-color);
}
a:hover {
  color: var(--accent-color);
}

/* Navbar */
.navbar {
  background-color: var(--secondary-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color) !important;
  text-decoration: none;
  padding: 0;
}
.navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

.logo-wrapper {
  width: 240px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}
.logo-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 240px;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.navbar-brand:hover .logo-wrapper img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--primary-color) 55%, var(--accent-color) 115%);
  color: var(--secondary-color);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-primary-custom:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(46, 87, 113, 0.30);
}
.btn-primary-custom span,
.btn-primary-custom i {
  position: relative;
  z-index: 1;
}

/* Outline button in logo palette */
.btn-outline-primary-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s;
}
.btn-outline-primary-custom:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(21, 26, 63, 0.25);
}

/* Make Bootstrap outline-dark match logo theme */
.btn-outline-dark {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 420px;
  overflow: hidden;
}
.hero-slider .carousel-item {
  height: 90vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.62) 85%);
  z-index: 1;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}
.hero-slider .carousel-item.active .hero-slide-img {
  transform: scale(1.04);
  transition: transform 6s ease;
}
.carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 2rem;
}
.hero-caption-card {
  max-width: 900px;
  width: min(900px, 100%);
  padding: 1.25rem 1.25rem;
  border-radius: 18px;
  background: rgba(10, 14, 22, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.carousel-caption h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}
.carousel-caption p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 780px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  margin-left: auto;
  margin-right: auto;
}
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  z-index: 3;
}
.carousel-control-prev {
  left: 30px;
}
.carousel-control-next {
  right: 30px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(178, 43, 43, 0.85);
  transform: translateY(-50%) scale(1.1);
}
.carousel-indicators {
  bottom: 30px;
  z-index: 3;
}
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  margin: 0 8px;
  transition: all 0.3s;
}
.carousel-indicators button.active {
  background: var(--accent-color);
  width: 40px;
  border-radius: 10px;
  border-color: var(--accent-color);
}

/* About (split section) */
.about-split {
  padding: 80px 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(46, 87, 113, 0.14), transparent 48%),
    radial-gradient(circle at 82% 18%, rgba(178, 43, 43, 0.14), transparent 52%),
    linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #eef1f4;
}
.about-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef1f4;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  background: #fff;
}
.about-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-content .section-title {
  margin-bottom: 0.5rem;
}
.about-pill {
  border-radius: 16px;
  padding: 14px 14px;
  border: 1px solid #eef1f4;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.about-pill-title {
  font-weight: 700;
  color: var(--primary-color);
}
.about-pill-text {
  color: #667085;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* What we do (professional look) */
.whatwedo-pro .card-soft {
  background:
    radial-gradient(circle at 18% 22%, rgba(178, 43, 43, 0.10), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(46, 87, 113, 0.12), transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #eef1f4;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}
.whatwedo-lead .icon-pill {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff;
}
.whatwedo-card {
  border-color: #eef1f4 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.whatwedo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.10);
  border-color: rgba(46, 87, 113, 0.25) !important;
}

/* Mission / Vision */
.mv-pro {
  background:
    radial-gradient(circle at 18% 22%, rgba(46, 87, 113, 0.12), transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(178, 43, 43, 0.10), transparent 50%),
    linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}
.mv-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #eef1f4;
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  gap: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}
.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--primary-color) 60%, var(--accent-color) 120%);
  color: #fff;
  flex: 0 0 52px;
}
.mv-icon i {
  font-size: 1.35rem;
}

@media (max-width: 992px) {
  body {
    padding-top: 84px;
  }
  .hero-slider,
  .hero-slider .carousel-item {
    height: 60vh;
    min-height: 360px;
  }
  .about-split {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .hero-caption-card {
    padding: 1rem 1rem;
    border-radius: 16px;
  }
  .about-media img {
    max-height: 420px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  .carousel-control-prev {
    left: 15px;
  }
  .carousel-control-next {
    right: 15px;
  }
}
@media (max-width: 576px) {
  .hero-slider,
  .hero-slider .carousel-item {
    height: 55vh;
    min-height: 260px;
  }
  .carousel-caption {
    padding: 1.25rem;
  }
  .hero-caption-card {
    padding: 0.95rem 0.95rem;
    border-radius: 14px;
  }
  .about-split {
    padding: 54px 0;
  }
  .about-media {
    border-radius: 16px;
  }
  .logo-wrapper {
    width: 180px;
    height: 60px;
  }
  .logo-wrapper img {
    max-width: 180px;
    max-height: 60px;
  }
}

/* Sections */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.section-padding {
  padding: 80px 0;
}

.page-hero {
  background: radial-gradient(circle at 18% 12%, rgba(178, 43, 43, 0.14), transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(46, 87, 113, 0.20), transparent 55%),
    linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 64px 0;
}
.page-hero .lead,
.page-hero p {
  color: #5a6075;
}

.card-surface {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

/* Premium badge */
.badge-brand {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--primary-color) 55%, var(--accent-color) 120%);
  color: #fff;
}

/* Gallery cards */
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}
.gallery-card .gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}
.gallery-card .meta {
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.5;
}

.gallery-card-pro {
  border-color: #e4e8ec;
  display: flex;
  flex-direction: column;
}
.gallery-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f4;
}
.gallery-card-pro .gallery-img {
  height: 100%;
  min-height: 200px;
}
.gallery-card-pro:hover .gallery-img {
  transform: scale(1.04);
}
.gallery-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gallery-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--accent-2);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.gallery-card-meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8892a0;
}
.gallery-filter-pill {
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  color: var(--primary-color);
  border-color: #dee2e6 !important;
}
.gallery-page-cta {
  border-top: 1px solid #e4e8ec;
  padding-top: 1.75rem;
}

/* Donate blocks */
.donate-panel {
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.donate-panel .panel-title {
  color: var(--primary-color);
  font-weight: 800;
}
.muted-2 {
  color: #667085;
}

/* Feature cards */
.feature-card {
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: 1px solid #f0f0f0;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.feature-icon-wrapper i {
  font-size: 2rem;
  color: #fff;
}

.feature-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

iframe {
  border: 0;
}

/* Stats tiles */
.enhanced-stat-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
  height: 100%;
}
.enhanced-stat-card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon-wrapper i {
  font-size: 2rem;
  color: white;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
}
.stat-label {
  font-size: 1.05rem;
  margin-top: 0.35rem;
  color: #666;
}

/* Footer (kept simple but on-theme) */
.footer {
  background: linear-gradient(135deg, #0f2e44 0%, #2e5771 55%, #6f1a1a 120%);
  color: #fff;
  padding: 70px 0 0;
}
.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer a:hover {
  color: var(--accent-color);
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding: 1.5rem 0;
}

/* Corporate footer */
.footer-corporate {
  padding: 4.25rem 0 0;
  background: linear-gradient(165deg, #0a1f2e 0%, #0f2e44 38%, #1a3d52 72%, #243948 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.footer-corporate .footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand-mark {
  width: 4px;
  height: 2.25rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-color), rgba(255, 255, 255, 0.35));
  flex-shrink: 0;
}
.footer-brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}
.footer-tagline {
  margin: 0;
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.footer-nav li {
  margin-bottom: 0.5rem;
}
.footer-nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none;
  display: inline-block;
  padding: 0.15rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-nav a:hover {
  color: #fff !important;
  transform: translateX(3px);
}
.footer-contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}
.footer-contact-list li:last-child {
  margin-bottom: 0;
}
.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}
.footer-contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}
.footer-contact-value {
  font-size: 0.93rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  display: inline-block;
}
a.footer-contact-value:hover {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact-address {
  color: rgba(255, 255, 255, 0.82) !important;
}
.footer-corporate .footer-bottom {
  margin-top: 3rem;
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* -------------------------------------------------------------------------- */
/* Home page — corporate layout & components (.page-home)                     */
/* -------------------------------------------------------------------------- */

.page-home {
  --home-surface: #f4f6f8;
  --home-border: #e4e8ec;
  --home-text-muted: #5a6573;
}

.muted {
  color: var(--home-text-muted, #5a6573);
}

.section-pad {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.section-pad.pt-0 {
  padding-top: 0;
}

.btn-grf {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--primary-color) 55%, var(--accent-color) 115%);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 10px 28px rgba(15, 46, 68, 0.22);
}
.btn-grf:hover,
.btn-grf:focus {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 46, 68, 0.28);
  filter: brightness(1.03);
}

/* Hero: image-only (no overlay copy; client replaces image files) */
.home-hero-images-only .carousel-item::before {
  display: none;
}

.home-hero-images-only .hero-slide-img {
  transform: none;
}

.home-hero-images-only .carousel-item.active .hero-slide-img {
  transform: scale(1.02);
  transition: transform 6s ease;
}

.home-hero-indicators {
  bottom: 1.25rem;
}

/* Trust strip */
.home-trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 1.35rem 0;
  background: #fff;
  border-bottom: 1px solid var(--home-border);
  box-shadow: 0 12px 40px rgba(15, 46, 68, 0.06);
}

.home-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-trust-item {
    justify-content: flex-start;
    padding-right: 1rem;
    border-right: 1px solid var(--home-border);
  }
  .home-trust-strip .row > .col:last-child .home-trust-item {
    border-right: 0;
    padding-right: 0;
  }
}

.home-trust-icon {
  font-size: 1.35rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.home-trust-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-2);
  line-height: 1.25;
}

.home-trust-meta {
  font-size: 0.8rem;
  color: var(--home-text-muted);
  margin-top: 0.15rem;
  line-height: 1.35;
}

/* Shared section typography */
.home-section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(178, 43, 43, 0.35);
}

.home-section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.home-section-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--home-text-muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* Why choose — calm surface */
.home-why-choose {
  background:
    radial-gradient(circle at 12% 20%, rgba(46, 87, 113, 0.08), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(178, 43, 43, 0.06), transparent 48%),
    linear-gradient(180deg, #fff 0%, var(--home-surface) 100%);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.home-pillar-card {
  text-align: left;
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--home-border);
  box-shadow: 0 8px 28px rgba(15, 46, 68, 0.06);
}
.home-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(15, 46, 68, 0.1);
}
.home-pillar-card .feature-icon-wrapper {
  margin: 0 0 1.1rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.home-pillar-card .feature-icon-wrapper i {
  font-size: 1.45rem;
}
.home-pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-2) !important;
  margin-bottom: 0.5rem;
}

/* Impact band */
.home-stats-band {
  padding: clamp(3rem, 5vw, 4.25rem) 0;
  background: linear-gradient(135deg, #0b2436 0%, var(--accent-2) 45%, #1a4a66 100%);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}
.home-stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(178, 43, 43, 0.12), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}
.home-stats-band .container {
  position: relative;
  z-index: 1;
}

.home-stats-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.home-stats-heading {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-stats-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.home-stat-tile {
  padding: 1.35rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.home-stat-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.home-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
}

.home-stats-band .stat-number,
.home-stat-number {
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.1;
}

.home-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.35rem;
  line-height: 1.35;
}

/* Testimonials */
.home-testimonials {
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
}

.home-quote-card {
  margin: 0;
  padding: 1.65rem 1.5rem;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 8px 28px rgba(15, 46, 68, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.home-quote-card:hover {
  box-shadow: 0 14px 40px rgba(15, 46, 68, 0.09);
  transform: translateY(-3px);
}

.home-quote-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--home-text-muted);
  margin: 0 0 1.25rem;
  padding: 0;
}
.home-quote-text::before {
  content: "\201C";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-color);
  opacity: 0.35;
  margin-bottom: 0.35rem;
}

.home-quote-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home-quote-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-2);
}

.home-quote-role {
  font-size: 0.82rem;
  color: #8892a0;
}

.page-home .about-split.home-about {
  border-bottom: 1px solid var(--home-border);
}

/* What we do — programme section (index) */
.wwd-section {
  background: linear-gradient(180deg, #f4f7f9 0%, #ffffff 38%, #ffffff 100%);
  border-top: 1px solid #e4e8ec;
}

.wwd-lead-panel {
  padding: 1.75rem 1.65rem;
  border-radius: 18px;
  border: 1px solid rgba(46, 87, 113, 0.1);
  box-shadow: 0 22px 58px rgba(15, 46, 68, 0.09);
}

.wwd-lead-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.wwd-lead-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.wwd-lead-headline {
  font-size: clamp(1.32rem, 2.1vw, 1.62rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-2);
  line-height: 1.22;
  margin: 0 0 0.85rem;
}

.wwd-lead-copy {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.3rem;
  max-width: 38ch;
}

.wwd-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.wwd-kpi {
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(228, 232, 236, 0.95);
  border-left: 3px solid var(--accent-color);
  box-shadow: 0 6px 18px rgba(15, 46, 68, 0.045);
}

.wwd-kpi-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8892a0;
  margin-bottom: 0.2rem;
}

.wwd-kpi-value {
  display: block;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--accent-2);
  letter-spacing: -0.015em;
}

.wwd-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.wwd-service-card {
  padding: 1.4rem 1.3rem 1.35rem;
  position: relative;
}

.wwd-card-index {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(46, 87, 113, 0.11);
  z-index: 2;
  line-height: 1;
}

.wwd-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 1;
  padding-right: 1.75rem;
}

.wwd-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--accent-2);
  margin: 0 0 0.45rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.wwd-card-list {
  font-size: 0.875rem;
  line-height: 1.55;
}

.wwd-service-card .svc-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(46, 87, 113, 0.14), rgba(46, 87, 113, 0.06));
  border-color: rgba(46, 87, 113, 0.2);
}

@media (max-width: 575.98px) {
  .wwd-kpi-grid {
    grid-template-columns: 1fr;
  }
}
