/* ── Page Hero Banner ── */
.bdm-page-title {
  position: relative;
  padding: 5rem 0 4.5rem;
  background:
	linear-gradient(135deg, rgba(9, 20, 50, 0.88) 0%, rgba(18, 48, 120, 0.75) 50%, rgba(9, 20, 50, 0.92) 100%),
	url("https://www.springboard.com/blog/wp-content/uploads/2021/05/useful-data-analysis-methods-to-use-on-your-next-project.jpeg") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

/* Floating decorative particles */
.bdm-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bdm-hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(245, 134, 52, 0.18);
  animation: bdm-float 7s ease-in-out infinite;
}

.bdm-hero-particles span:nth-child(1) {
  width: 160px;
  height: 160px;
  top: -40px;
  left: -40px;
  animation-delay: 0s;
}

.bdm-hero-particles span:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 8%;
  animation-delay: 1.5s;
  background: rgba(40, 75, 140, .18);
}

.bdm-hero-particles span:nth-child(3) {
  width: 110px;
  height: 110px;
  bottom: -30px;
  left: 30%;
  animation-delay: 3s;
}

.bdm-hero-particles span:nth-child(4) {
  width: 50px;
  height: 50px;
  top: 20%;
  right: 20%;
  animation-delay: 4.5s;
  background: rgba(255, 255, 255, .07);
}

.bdm-hero-particles span:nth-child(5) {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -60px;
  animation-delay: 2s;
  background: rgba(40, 75, 140, .1);
}

@keyframes bdm-float {

  0%,
  100% {
	transform: translateY(0) scale(1);
  }

  50% {
	transform: translateY(-20px) scale(1.05);
  }
}

/* Inner content layout */
.bdm-hero-inner {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.bdm-breadcrumb {
  display: inline-flex;
  margin-bottom: 1.75rem;
}

.bdm-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: .4rem 1.2rem;
  font-size: var(--fs-sm);
}

.bdm-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color .2s;
}

.bdm-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.bdm-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

.bdm-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .35);
}

/* Category badge */
.bdm-hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--brand-orange);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.4rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(245, 134, 52, 0.35);
}

/* Main hero title */
.bdm-hero-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  font-size: var(--fs-3xl);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  letter-spacing: -.01em;
}

/* Subtitle */
.bdm-hero-sub {
  font-family: var(--bs-body-font-family);
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* SVG wave at bottom */
.bdm-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.bdm-hero-wave svg {
  display: block;
  width: 100%;
  height: 64px;
}

/* ── Intro Split ── */
.bdm-intro {
  padding: 3.5rem 0 3rem;
  background: #fff;
}

.bdm-intro h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--fs-lg);
  line-height: 1.4;
}

.bdm-intro p {
  color: #4a5a72;
  font-size: var(--fs-base);
  line-height: 1.8;
}

.bdm-intro-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(40, 75, 140, .12);
}

/* ── Services Section ── */
.bdm-services {
  padding: 4.5rem 0;
  background: #f7f9fc;
}

.bdm-section-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: var(--brand-navy);
  font-size: var(--fs-2xl);
  text-align: center;
  margin-bottom: .6rem;
}

.bdm-title-bar {
  width: 48px;
  height: 3px;
  background: #f58634;
  border-radius: 2px;
  margin: 0 auto 3rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(40, 75, 140, .1);
}

.service-card .sc-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  color: #f58634;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--brand-navy);
  margin-bottom: .5rem;
}

.service-card p {
  color: #5a6a82;
  font-size: var(--fs-base);
  line-height: 1.7;
  margin: 0;
}

/* ── Why Choose Section ── */
.bdm-why {
  padding: 4.5rem 0;
  background: #fff;
}

.bdm-why h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: var(--brand-navy);
  font-size: var(--fs-2xl);
  line-height: 1.3;
  margin-bottom: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245, 134, 52, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  color: #f58634;
  margin-top: .1rem;
}

.why-text strong {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--fs-base);
  margin-bottom: .25rem;
}

.why-text p {
  font-size: var(--fs-sm);
  color: #5a6a82;
  line-height: 1.65;
  margin: 0;
}

/* Right side: image grid + stats */
.bdm-img-grid {
  display: flex;
  gap: .75rem;
  min-height: 460px;
}

.bdm-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-width: 0;
}

.bdm-col .img-main {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  min-height: 0;
}

.bdm-col .img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bdm-col .stat-img {
  flex: 1.6;
  border-radius: 10px;
  overflow: hidden;
  min-height: 0;
}

.bdm-col .stat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stat-box {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.stat-box.stat-teal {
  background: #f58634;
  color: #fff;
}

.stat-box.stat-dark {
  background: #284b8c;
  color: rgba(255, 255, 255, 0.55);
}

.stat-box.stat-dark .stat-num {
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.8rem;
}

.stat-box .stat-num {
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  font-size: var(--fs-2xl);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-box .stat-lbl {
  font-size: var(--fs-sm);
  font-weight: 600;
  opacity: .85;
  line-height: 1.4;
}

/* ── CTA Band ── */
.bdm-cta {
  background: #0d1f3c;
  padding: 4.5rem 0;
  text-align: center;
}

.bdm-cta h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: var(--fs-3xl);
  margin-bottom: 1rem;
}

.bdm-cta p {
  color: rgba(255, 255, 255, .65);
  font-size: var(--fs-base);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}