/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


/* ================================================================
   Testimonial — Read More / Read Less
   ================================================================ */
.vrg-read-more {
	color: #6fb7f5;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.vrg-read-more:hover {
	text-decoration: underline;
	color: #10518b;
}

/* FlexSlider sets an inline height at init — override so the card
   always shrinks to fit the truncated content. */
.fslider.testimonial .flexslider,
.fslider.testimonial .slide {
	height: auto !important;
}

/* Testimonial modal */
#vrg-testimonial-modal .modal-content {
	font-family: 'Manrope', sans-serif;
}
#vrg-testimonial-modal .vrg-modal-text {
	font-size: 1rem;
	line-height: 1.85;
	color: #444;
	font-weight: 300;
}
#vrg-testimonial-modal .vrg-modal-name {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #111;
}
#vrg-testimonial-modal .vrg-modal-role {
	font-size: 0.82rem;
	color: #888;
}


/* ================================================================
   About Page — Hero
   ================================================================ */
#speaking-hero,
#coaching-hero,
#results-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

#about-hero,
#contact-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

.vrg-about-hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.vrg-about-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.vrg-about-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.vrg-about-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.vrg-about-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #6fb7f5;
	margin-bottom: 20px;
	border: 1px solid rgba(111, 183, 245, 0.45);
	padding: 6px 18px;
	border-radius: 50px;
	background: rgba(111, 183, 245, 0.1);
}

.vrg-about-hero-title {
	font-size: clamp(3rem, 7vw, 5.4rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -2.5px;
	color: #fff;
	margin-bottom: 18px;
}

.vrg-hero-accent {
	color: #6fb7f5;
}

.vrg-about-hero-tagline {
	font-size: 1.3rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	text-transform: none;
}

.vrg-about-hero-sub {
	font-size: 1.15rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.78);
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.75;
}

/* ================================================================
   About Page — Section Eyebrow Label
   ================================================================ */
.vrg-about-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #6fb7f5;
	margin-bottom: 10px;
}

/* ================================================================
   About Page — Bio Section
   ================================================================ */
.vrg-about-photo {
	max-width: 100%;
	max-height: 520px;
	object-fit: contain;
	border-radius: 6px;
}

.vrg-about-bio-name {
	font-size: 2.6rem;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.1;
	margin-bottom: 20px;
	color: #111;
}

.vrg-about-bio-text {
	font-weight: 300;
	font-size: 1.05rem;
	line-height: 1.85;
	color: #444;
	margin-bottom: 1rem;
}

.vrg-about-stats {
	display: flex;
	gap: 40px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.vrg-stat {
	display: flex;
	flex-direction: column;
}

.vrg-stat-num {
	font-size: 2.2rem;
	font-weight: 800;
	color: #6fb7f5;
	line-height: 1;
}

.vrg-stat-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #888;
	margin-top: 4px;
}

/* ================================================================
   About Page — Story / Journey Tabs
   ================================================================ */
.vrg-story-bg {
	background-color: #f8fbff;
}

/* Tab navigation */
.vrg-tabs {
	max-width: 780px;
	margin: 0 auto;
}

.vrg-tab-nav {
	display: flex;
	gap: 0;
	border-bottom: 2px solid #dde9f5;
	margin-bottom: 40px;
}

.vrg-tab-btn {
	background: none;
	border: none;
	padding: 14px 28px 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: #aab8c8;
	cursor: pointer;
	position: relative;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.vrg-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: #6fb7f5;
	transform: scaleX(0);
	transition: transform 0.25s ease;
}

.vrg-tab-btn:hover {
	color: #3a5a78;
}

.vrg-tab-btn.active {
	color: #111;
}

.vrg-tab-btn.active::after {
	transform: scaleX(1);
}

/* Tab panels */
.vrg-tab-panels {
	position: relative;
	min-height: 160px;
}

.vrg-tab-panel {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.vrg-tab-panel.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.vrg-tab-text {
	font-weight: 300;
	font-size: 1.05rem;
	line-height: 1.9;
	color: #444;
	margin-bottom: 1.25rem;
}

/* Mobile: stack tabs */
@media (max-width: 575.98px) {
	.vrg-tab-nav {
		flex-direction: column;
		border-bottom: none;
		gap: 2px;
	}

	.vrg-tab-btn {
		padding: 12px 16px;
		text-align: left;
		border-left: 3px solid transparent;
		border-bottom: 1px solid #dde9f5;
	}

	.vrg-tab-btn::after {
		display: none;
	}

	.vrg-tab-btn.active {
		border-left-color: #6fb7f5;
		color: #111;
	}
}

/* Timeline */
.vrg-timeline {
	position: relative;
	padding-left: 28px;
}

.vrg-timeline::before {
	content: '';
	position: absolute;
	left: 5px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: #d8e8f5;
	border-radius: 1px;
}

.vrg-timeline-item {
	position: relative;
	display: flex;
	gap: 20px;
	margin-bottom: 36px;
}

.vrg-timeline-item:last-child {
	margin-bottom: 0;
}

.vrg-timeline-marker {
	position: absolute;
	left: -28px;
	top: 4px;
}

.vrg-timeline-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #6fb7f5;
	border: 3px solid #fff;
	box-shadow: 0 0 0 2px #6fb7f5;
}

.vrg-timeline-content {
	padding-left: 4px;
}

.vrg-timeline-year {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #6fb7f5;
	margin-bottom: 4px;
}

.vrg-timeline-title {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 4px;
}

.vrg-timeline-desc {
	font-size: 0.9rem;
	font-weight: 300;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* ================================================================
   Coaching Page — What It Feels Like Banner
   ================================================================ */
.vrg-feels-banner {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}
.vrg-feels-banner-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.vrg-feels-banner-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 30, 58, 0.85);
}
.vrg-feels-banner-content {
	position: relative;
	z-index: 2;
}
.vrg-feels-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.vrg-feels-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.65;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.parallax .vrg-feels-list li {
	font-size: 1.35rem;
	font-weight: 700;
}
.vrg-feels-list li:last-child {
	border-bottom: none;
}
.vrg-feels-list li i {
	color: #6fb7f5;
	font-size: 1rem;
	margin-top: 4px;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.vrg-feels-banner {
		padding: 70px 0;
	}
}

/* ================================================================
   Speaking Page — Mission Banner
   ================================================================ */
.vrg-mission-banner {
	background: linear-gradient(135deg, #10518b, #1a6db5);
	padding: 120px 0;
}
.vrg-mission-banner-content {
	position: relative;
}
.vrg-mission-banner-quote {
	font-size: clamp(1.25rem, 2.8vw, 1.75rem);
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	letter-spacing: -0.5px;
	margin-bottom: 28px;
}
.vrg-mission-banner-body {
	font-size: 1.05rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.8;
	max-width: 580px;
	margin: 0 auto 8px;
}

@media (max-width: 767px) {
	.vrg-mission-banner {
		padding: 80px 0;
	}
}

/* ================================================================
   About Page — Mission & Values
   ================================================================ */
.vrg-mission-statement {
	font-weight: 300;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #555;
}

.vrg-value-card {
	background: #fff;
	border: 1px solid #e8f2fc;
	border-radius: 10px;
	padding: 36px 28px;
	height: 100%;
	text-align: center;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.vrg-value-card:hover {
	box-shadow: 0 8px 32px rgba(111, 183, 245, 0.15);
	transform: translateY(-4px);
}

.vrg-value-icon {
	font-size: 1.8rem;
	color: #6fb7f5;
	margin-bottom: 16px;
}

.vrg-value-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 10px;
}

.vrg-value-desc {
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.75;
	color: #666;
	margin: 0;
}

/* ================================================================
   About Page — Approach (Parallax)
   ================================================================ */
.vrg-approach-title {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -1.5px;
	color: #fff;
	margin-bottom: 24px;
}

.vrg-approach-body {
	font-size: 1.05rem;
	font-weight: 300;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.85);
	max-width: 680px;
	margin: 0 auto 16px;
}

/* ================================================================
   About Page — Survival Mode Split Section
   ================================================================ */
.vrg-split-img-wrap {
	height: 100%;
	min-height: 560px;
	overflow: hidden;
	border-radius: 8px;
	margin: 20px;
}

.vrg-split-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	border-radius: 8px;
}

.vrg-split-text {
	padding: 60px 48px;
}

.vrg-split-body {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.75;
	color: #222;
	margin-bottom: 24px;
}

.vrg-split-body:last-child {
	margin-bottom: 0;
}

.vrg-split-body-light {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	color: #555;
	margin-bottom: 16px;
}

.vrg-split-body-light:last-child {
	margin-bottom: 0;
}

.vrg-split-img-short {
	min-height: unset !important;
	height: 260px !important;
	margin: 20px;
}

.vrg-split-img-shorter {
	min-height: unset !important;
	height: 350px !important;
	margin: 20px;
}

.vrg-split-img-horizontal {
	width: 100%;
	min-height: unset !important;
	height: 100% !important;
	margin: 20px 20px 20px 0;
}

/* ================================================================
   Speaking — Story Banner
   ================================================================ */
.vrg-story-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.vrg-story-banner-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.vrg-story-banner-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.50);
}

.vrg-story-banner-content {
	position: relative;
	z-index: 2;
	padding-top: 90px;
	padding-bottom: 90px;
}

.vrg-story-banner-text {
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
}

.vrg-story-banner-text:last-child {
	margin-bottom: 0;
}

/* ================================================================
   Leadership Banner
   ================================================================ */
.vrg-leadership-banner {
	background: linear-gradient(135deg, #10518b, #1a6db5);
	padding-top: 90px !important;
	padding-bottom: 90px !important;
}

.vrg-banner-headline {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 24px;
}

.vrg-banner-sub {
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.85);
	max-width: 620px;
	margin: 0 auto;
}

.vrg-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.vrg-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
	margin-bottom: 14px;
}

.vrg-check-list li::before {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: url('../images/check.png') center/contain no-repeat;
	margin-top: 2px;
}

.vrg-split-heading {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.15;
	color: #111;
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.vrg-split-img-wrap {
		min-height: 320px;
	}

	.vrg-split-text {
		padding: 40px 20px;
	}

	.vrg-split-body {
		font-size: 1.1rem;
	}
}

/* ================================================================
   About Page — Media / Credentials
   ================================================================ */
.vrg-credential-card {
	background: #fff;
	border: 1px solid #e8f2fc;
	border-radius: 10px;
	padding: 40px 28px;
	height: 100%;
	text-align: center;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.vrg-credential-card:hover {
	box-shadow: 0 8px 32px rgba(111, 183, 245, 0.15);
	transform: translateY(-4px);
}

.vrg-credential-icon {
	font-size: 2rem;
	color: #6fb7f5;
	display: block;
	margin-bottom: 16px;
}

.vrg-credential-title {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 10px;
}

.vrg-credential-desc {
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.75;
	color: #666;
	margin: 0;
}


.vrg-media-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 64px;
	border: 1.5px dashed #c8dff5;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aac8e0;
	background: #f5faff;
}

.vrg-media-logo-img {
	height: 120px;
	width: 220px;
	object-fit: contain;
	border-radius: 12px;
	filter: grayscale(100%);
	opacity: 0.65;
	cursor: pointer;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.vrg-media-logo-img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* ================================================================
   About Page — Responsive
   ================================================================ */
@media (max-width: 991px) {
	.vrg-about-hero-title {
		font-size: 2.8rem;
		letter-spacing: -1.5px;
	}

	.vrg-about-hero-tagline {
		font-size: 1.1rem;
	}

	.vrg-approach-title {
		font-size: 2rem;
	}

	.vrg-about-stats {
		gap: 24px;
	}
}

@media (max-width: 575.98px) {
	.vrg-about-hero-title {
		font-size: 2.1rem;
		letter-spacing: -1px;
	}

	.vrg-about-hero-tagline {
		font-size: 1rem;
	}

	.vrg-about-hero-sub {
		font-size: 0.95rem;
	}

	.vrg-about-bio-name {
		font-size: 2rem;
	}

	.vrg-about-stats {
		gap: 20px;
	}

	.vrg-stat-num {
		font-size: 1.8rem;
	}

	.vrg-approach-title {
		font-size: 1.7rem;
		letter-spacing: -0.5px;
	}

	.vrg-media-logo-placeholder {
		width: 130px;
		height: 52px;
	}
}


/* ================================================================
   Global Font Override — Manrope
   ================================================================ */
:root {
	--cnvs-body-font: 'Manrope', sans-serif;
	--cnvs-primary-font: 'Manrope', sans-serif;
	--cnvs-secondary-font: 'Manrope', sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, a, li, button, input, textarea, select, div, section, header, footer, nav, span:not([class*="fa-"]):not([class*="bi-"]):not([class*="icon"]):not([class*="material"]) {
	font-family: 'Manrope', sans-serif !important;
}

.material-symbols-rounded {
	font-family: 'Material Symbols Rounded' !important;
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
}

/* Bolder base body text */
body {
	font-weight: 500 !important;
}

p, li {
	font-weight: 500 !important;
}

h1, h2 {
	font-weight: 800 !important;
}

h3 {
	font-weight: 800 !important;
}

h4, h5, h6 {
	font-weight: 700 !important;
}

/* ================================================================
   Global Link & Button Color
   ================================================================ */
a,
.button-link,
.menu-link:hover,
a.color {
	color: #6fb7f5;
}

.button-link:hover {
	color: #4da3e8;
}

.button:not(.button-border):not([class*="bg-"]) {
	background-color: #6fb7f5;
	border-color: #6fb7f5;
}

/* ================================================================
   VRG 5-Step Engagement Process
   ================================================================ */
#vrg-process {
	--vrg-accent: #6fb7f5;
}

.vrg-scroll-container {
	height: 500vh;
	position: relative;
}

.vrg-sticky-viewport {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vrg-process-inner {
	display: flex;
	align-items: center;
	gap: 80px;
	padding: 0 80px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

/* ---- Left panel ---- */
.vrg-left-panel {
	flex: 0 0 300px;
}

.vrg-eyebrow {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--vrg-accent);
	margin-bottom: 16px;
}

.vrg-section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a2e;
	margin: 0 0 40px;
}

/* ---- Step nav ---- */
.vrg-step-nav {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-left: 0;
	list-style: none;
}

.vrg-progress-track {
	position: absolute;
	left: 4px;
	top: 14px;
	bottom: 14px;
	width: 2px;
	background: #e8e8e8;
	border-radius: 1px;
	overflow: hidden;
	z-index: 0;
}

.vrg-progress-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--vrg-accent);
	border-radius: 1px;
	transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vrg-nav-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 0;
	position: relative;
	cursor: default;
}

.vrg-nav-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d8d8d8;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.vrg-nav-item.active .vrg-nav-dot {
	background: var(--vrg-accent);
	transform: scale(1.5);
	box-shadow: 0 0 0 4px rgba(0, 190, 215, 0.15);
}

.vrg-nav-item.completed .vrg-nav-dot {
	background: var(--vrg-accent);
}

.vrg-nav-label {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #bbb;
	transition: color 0.4s ease;
	line-height: 1;
}

.vrg-nav-item.active .vrg-nav-label {
	color: #1a1a2e;
	font-weight: 700;
}

.vrg-nav-item.completed .vrg-nav-label {
	color: var(--vrg-accent);
}

/* ---- Right panel ---- */
.vrg-right-panel {
	flex: 1;
	position: relative;
	height: 380px;
	min-height: 320px;
}

.vrg-step-counter {
	position: absolute;
	top: 0;
	right: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: #ccc;
	letter-spacing: 1px;
	z-index: 2;
}

.vrg-counter-current {
	color: #1a1a2e;
	font-weight: 700;
}

.vrg-step-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
				transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.vrg-step-content.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.vrg-step-num-bg {
	font-family: 'Poppins', sans-serif;
	font-size: 120px;
	font-weight: 800;
	line-height: 0.9;
	color: #f0f2f4;
	margin-bottom: -8px;
	user-select: none;
	pointer-events: none;
}

.vrg-step-divider {
	width: 40px;
	height: 3px;
	background: var(--vrg-accent);
	border-radius: 2px;
	margin-bottom: 18px;
}

.vrg-step-title {
	font-family: 'Poppins', sans-serif;
	font-size: 44px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.05;
	letter-spacing: -1.5px;
	margin-bottom: 20px;
}

.vrg-step-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.85;
	color: #6c757d;
	max-width: 500px;
	margin: 0;
}

/* ---- Scroll hint ---- */
.vrg-scroll-hint {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: #bbb;
	font-family: 'Poppins', sans-serif;
	font-size: 10px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	transition: opacity 0.4s ease;
}

.vrg-scroll-hint.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.vrg-scroll-hint-icon {
	animation: vrg-nudge 1.8s ease-in-out infinite;
}

@keyframes vrg-nudge {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(5px); }
}

/* ================================================================
   Parallax Overlay
   ================================================================ */
.parallax-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.581);
	z-index: 1;
	pointer-events: none;
}

.parallax .container {
	position: relative;
	z-index: 2;
}

/* ================================================================
   Gallery Slider
   ================================================================ */
.vrg-gallery {
	position: relative;
	width: 100%;
	max-width: 650px;
	aspect-ratio: 1/1;
	overflow: hidden;
}

.vrg-gallery-track {
	width: 100%;
	height: 100%;
}

.vrg-gallery-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.vrg-gallery-slide.active {
	opacity: 1;
}

.vrg-gallery-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
}

.vrg-gallery-btn {
	flex-shrink: 0;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.vrg-gallery-btn:hover {
	background: rgba(0, 0, 0, 0.7);
}

/* ================================================================
   Mobile Header — smaller logo, logo left, hamburger right
   ================================================================ */
@media (max-width: 991px) {
	#header {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		height: 60px;
		overflow: visible !important;
		z-index: 299;
	}

	#header-wrap {
		padding: 10px;
	}

	/* Drop mobile menu below the header, edge to edge */
	#header .primary-menu {
		position: fixed !important;
		top: 60px !important;
		left: 0 !important;
		right: 0 !important;
		width: 100vw !important;
		transform: none !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		background: #fff;
		z-index: 298;
		align-items: flex-start !important;
		min-height: 0 !important;
		height: auto !important;
	}

	#header .primary-menu .menu-container,
	#header .primary-menu > *,
	#header .primary-menu ul {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	/* Full height hero on mobile */
	#slider {
		min-height: 100vh !important;
		height: 100vh !important;
	}

	#slider .slider-inner,
	#slider .swiper,
	#slider .swiper-wrapper,
	#slider .swiper-slide {
		min-height: 100vh !important;
		height: 100vh !important;
	}

	/* Push caption below the fixed header */
	#slider.include-header .slider-caption {
		box-sizing: border-box;
		overflow: visible;
		margin-top: -80px;
	}

	/* Scale down hero text so nothing gets clipped */
	#slider .slider-caption h3 {
		font-size: 2.8rem !important;
		line-height: 1.1em !important;
	}

	/* Show the paragraph on mobile */
	#slider .slider-caption p {
		display: block !important;
		font-size: 0.95rem;
	}

	.vrg-video-thumb {
		height: 500px !important;
		width: 100% !important;
		object-fit: cover;
	}

	.header-row {
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	#logo {
		margin-right: auto;
		justify-content: flex-start;
	}

	#header-wrap #logo img {
		height: auto;
		max-height: 40px;
		width: auto;
		object-fit: contain;
	}

	.primary-menu-trigger {
		margin-left: auto;
		order: 2;
	}
}

/* ================================================================
   Results — centre icon with text
   ================================================================ */
.fbox-plain.feature-box {
	align-items: center;
}

/* ================================================================
   Team Spotlight Sequence
   ================================================================ */
.vrg-team-item img {
	opacity: 0.25;
	transition: opacity 0.8s ease;
}

.vrg-team-item.vrg-team-active img {
	opacity: 1;
}

/* ================================================================ */
.vrg-slide-text {
	margin-top: 16px;
}

.vrg-slide-title,
.vrg-slide-desc {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.vrg-slide-text-visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
	.vrg-process-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		padding: 40px 24px;
	}

	.vrg-left-panel {
		flex: none;
		width: 100%;
	}

	.vrg-section-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.vrg-step-nav {
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.vrg-progress-track { display: none; }

	.vrg-nav-item {
		flex-direction: column;
		align-items: center;
		gap: 6px;
		padding: 8px 12px;
		flex-shrink: 0;
	}

	.vrg-right-panel {
		width: 100%;
		height: 300px;
	}

	.vrg-step-num-bg { font-size: 64px; }
	.vrg-step-title  { font-size: 28px; }
	.vrg-step-desc   { font-size: 14px; }

	.vrg-scroll-hint { display: none; }
}

@media (max-width: 991px) {
	.mobile-cont {
		margin-left: 20px;
	}
}

@media (max-width: 575.98px) {
	.one-page-arrow {
		display: block !important;
	}

	/* Center social icons in footer on mobile */
	.vrg-social-col {
		text-align: center !important;
		display: flex !important;
		justify-content: center !important;
	}

	/* Remove transparent portion of gradient container on mobile */
	.promo[style*="linear-gradient(transparent"] {
		background: linear-gradient(#6fb7f5, #10518b) !important;
	}

	/* Our Process — fix text overflow on mobile */
	#our-process {
		margin-top: 3rem !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		overflow: hidden;
	}

	#our-process .container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	/* 5 A's — center title on mobile */
	.container:has(.vrg-team-row) > h2 {
		text-align: center;
	}

	/* 5 A's — column layout, centered on mobile */
	.vrg-team-row {
		flex-direction: column;
		align-items: center;
	}

	.vrg-team-row .vrg-team-item {
		width: 60%;
	}

	/* Centre problem boxes as a group on mobile */
	.container.mt-5 .row.col-mb-50 .col-sm-6 {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

	/* Centre results boxes as a group on mobile */
	.section.bg-transparent .row.justify-content-center .col-sm-6 {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

	/* Video section — padding + center text on mobile */
	.section.bg-transparent.mt-0 .container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.section.bg-transparent.mt-0 .col-lg-6[style*="padding-left"] {
		padding-left: 0 !important;
		padding-top: 2rem;
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
}

.mobile-about {
	margin-top: 7em;
}

/* ================================================================
   Accelerate with IMPACT™ — Connected Process Steps
   ================================================================ */
.vrg-process-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.vrg-ps-item {
	flex: 1;
	text-align: center;
	max-width: 180px;
	padding: 0 8px;
}

.vrg-ps-item img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 8px;
}

.vrg-ps-arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-start;
	padding-top: 38px;
	color: #6fb7f5;
	font-size: 1.6rem;
	line-height: 1;
}

.vrg-loop-indicator {
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #6fb7f5;
	font-weight: 700;
	font-size: 0.95rem;
}

/* Loop-back arrow — always visible, aligned by JS */
#vrg-loop-arrow {
	pointer-events: none;
	margin-top: 4px;
}

.vrg-loop-arc {
	height: 28px;
	border: 2px solid #6fb7f5;
	border-top: none;
	border-radius: 0 0 20px 20px;
	position: relative;
	box-sizing: border-box;
}

/* Upward arrowhead at left end — points back toward Assess */
.vrg-loop-arc::before {
	content: '';
	position: absolute;
	left: -7px;
	top: -9px;
	width: 0;
	height: 0;
	border-bottom: 10px solid #6fb7f5;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}

@media (max-width: 767px) {
	#vrg-loop-arrow { display: none; }
}

@media (max-width: 767px) {
	.vrg-process-steps {
		flex-wrap: wrap;
		gap: 16px;
		justify-content: space-around;
	}

	.vrg-ps-item {
		flex: 0 0 42%;
		max-width: 42%;
	}

	.vrg-ps-arrow {
		display: none;
	}
}

/* ================================================================
   Full-width Video Statement Section
   ================================================================ */
.vrg-video-statement {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
}

.vrg-vs-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vrg-vs-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.vrg-vs-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	z-index: 2;
}

.vrg-vs-quote {
	font-size: clamp(1.2rem, 2.5vw, 1.9rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	text-align: center;
	max-width: 860px;
	margin: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 575.98px) {
	.vrg-video-statement {
		height: 420px;
	}

	.vrg-vs-content {
		padding: 28px 20px;
	}
}

/* ================================================================
   Testimonial slider — fixed minimum height (sized to longest slide)
   ================================================================ */
.testimonial.fslider .flexslider {
	min-height: 280px;
}

@media (max-width: 575.98px) {
	.testimonial.fslider .flexslider {
		height: 420px !important;
		min-height: unset;
		overflow: hidden;
	}
}

/* ================================================================
   IMPACT Quotes — all visible, active one highlighted
   ================================================================ */
.vrg-iq-item {
	opacity: 0.25;
	transition: opacity 0.5s ease;
	font-size: 1.1rem;
	line-height: 1.65;
	padding: 6px 0;
	border-left: 3px solid transparent;
	padding-left: 10px;
}

.vrg-iq-item.active {
	opacity: 1;
	border-left-color: #6fb7f5;
}

.vrg-iq-label {
	font-weight: 800;
	color: #6fb7f5;
	margin-right: 4px;
}

/* ================================================================
   Coaching Offerings — premium minimal cards
   ================================================================ */
.vrg-offering-card {
	background: #fff;
	border-radius: 12px;
	padding: 40px 32px;
	height: 100%;
	border-top: 3px solid #6fb7f5;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vrg-offering-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 36px rgba(111, 183, 245, 0.18);
}

.vrg-offering-icon {
	font-size: 1.75rem;
	color: #6fb7f5;
	margin-bottom: 20px;
	display: block;
	line-height: 1;
}

.vrg-offering-title {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 12px;
	letter-spacing: -0.2px;
}

.vrg-offering-desc {
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.8;
	color: #666;
	margin: 0;
}

/* ================================================================
   Offerings Carousel — always-visible nav arrows
   ================================================================ */
.vrg-offerings-wrap {
	position: relative;
	padding: 0 64px;
}

#oc-offerings .owl-nav {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

#oc-offerings .owl-prev,
#oc-offerings .owl-next {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	opacity: 1 !important;
	visibility: visible !important;
	background: #fff !important;
	border: 1px solid #e8f2fc !important;
	border-radius: 50% !important;
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	text-align: center !important;
	font-size: 18px !important;
	color: #6fb7f5 !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
	transition: background 0.2s ease, color 0.2s ease !important;
	left: auto !important;
	right: auto !important;
}

#oc-offerings .owl-prev {
	left: -64px !important;
}

#oc-offerings .owl-next {
	right: -64px !important;
}

#oc-offerings .owl-prev:hover,
#oc-offerings .owl-next:hover {
	background: #6fb7f5 !important;
	color: #fff !important;
}

/* ================================================================
   FAQ Accordion — remove focus border
   ================================================================ */
.accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

@media (max-width: 575.98px) {
	.mobile-about {
		margin-top: 2em !important;
	}

	#about-hero,
	#contact-hero {
		min-height: 80vh;
		padding-top: 0 !important;
	}
}


/* ================================================================
   Floating CTA Button
================================================================ */

.vrg-float-cta {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #6fb7f5;
	color: #fff !important;
	text-decoration: none !important;
	padding: 14px 22px;
	border-radius: 50px;
	box-shadow: 0 6px 24px rgba(111, 183, 245, 0.45);
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.01em;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.vrg-float-cta:hover {
	background-color: #10518b;
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(16, 81, 139, 0.5);
}

.vrg-float-cta-icon {
	font-size: 1.15rem;
	line-height: 1;
	display: flex;
	align-items: center;
}

.vrg-float-cta-text {
	line-height: 1;
}

/* On mobile, show icon only to save space */
@media (max-width: 575.98px) {
	.vrg-problem-box {
		margin-left: 16px !important;
		margin-right: 16px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
		width: auto !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.vrg-engage-video {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.vrg-engage-text {
		padding-left: 16px !important;
		padding-right: 16px !important;
		text-align: center;
	}

	.vrg-engage-text ul {
		display: inline-block;
		text-align: left;
	}
}

@media (max-width: 575.98px) {
	.vrg-float-cta {
		bottom: 20px;
		right: 20px;
		padding: 16px 16px;
		border-radius: 50%;
		gap: 0;
		box-shadow: 0 6px 20px rgba(16, 81, 139, 0.45);
	}

	.vrg-float-cta-text {
		display: none;
	}

	.vrg-float-cta-icon {
		font-size: 1.4rem;
	}
}
/* ================================================================
   Contact Page — Process Steps
   ================================================================ */
.vrg-contact-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
}
.vrg-contact-step-num {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #6fb7f5;
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}
.vrg-contact-step-title {
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 4px;
	color: #111;
}
.vrg-contact-step-desc {
	color: #555;
	font-weight: 300;
	line-height: 1.75;
	margin: 0;
}
.vrg-contact-expects {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vrg-contact-expects li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
	color: #444;
	line-height: 1.5;
}
.vrg-contact-expects li i {
	color: #6fb7f5;
	flex-shrink: 0;
}
