/* ── Page Hero Banner ── */

html {
	scroll-behavior: smooth;
}
.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);
}


/* Industry Tabs (Segmented Control) */


.segmented-control {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 4px;
	background: var(--brand-soft);
	border-radius: 8px;
	white-space: nowrap;
}

.segmented-control .btn-tab {
	padding: 8px 20px;
	border-radius: 6px;
	border: none;
	background: transparent;
	color: var(--brand-muted);
	font-weight: 600;
	transition: all 0.3s;
}

.segmented-control .btn-tab.active {
	background: var(--brand-navy);
	color: white;
	box-shadow: 0 4px 10px rgba(40, 75, 140, 0.2);
}

/* Content Sections */
  section { 
	scroll-margin-top: 180px; 
}

.section-number {
	font-size: var(--fs-3xl);
	font-weight: 800;
	color: var(--brand-navy);
	opacity: 0.15;
	margin-right: 15px;
}

.h3.fw-bold {
	/* font-size: var(--fs-2xl); */
	font-weight: 700;
	color: var(--brand-navy);
}

/* Sidebar Navigation */
.sidebar-nav .nav-link {
	border-left: 3px solid transparent;
	padding: 12px 20px;
	color: var(--brand-muted);
	background: transparent;
	margin: 2px 0;
}

.sidebar-nav .nav-link.active {
	border-left-color: var(--brand-orange);
	background: var(--brand-soft);
	color: var(--brand-navy);
	font-weight: 700;
}

/* Cards and Lists */
.content-card {
	background: #fff;
	border: 1px solid var(--brand-line);
	border-radius: 12px;
	padding: 30px;
	height: 100%;
	transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.orange-bullet {
	width: 10px;
	height: 10px;
	background: var(--brand-orange);
	display: inline-block;
	border-radius: 2px;
	margin-right: 15px;
	flex-shrink: 0;
	margin-top: 8px;
}

.stats-banner {
	background: var(--brand-navy);
	color: white;
	/* border-radius: 12px; */
	padding: 40px;
}
 /* Industry Nav Wrapper Styling */
 .industry-nav-wrapper {
	position: sticky;
	/*top: 130px;*/
	top: 100px;
	z-index: 1020;
	background: #fff;
	padding: 15px 0;
	margin-bottom: 20px;
}

/* Segmented Control Styling */

/* Tab Button Styling */
.btn-tab {
	text-decoration: none;
	color: #555;
	padding: 10px 25px;
	border-radius: 50px;
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-tab:hover {
	color: var(--brand-navy);
	background: rgba(13, 110, 253, 0.05);
}

/* Active Tab Styling */
.btn-tab.active {
	background: var(--brand-navy);
	color: #fff !important;
	box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}


/* Hide scrollbar for nav but keep functionality */
.segmented-control::-webkit-scrollbar {
	display: none;
}
.segmented-control {
	-ms-overflow-style: none;
	scrollbar-width: none;
}