/* ========================================
   STEPSTREAM SOLUTIONS - MAIN STYLESHEET
   Consolidated and optimized for performance
   ======================================== */

/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. CSS Variables & Brand Colors
   2. Base Reset & Typography
   3. Layout & Grid
   4. Header & Navigation
   5. Buttons & CTAs
   6. Icons & Decorative Elements
   7. Content Components
      - Blurbs & Service Cards
      - Quotes & Testimonials
      - Counters & Stats
      - Cards & Panels
   8. Forms & Inputs
   9. Lists & Tables
   10. Sections & Backgrounds
   11. Footer
   12. Sliders & Carousels
   13. Utilities & Helpers
   14. Responsive Adjustments
   15. Custom Brands Paralalax
   ======================================== */

/* ========================================
   1. CSS VARIABLES & BRAND COLORS
   ======================================== */
:root {
	/* StepStream Brand Palette */
	--stepstream-primary: #FF5449;
	/* Fresh Coral - Primary CTAs, icons, highlights */
	--stepstream-secondary: #48b8cb;
	/* Teal Blue - Hover states, secondary actions */
	--stepstream-dark-bg: #556066;
	/* Charcoal Gray - Hero backgrounds, nav, footer */
	--stepstream-text-gray: #7C8A90;
	/* Mid Gray - Body text, labels */
	--stepstream-light-accent: #B4DB9F;
	/* Soft Green - Borders, card accents */
	--stepstream-base: #FAFAF6;
	/* Pearl - Main background */
	--stepstream-white: #FFFFFF;
	--stepstream-black: #000000;

	/* Shadows */
	--box-shadow: 0 10px 24px rgba(0, 0, 0, 0.50);
	--box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.stepstream-primary {
	color: var(--stepstream-primary) !important;
}

.stepstream-secondary {
	color: var(--stepstream-secondary) !important;
}

.stepstream-text-gray {
	color: var(--stepstream-text-gray) !important;
}

.stepstream-black {
	color: var(--stepstream-black) !important;
}

.stepstream-base {
	color: var(--stepstream-base) !important;
}

.stepstream-white {
	color: var(--stepstream-white) !important;
}

.stepstream-light-accent-bg {
	background-color: var(--stepstream-light-accent) !important;
}

.stepstream-base-bg {
	background-color: var(--stepstream-base) !important;
}

.stepstream-black-bg {
	background-color: var(--stepstream-black) !important;
}

.stepstream-gray-bg {
	background-color: var(--stepstream-dark-bg) !important;
}

.stepstream-white-bg {
	background-color: var(--stepstream-white) !important;
}

.padding-bottom-15 {
	padding-bottom: 15px !important;
}

.padding-bottom-15 {
	padding-bottom: 30px !important;
}

/* Tech Card */

.tech-logo-card {
	background: var(--stepstream-dark-bg);
	border-radius: 16px;
	padding: 18px;
	display: inline-flex;
	width: 100%;
	min-height: 110px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.tech-logo-card img {
	max-width: 62px;
	height: auto;
}

.tech-logo-card.tech-logo-card-text {
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
}

/* ========================================
   2. BASE RESET & TYPOGRAPHY
   ======================================== */

/* Focus & Selection */
*:focus,
a:focus,
button:focus {
	outline: none !important;
}

button::-moz-focus-inner {
	border: 0;
}

::selection {
	background: var(--stepstream-primary);
	color: var(--stepstream-white);
}

::-moz-selection {
	background: var(--stepstream-primary);
	color: var(--stepstream-white);
}

/* Base Element Resets */
p,
blockquote,
ul,
ol,
dl,
form,
address,
figure {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

ul li,
ol li {
	display: block;
}

dt {
	font-weight: inherit;
}

dd {
	margin-bottom: 0;
	line-height: inherit;
}

cite {
	font-style: normal;
}

blockquote {
	padding-left: 0;
	border-left: 0;
}

label {
	margin-bottom: 0;
}

input,
button,
select,
textarea {
	outline: none;
}

/* Body */
body {
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: subpixel-antialiased;
	font-size: 14px;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 2;
	font-weight: 400;
	color: var(--stepstream-text-gray);
	background-color: var(--stepstream-black);
}

@media (min-width: 992px) {
	body {
		font-size: 13px;
	}
}

/* Links */
a {
	display: inline-block;
	text-decoration: none;
	transition: .33s all ease;
	color: var(--stepstream-primary);
}

a:active,
a:focus {
	color: var(--stepstream-primary);
}

a:hover {
	color: var(--stepstream-secondary);
	text-decoration: none;
}

html p a:hover {
	text-decoration: none;
}

a[href*='callto'],
a[href*='mailto'] {
	white-space: nowrap;
}

/* Images */
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

/* Horizontal Rules */
hr {
	margin-top: 0;
	margin-bottom: 0;
	border-top: 1px solid #e0e0e2;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
	margin-top: 0;
	margin-bottom: 0;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 600;
	color: var(--stepstream-dark-bg);
	text-transform: uppercase;
	letter-spacing: .5px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading-1 a,
.heading-2 a,
.heading-3 a,
.heading-4 a,
.heading-5 a,
.heading-6 a {
	display: inline;
	font: inherit;
	letter-spacing: inherit;
	color: inherit;
}

h1 a:active,
h1 a:focus,
h2 a:active,
h2 a:focus,
h3 a:active,
h3 a:focus,
h4 a:active,
h4 a:focus,
h5 a:active,
h5 a:focus,
h6 a:active,
h6 a:focus {
	color: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.heading-1 a:hover,
.heading-2 a:hover,
.heading-3 a:hover,
.heading-4 a:hover,
.heading-5 a:hover,
.heading-6 a:hover {
	color: var(--stepstream-primary);
}

h1>*,
h2>*,
h3>*,
h4>*,
h5>*,
h6>* {
	display: inline-block;
}

h1 span:not(:last-child),
h2 span:not(:last-child),
h3 span:not(:last-child),
h4 span:not(:last-child),
h5 span:not(:last-child),
h6 span:not(:last-child) {
	margin-right: .25em;
}

/* H1 - Page Titles */
h1,
.heading-1 {
	font-size: 30px;
	line-height: 1.2;
}

@media (min-width: 768px) {

	h1,
	.heading-1 {
		font-size: 56px;
		line-height: 1;
	}
}

@media (min-width: 1200px) {

	h1,
	.heading-1 {
		font-size: 74px;
	}
}

@media (min-width: 1400px) {

	h1,
	.heading-1 {
		font-size: 70px;
	}
}

/* H2 - Section Titles */
h2,
.heading-2 {
	font-size: 26px;
	line-height: 1.3;
}

@media (min-width: 768px) {

	h2,
	.heading-2 {
		font-size: 32px;
		line-height: 1.16667;
	}
}

@media (min-width: 992px) {

	h2,
	.heading-2 {
		font-size: 44px;
	}
}

@media (min-width: 1200px) {

	h2,
	.heading-2 {
		font-size: 60px;
	}
}

/* H3 - Subsection Titles */
h3,
.heading-3 {
	font-size: 22px;
	line-height: 1.45;
}

@media (min-width: 768px) {

	h3,
	.heading-3 {
		font-size: 28px;
	}
}

@media (min-width: 1200px) {

	h3,
	.heading-3 {
		font-size: 40px;
		line-height: 1.35;
	}
}

/* H4 - Component Titles */
h4,
.heading-4 {
	font-size: 18px;
	line-height: 1.5;
}

@media (min-width: 768px) {

	h4,
	.heading-4 {
		font-size: 24px;
	}
}

@media (min-width: 1400px) {

	h4,
	.heading-4 {
		font-size: 30px;
		line-height: 1.43333;
	}
}

/* H5 - Card/Block Titles */
h5,
.heading-5 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.45;
}

@media (min-width: 768px) {

	h5,
	.heading-5 {
		font-size: 20px;
		line-height: 1.5;
	}
}

/* H6 - Small Headings */
h6,
.heading-6 {
	font-size: 14px;
	line-height: 1.6;
}

@media (min-width: 768px) {

	h6,
	.heading-6 {
		font-size: 16px;
		line-height: 1.5;
	}
}

/* Decorated Heading */
.heading-decorated::after {
	background: var(--stepstream-primary);
}

/* ========================================
   3. LAYOUT & GRID
   ======================================== */

/* Page Container */
.page {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

/* Text Utilities */
.page .text-primary {
	color: var(--stepstream-primary);
}

.page .text-dark {
	color: var(--stepstream-dark-bg);
}

.text-muted {
	color: var(--stepstream-text-gray);
}

/* First Letter Enhancement */
.first-letter::first-letter {
	font-size: 2em;
	font-weight: 600;
	color: var(--stepstream-primary);
	line-height: 1;
	float: left;
	margin-right: 0.1em;
}

/* ========================================
   4. HEADER & NAVIGATION
   ======================================== */

.page-header {
	background: var(--stepstream-dark-bg);
}

/* RD Navbar */
.rd-navbar,
.rd-navbar-panel,
.rd-navbar-inner {
	background-color: var(--stepstream-base);
}

.rd-navbar-nav li a {
	color: var(--stepstream-dark-bg);
}

.rd-navbar-nav li a:hover,
.rd-navbar-nav li.active a {
	color: var(--stepstream-primary);
}

/* Active navigation state */
.rd-navbar-nav>li.active>a {
	color: var(--stepstream-primary);
	font-weight: 600;
	position: relative;
}

/* Optional: Add bottom border to active item on desktop */
@media (min-width: 992px) {
	.rd-navbar-nav>li.active>a::after {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		height: 2px;
		background-color: var(--stepstream-primary);
	}
}

/* Mobile menu toggle */
.rd-navbar-toggle span,
.rd-navbar-toggle span::before,
.rd-navbar-toggle span::after {
	background-color: var(--stepstream-primary);
}

@media (max-width: 991.98px) {
	.rd-navbar-nav>li>.rd-navbar-dropdown {
		border-bottom: 1px solid var(--stepstream-light-accent);
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
}

.page-footer .brand {
	display: inline-block;
	margin-bottom: 20px;
}

/* Breadcrumbs */
.breadcrumbs-custom {
	position: relative;
	background: var(--stepstream-light-accent);
}

.breadcrumbs-custom__inner {
	padding: 20px 0;
	text-align: center;
}

.breadcrumbs-custom__inner>*+* {
	margin-top: 10px;
}

.breadcrumbs-custom__title {
	font-size: 20px;
	line-height: 1.2;
	color: #000;
}

.breadcrumbs-custom__path>li {
	display: inline-block;
	vertical-align: baseline;
	font-size: 12px;
	line-height: 1.3;
}

.breadcrumbs-custom__path a {
	position: relative;
	top: -1px;
	color: var(--stepstream-primary);
}

.breadcrumbs-custom__path a:hover {
	color: #000;
}

.breadcrumbs-custom__path>li.active {
	color: #000;
}

.breadcrumbs-custom__path>li.active a {
	color: inherit;
	pointer-events: none;
}

.breadcrumbs-custom__path>li+li:before {
	position: relative;
	left: -1px;
	display: inline-block;
	padding: 0 5px;
	content: "/";
	vertical-align: baseline;
}

@media (min-width: 768px) {
	.breadcrumbs-custom__inner {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		margin-left: -15px;
		margin-right: -15px;
	}

	.breadcrumbs-custom__inner>* {
		padding: 0 15px;
	}

	.breadcrumbs-custom__inner>*+* {
		margin-top: 0;
	}

	.breadcrumbs-custom__title {
		font-size: 24px;
		line-height: 1.54167;
	}
}

/* ========================================
   5. BUTTONS & CTAs
   ======================================== */

/* Primary Button */
.button-primary,
.page .button-primary {
	color: var(--stepstream-white);
	background-color: var(--stepstream-primary);
	border-color: var(--stepstream-primary);
	transition: all .33s ease;
}

.button-primary-shadow {
	box-shadow: var(--box-shadow);
}

.button-primary-shadow-sm {
	box-shadow: var(--box-shadow-sm);
}

.button-primary:hover,
.button-primary:focus,
.button-primary:active,
.page .button-primary:hover,
.page .button-primary:focus,
.page .button-primary:active {
	color: var(--stepstream-white);
	background-color: var(--stepstream-secondary);
	border-color: var(--stepstream-secondary);
}

.btn-primary:active:hover {
	background-color: var(--stepstream-primary);
	border-color: var(--stepstream-primary);
}

/* Black Button */
.page .button-black {
	color: var(--stepstream-white);
	background-color: var(--stepstream-dark-bg);
	border-color: var(--stepstream-dark-bg);
}

.page .button-black:hover,
.page .button-black:focus,
.page .button-black:active {
	color: var(--stepstream-white);
	background-color: var(--stepstream-primary);
	border-color: var(--stepstream-primary);
}

/* Gray Dark Button */
.page .button-gray-dark {
	color: var(--stepstream-white);
	background-color: var(--stepstream-dark-bg);
	border-color: var(--stepstream-dark-bg);
}

.page .button-gray-dark:hover,
.page .button-gray-dark:focus,
.page .button-gray-dark:active {
	color: var(--stepstream-white);
	background-color: var(--stepstream-primary);
	border-color: var(--stepstream-primary);
}

/* Gray Light Outline */
.page .button-gray-light-outline:hover,
.page .button-gray-light-outline:focus,
.page .button-gray-light-outline:active {
	color: var(--stepstream-white);
	background-color: var(--stepstream-primary);
	border-color: var(--stepstream-primary);
}

/* Button Link */
.button-link,
.button-link:active,
.button-link:focus {
	color: var(--stepstream-primary);
}

.button-link:hover {
	color: var(--stepstream-secondary);
}

/* ========================================
   6. ICONS & DECORATIVE ELEMENTS
   ======================================== */

.page .icon-primary {
	color: var(--stepstream-secondary);
}

.page .icon-primary.icon-circle {
	background-color: var(--stepstream-primary);
	color: var(--stepstream-white);
}

.page a.icon-primary {
	color: var(--stepstream-primary);
}

.page a.icon-primary:hover {
	color: var(--stepstream-secondary);
}

.page a.icon-gray-darker:hover {
	color: var(--stepstream-primary);
}

.page .icon-default {
	color: var(--stepstream-dark-bg);
}

.stepstream-social {
	display: flex;
	gap: 10px;
}

.stepstream-social-icon {
	background-color: transparent !important;
	color: var(--stepstream-light-accent) !important;
	border: 2px solid var(--stepstream-light-accent);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.stepstream-social-icon:hover {
	background-color: var(--stepstream-primary) !important;
	border-color: var(--stepstream-primary);
	color: var(--stepstream-base) !important;
	transform: translateY(-3px);
}

/* ========================================
   SERVICE FLOW BANNER
   ======================================== */

.stepstream-flow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.stepstream-flow-item {
	text-align: center;
	flex: 1;
	min-width: 100px;
}

.stepstream-flow-icon {
	width: 60px;
	height: 60px;
	background-color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	transition: all 0.3s ease;
}

.stepstream-flow-icon:hover {
	background-color: var(--stepstream-secondary);
	transform: scale(1.1);
}

.stepstream-flow-icon .icon {
	font-size: 28px;
	color: var(--white);
}

.stepstream-flow-label {
	font-size: 13px;
	color: var(--light-accent);
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stepstream-flow-arrow {
	color: var(--primary);
	font-size: 32px;
	font-weight: 700;
	flex: 0;
	padding: 0 5px;
}

/* Responsive flow */
@media (max-width: 991px) {
	.stepstream-flow {
		flex-direction: column;
	}

	.stepstream-flow-arrow {
		transform: rotate(90deg);
		margin: 10px 0;
	}
}

/*

.stepstream-flow-wrapper {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.stepstream-flow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
}

.stepstream-flow-foundation {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.stepstream-flow-foundation-inner {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}

.stepstream-flow-foundation .icon {
	margin-right: 0.5rem;
	font-size: 1.3rem;
}

.stepstream-flow-foundation-label {
	font-size: 0.95rem;
	white-space: nowrap;
} */

/* ========================================
   7. CONTENT COMPONENTS
   ======================================== */

/* Blurbs & Service Cards */
.blurb__title {
	color: var(--stepstream-dark-bg);
}

.blurb__title a:hover {
	color: var(--stepstream-primary);
}

/* Blurb Circle Icons */
.blurb-circle__icon .icon {
	color: var(--stepstream-white);
	background: var(--stepstream-primary);
}

.desktop .blurb-circle:hover .blurb-circle__icon .icon::after {
	background: var(--stepstream-light-accent);
}

/* Blurb Minimal Icons */
.blurb-minimal__icon .icon {
	color: var(--stepstream-primary);
}

.blurb-minimal:hover .blurb-minimal__icon .icon {
	color: var(--stepstream-light-accent);
}

/* Quotes & Testimonials */
blockquote {
	border-left-color: var(--stepstream-primary);
}

.quote-author {
	color: var(--stepstream-dark-bg);
}

/* Counters & Stats */
.box-counter__icon {
	color: var(--stepstream-primary);
}

.box-counter__title {
	color: var(--stepstream-dark-bg);
}

/* Cards & Panels */
.card,
.panel {
	background-color: var(--stepstream-white);
	border-color: var(--stepstream-light-accent);
}

.card:hover,
.panel:hover {
	border-color: var(--stepstream-primary);
}

.card-header,
.panel-heading {
	background-color: var(--stepstream-light-accent);
	color: var(--stepstream-dark-bg);
}

.panel-heading a {
	color: var(--stepstream-dark-bg);
}

.panel-heading a:hover {
	color: var(--stepstream-primary);
}

/* ========================================
   8. FORMS & INPUTS
   ======================================== */

.form-input {
	color: var(--stepstream-text-gray);
	background-color: var(--stepstream-base);
	border-color: var(--stepstream-light-accent);
}

.form-input:focus {
	background: var(--stepstream-white);
	border-color: var(--stepstream-primary);
}

.form-label {
	color: var(--stepstream-text-gray);
}

.form-label-outside {
	color: var(--stepstream-dark-bg);
}

.checkbox-custom:checked~.checkbox-custom-dummy {
	background: var(--stepstream-primary);
}

/* ========================================
   9. LISTS & TABLES
   ======================================== */

/* Lists */
.list-primary>li>a {
	color: var(--stepstream-base);
}

.list-primary>li>a:hover {
	color: var(--stepstream-primary);
}

.list-terms dt,
.list-terms-inline dt {
	color: var(--stepstream-dark-bg);
}

/* Tables */
.table-custom th,
.table-custom td {
	color: var(--stepstream-dark-bg);
}

.table-custom-secondary th {
	color: var(--stepstream-white);
	background: var(--stepstream-dark-bg);
}

.table-custom-lighter thead th {
	background: var(--stepstream-base);
}

/* ========================================
   10. SECTIONS & BACKGROUNDS
   ======================================== */

/* Background Colors */
.bg-stepstream-base,
.bg-default {
	background-color: var(--stepstream-base);
}

.bg-accent,
.bg-gray-lighter {
	background-color: var(--stepstream-light-accent);
}

.bg-gray-darkest,
.bg-black {
	background-color: var(--stepstream-dark-bg);
}

.bg-primary {
	background-color: var(--stepstream-primary);
	color: var(--stepstream-white);
}

.bg-secondary {
	background-color: var(--stepstream-secondary);
	color: var(--stepstream-white);
}

.bg-dark {
	background-color: var(--stepstream-dark-bg);
	color: var(--stepstream-white);
}

.bg-light {
	background-color: var(--stepstream-light-accent);
	color: var(--stepstream-dark-bg);
}

/* Overlays */
.context-dark.bg-overlay-darker::before,
.bg-overlay-darker::before {
	background: rgba(85, 96, 102, 0.1);
}

/* Parallax Sections */
.parallax-container {
	position: relative;
	overflow: hidden;
}

.material-parallax {
	position: absolute;
	top: 0;
	left: -1px;
	right: -1px;
	bottom: 0;
}

.ipad .material-parallax,
.iphone .material-parallax {
	background-attachment: scroll !important;
}

.material-parallax img {
	display: none;
	position: absolute;
	left: 50%;
	bottom: 0;
	min-width: 101%;
	min-height: 101%;
	transform: translate3d(-50%, 0, 0);
	max-width: none;
}

.parallax-content {
	position: relative;
	z-index: 1;
}

.parallax-header__content h2,
.parallax-header__content p {
	color: var(--stepstream-base);
}

/* Hero Text Colors */
.white-parallax-text {
	color: var(--stepstream-white);
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.green-parallax-text {
	color: var(--stepstream-primary);
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.orange-parallax-text {
	color: var(--stepstream-secondary);
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.swiper-slide-caption p {
	color: var(--stepstream-light-accent);
}

/* Bucket Teaser Component */
.bucket-teaser {
	padding-top: 30px;
	padding-bottom: 30px;
}

@media (min-width: 992px) {
	.bucket-teaser {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.bucket-teaser .row {
	margin-left: 0;
	margin-right: 0;
}

.bucket-teaser__copy {
	padding-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}

.bucket-teaser__copy h3 {
	margin-top: 0;
	margin-bottom: 15px;
}

.bucket-teaser__copy p {
	margin-bottom: 10px;
}

.bucket-teaser__copy ul {
	list-style: disc;
	padding-left: 20px;
	margin: 0 0 20px 0;
}

.bucket-teaser__copy ul li {
	display: list-item;
	margin-bottom: 8px;
	line-height: 1.6;
}

/* ========================================
   11. FOOTER
   ======================================== */

.bg-footer-custom {
	background-image: url("../images/footer/60b2fb55-b6cb-4310-82b9-2677031503ba.png");
	background-size: cover;
	background-position: center;
}

.pre-footer-corporate {
	background-color: var(--stepstream-dark-bg);
	color: var(--stepstream-light-accent);
}

.pre-footer-corporate a {
	color: var(--stepstream-secondary);
}

.pre-footer-corporate a:hover {
	color: var(--stepstream-primary);
}

.pre-footer-corporate h6 {
	color: var(--stepstream-white);
}

.footer-corporate {
	background-color: #3d474b;
}

.footer-corporate .rights {
	color: var(--stepstream-light-accent);
}

/* Social Icons */
.list-inline-xxs a.icon {
	color: var(--stepstream-light-accent);
	border-color: var(--stepstream-light-accent);
}

.list-inline-xxs a.icon:hover {
	background-color: var(--stepstream-primary);
	border-color: var(--stepstream-primary);
	color: var(--stepstream-white);
}

/* ========================================
   12. SLIDERS & CAROUSELS
   ======================================== */

/* Swiper Pagination */
.swiper-pagination-bullet {
	background-color: var(--stepstream-light-accent);
	opacity: 0.25;
}

.swiper-pagination-bullet-active {
	background-color: var(--stepstream-primary);
	opacity: 1;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
	background-color: var(--stepstream-dark-bg) !important;
	color: var(--stepstream-primary);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	color: var(--stepstream-secondary);
}

/* ========================================
   13. UTILITIES & HELPERS
   ======================================== */

/* Labels */
.label {
	background-color: var(--stepstream-primary);
	color: var(--stepstream-white);
}

/* Links */
.link-icon,
.link-primary {
	color: var(--stepstream-primary);
}

.link-icon:hover,
.link-primary:hover {
	color: var(--stepstream-secondary);
}

/* Dividers */
.divider,
.divider-wrap:before,
.divider-wrap:after {
	background: var(--stepstream-secondary);
}

.divider-small {
	background: var(--stepstream-primary);
}

/* Borders */
.border-primary {
	border-color: var(--stepstream-primary);
}

.border-light {
	border-color: var(--stepstream-light-accent);
}

/* Progress Bars */
.progress-bar {
	background-color: var(--stepstream-primary);
}

.progress {
	background-color: var(--stepstream-light-accent);
}

/* Tabs & Accordions */
.nav-tabs>li>a:hover,
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
	color: var(--stepstream-primary);
	border-color: var(--stepstream-primary);
}

/* Pricing Tables */
.pricing-table .featured,
.pricing-table .highlighted {
	border-color: var(--stepstream-primary);
}

.pricing-table .price {
	color: var(--stepstream-primary);
}

/* ========================================
   14. RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 767px) {

	/* Mobile menu */
	.rd-navbar-nav-wrap {
		background-color: var(--stepstream-dark-bg);
	}
}

/* ========================================
   PRELOADER
   ======================================== */

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--stepstream-white);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preloader.loaded {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0s 0.3s;
}

.cssload-container {
	text-align: center;
}

.cssload-speeding-wheel {
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	border: 4px solid var(--stepstream-light-accent);
	border-top-color: var(--stepstream-primary);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.cssload-container p {
	color: var(--stepstream-text-gray);
	font-size: 14px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
	a[href]:after {
		content: none;
	}
}

.rd-navbar-dropdown li a.active {
	color: var(--stepstream-secondary);
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* ========================================
   Client Parallax Style CSS
   ======================================== */

.client-logos {
	padding: 3rem 0;
	background: #05070a;
	/* your dark background for contrast */
	overflow: hidden;
}

.client-logos-eyebrow {
	font-size: 0.95rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.7;
	margin-bottom: 1.25rem;
	color: var(--stepstream-base);
}

.client-logos-strip {
	position: relative;
	overflow: hidden;
}

.client-logos-track {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	/* animation: logo-scroll 30s linear infinite; */
}

.client-logo {
	height: 108px;
	opacity: 0.6;
	filter: grayscale(1);
	transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
	opacity: 1;
	filter: grayscale(0);
	transform: translateY(0);
}

/* Pause animation on hover (entire strip) */
.client-logos-strip:hover .client-logos-track {
	animation-play-state: paused;
}

/* Infinite horizontal scroll */
@keyframes logo-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* Responsive tweaks */
@media (max-width: 768px) {
	.client-logos {
		padding: 2.5rem 0;
	}

	.client-logos-track {
		gap: 2rem;
		animation-duration: 40s;
		/* a touch slower on mobile */
	}

	.client-logo {
		height: 24px;
	}
}

/* ========================================
   SUCCESS MODAL
   ======================================== */

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease, visibility 0s;
}

.modal-container {
	background: var(--stepstream-white);
	border-radius: 16px;
	padding: 40px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	position: relative;
	transform: scale(0.8) translateY(20px);
	transition: transform 0.3s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	font-size: 28px;
	color: var(--stepstream-text-gray);
	cursor: pointer;
	transition: color 0.2s ease;
	line-height: 1;
}

.modal-close:hover {
	color: var(--stepstream-primary);
}

.modal-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
}

.checkmark {
	width: 80px;
	height: 80px;
}

.checkmark-circle {
	stroke: var(--stepstream-primary);
	stroke-width: 2;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	animation: checkmark-circle 0.6s ease-in-out forwards;
}

.checkmark-check {
	stroke: var(--stepstream-primary);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: checkmark-check 0.3s ease-in-out 0.5s forwards;
}

@keyframes checkmark-circle {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes checkmark-check {
	to {
		stroke-dashoffset: 0;
	}
}

.modal-title {
	color: var(--stepstream-dark-bg);
	margin-bottom: 12px;
	text-transform: none;
}

.modal-message {
	color: var(--stepstream-text-gray);
	margin-bottom: 24px;
	line-height: 1.6;
}

.modal-button {
	min-width: 140px;
}