/*!
Theme Name: PWR UNION
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pwr-union
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&family=Cantata+One&family=Instrument+Sans:wght@400;500;600&family=Montserrat:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');


:root {
	--color-red: #ff2c35;
	--color-bg-light: #f5f8ff;
	--color-bg-gray: #f6f6f6;
	--color-text-dark: #1c1c1c;
	--color-text-gray: #646464;
	--color-text-muted: #7d7777;
	--color-white: #ffffff;
	--color-slate: #1e293b;
	--font-display: 'Playfair Display', serif;
	--font-label: 'Montserrat', sans-serif;
	--font-body: 'Bricolage Grotesque', sans-serif;
	--font-date: 'Instrument Sans', sans-serif;
	--fs-14: clamp(12px, 0.7vw, 14px);
	--fs-16: clamp(14px, 0.8vw, 16px);
	--fs-18: clamp(15px, 1vw, 18px);
	--fs-20: clamp(15px, 1.2vw, 20px);
	--fs-22: clamp(16px, 1.3vw, 22px);
	--fs-24: clamp(17px, 1.4vw, 24px);
	--fs-28: clamp(20px, 1.8vw, 28px);
	--fs-32: clamp(22px, 2vw, 32px);
	--fs-44: clamp(26px, 2.7vw, 44px);
	--fs-56: clamp(24px, 3.8vw, 56px);
	--fs-72: clamp(36px, 4.4vw, 72px);
	--sp-sm: 16px;
	--sp-md: 24px;
	--radius-sm: 10px;
	--radius-md: 20px;
	--radius-lg: 40px;
	--radius-xl: 60px;
	--radius-pill: 100px;
	--shadow-sm: 1px 1px 10px 0px rgba(80, 80, 80, 0.25);
	--shadow-md: 1px 1px 14px 0px rgba(131, 131, 131, 0.36);
	--shadow-gold: 1px 1px 14px 0px rgba(230, 233, 240, 0.24);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	color: var(--color-text-dark);
	background: var(--color-white);
	overflow-x: hidden;
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.25s ease;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.section-title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: var(--fs-56);
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--color-text-dark);
	margin-bottom: var(--sp-md);
}

.section-title .highlight {
	color: var(--color-gold-alt);
}

.section-subtitle {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-20);
	color: var(--color-text-gray);
	line-height: 1.7;
	max-width: 750px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-20);
    padding: .6rem 2rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}
.btn-primary:hover {
	color: var(--color-white);
	opacity: 0.95;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	border: 1px solid var(--color-orange);
	color: var(--color-white);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--fs-20);
	padding: 0.6rem 2rem;
	border-radius: 80px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.btn-secondary:hover {
	background: var(--gradient-gold);
	color: var(--color-white);
	border-color: var(--color-orange);
}
.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--color-orange);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-20);
    padding: .6rem 1.5rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.btn-outline-navy:hover {
	background: var(--gradient-gold);
	color: var(--color-white);
	border-color: var(--color-orange);
}

.arrow-icon {
	width: 30px;
	height: auto;
	flex-shrink: 0;
}

.navbar-main {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}
.navbar-main .navbar-nav {
    gap: 2rem;
}
.navbar-main.scrolled {
    background: rgba(14, 43, 113, 0.97);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    top: 0;
}

.navbar-main.scrolled .navbar-logo img {
	width: 35%;
}

.navbar-logo img {
	width: auto;
}

.navbar-nav .nav-link {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-18);
	color: var(--color-white);
	padding: 4px 0;
	position: relative;
	transition: color 0.2s ease;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-gold);
	transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
	width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
	color: var(--color-gold);
}

.navbar-toggler {
	border: none;
	background: none;
	padding: 4px;
}

.navbar-toggler:focus {
	box-shadow: none;
	outline: none;
}

.navbar-toggler-icon-custom {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 28px;
}

.navbar-toggler-icon-custom span {
	height: 2px;
	background: var(--color-white);
	border-radius: 2px;
	transition: all 0.3s ease;
	display: block;
}

/* ── 5. HERO SECTION (BOOTSTRAP CAROUSEL) ────────────────── */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 1rem;
}
.hero {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: var(--color-slate);
}
.hero-bg-img-main {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity .8s ease-in-out;
}
.hero-bg-img-main.active {
    opacity: 1;
    z-index: 2;
}


.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(20,24,86,.55), rgba(20,24,86,.8));
    pointer-events: none;
}

.hero-section .hero-indicators {
    position: absolute;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex !important;
    margin: 0;
    list-style: none;
    padding: 0;
    pointer-events: auto;
}
.hero-section .hero-indicators button {
    width: 14px !important;
    height: 2px !important;
    min-width: 14px;
    border-radius: 2px;
    background-color: rgba(255,255,255,.35) !important;
    border: none;
    padding: 0;
    opacity: 1;
    text-indent: 0;
    cursor: pointer;
    pointer-events: auto;
}
.hero-section .hero-indicators button.active {
    width: 21px !important;
    background-color: var(--color-bg-light) !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin-inline: auto;
    height: calc(100dvh - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 6rem 4rem;
}

.hero-logo { margin-bottom: 28px; }
.hero-logo-img {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.hero-name {
    font-family: "Cantata One", serif;
    font-size: clamp(1.8rem, 5vw, 5rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: .5rem;
}
.hero-name-gold { color: var(--color-gold); }

.hero-subheading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    color: var(--color-white);
    margin-bottom: .5rem;
}

.hero-location {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.5rem;
}

.hero-divider {
    width: 250px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 1.5rem;
}

.hero-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 2rem);
    color: var(--color-white);
    margin-bottom: 2rem;
}
.hero-quote .text-gold { color: var(--color-gold); }

.hero-actions { display: flex; gap: 24px; }

.btn-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold);
    color: #1a1a4b;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .3s ease;
}
.btn-hero-pill:hover { background: #fff; color: #1a1a4b; }
.btn-hero-pill .arrow-icon path { stroke: #1a1a4b; }

.fight-section {
	position: relative;
	overflow: hidden;
	background: var(--color-white);
	padding-block: 8rem;
}

.fight-flag-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.fight-flag-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
    object-position: top center;
}

.fight-wave {
	position: relative;
	z-index: 2;
	width: 100%;
	line-height: 0;
	overflow: hidden;
}

.fight-wave img {
	width: 100%;
	height: auto;
	display: block;
}

.fight-wave--top img {
	transform: scaleY(-1);
}

.fight-wave--bottom img {
	transform: none;
}

.fight-inner {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 24px;
	align-items: center;
    flex-wrap: wrap;
}
.fight-col {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
    flex: 0 0 auto;
    width: calc(32% - 1rem);
}
.fight-center {
    text-align: center;
    flex: 0 0 auto;
    width: calc(36% - 1rem);
}
.fight-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.fight-item--ltr {
	flex-direction: row;
}

.fight-item--rtl {
	flex-direction: row;
}

.fight-icon {
	position: relative;
	width: 82px;
	height: 82px;
	flex-shrink: 0;
}

.fight-icon-circle {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.fight-icon-symbol {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	height: 42px;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

.fight-icon-symbol--multi {
	width: 38px;
	height: 38px;
}

/* ── Text blocks ── */
.fight-text {
	flex: 1;
}

.fight-text--left {
	text-align: left;
}

.fight-text--right {
	text-align: right;
}

.fight-title {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: var(--fs-24);
	color: var(--color-text-dark);
	line-height: 1.25;
	margin-bottom: 8px;
}

.fight-desc {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-18);
	color: var(--color-text-dark);
	line-height: 1.4;
	margin: 0;
	max-width: 380px;
}

.fight-item--rtl .fight-desc {
	margin-left: auto;
}
.fight-center-line {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 6rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin: 0;
    white-space: nowrap;
}

.fight-gold {
	color: var(--color-gold);
}


/* ── 8. BENEFITS / LEARN SECTION (Bootstrap 5 Tabs) ─────── */
.benefits-section {
	background: var(--color-bg-light);
	padding: 80px 0;
}

.benefits-nav.nav-pills {
	border: none;
	background: transparent;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 48px !important;
	padding: 0;
	list-style: none;
}

.benefits-nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-pill) !important;
    border: 1px solid var(--color-navy-mid) !important;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 400;
    color: rgba(100, 100, 100, 0.92) !important;
    background: transparent !important;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}

.benefits-nav-pill:hover {
	background: linear-gradient(90deg, #1742b4, #0e2b71) !important;
	color: var(--color-white) !important;
	border-color: var(--color-navy) !important;
	box-shadow: 0 6px 20px rgba(23, 66, 180, 0.25);
}

.benefits-nav-pill.active,
.benefits-nav-pill.show {
	background: linear-gradient(90deg, #1742b4, #0e2b71) !important;
	color: var(--color-white) !important;
	font-weight: 500;
	border-color: var(--color-navy) !important;
	box-shadow: 0 6px 20px rgba(23, 66, 180, 0.3);
}

.benefits-tab-content {
	padding-top: 8px;
}

.benefits-pane {
	animation: none;
}

.benefits-pane-grid {
	display: flex;
	gap: 80px;
	align-items: start;
}

.benefits-pane-title {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: var(--fs-44);
	color: var(--color-text-dark);
	margin-bottom: 24px;
	line-height: 1.2;
}

.benefits-pane-desc {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--fs-20);
	color: var(--color-text-gray);
	line-height: 1.75;
	margin-bottom: 25px;
	max-width: 700px;
}

.benefits-list {
	margin-bottom: 20px;
	padding: 0;
	list-style: none;
}

.benefits-list-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.benefits-list-item .bullet {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-gold-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefits-list-item span {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--fs-20);
	color: var(--color-text-dark);
	line-height: 1.55;
}

.benefits-pane-img {
	border-radius: var(--radius-md);
	overflow: hidden;
	/* height: 560px; */
}

.benefits-pane-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.benefits-pane-img:hover img {
	transform: scale(1.03);
}

/* ── BFX: NEW BENEFITS SECTION ─── */
.bfx-section {
    padding-block: 6rem;
    background: var(--color-bg-light, #f5f7fb);
}

.bfx-content {
    max-width: 620px;
}

.bfx-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 28px;
}
.bfx-title .bfx-highlight {
    color: var(--color-gold);
}

.bfx-desc p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-16, 1rem);
    line-height: 2.2;
    color: var(--color-text-muted, #666);
    margin-bottom: 16px;
}

.bfx-timeline {
    position: relative;
}

.bfx-item {
    position: relative;
    margin-bottom: 56px;
}
.bfx-item:last-child {
    margin-bottom: 0;
}

.bfx-dot-col {
    position: relative;
    width: 48px;
    display: flex;
    justify-content: center;
}
.bfx-item .bfx-dot-col::after {
    content: "";
    position: absolute;
    top: 32px;
    bottom: -56px;
    left: 50%;
    border-left: 2px dotted var(--color-navy, #1a1a6b);
}

.bfx-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1742B4;
    /* box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25), inset 0 -2px 4px rgba(0, 0, 0, 0.3); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-light);
    z-index: 2;
    flex-shrink: 0;
}
.bfx-item-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.bfx-item-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-16, 1rem);
    line-height: 1.7;
    color: var(--color-text-muted, #666);
    margin-bottom: 20px;
}

.bfx-btn .bfx-arrow {
    flex-shrink: 0;
    width: 32px;
    height: auto;
}
.bfx-btn .bfx-arrow path {
    stroke: #1a1a4b;
}

/* ------------ Video Section ------------------- */
.vdx-section {
    padding-block: 6rem;
    background: var(--color-white, #fff);
}

.vdx-wrapper {
    width: 100%;
}

.vdx-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vdx-thumbnail {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
}

.vdx-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vdx-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0,0,0,.35), inset 0 1px 1px rgba(255,255,255,.35);
    transition: all .35s ease;
}

.vdx-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255,255,255,.18);
    box-shadow:
        0 15px 45px rgba(0,0,0,.45),
        inset 0 1px 2px rgba(255,255,255,.45);
}

.vdx-play-btn svg {
    margin-left: 4px;
}

.vdx-iframe-container {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vdx-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Financial Tools Section ------------- */
.financial-tools {
    padding-block-end: 6rem;
}

.ft-title {
    font-family: var(--font-display);
    font-size: var(--fs-56);
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 25px;
}

.ft-title span {
    display: block;
    color: #F5A623;
}

.ft-subtitle {
    color: #666;
    font-size: var(--fs-18);
    margin: auto;
}

.tool-card {
    background: #F6FCFD;
    border: 1px solid #DCE8EB;
    border-radius: 22px;
    padding: 30px;
    transition: .35s;
    height: 100%;
}

.tool-card.active,
.tool-card:hover {
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transform: translateY(-5px);
}

.tool-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #EDF5FF;
    border: 1px solid #D8E3F2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.tool-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: .3s;
}

.tool-card:hover .tool-icon img {
    transform: scale(1.08);
}

.tool-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
}

.tool-card p {
    color: #666;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #111;
    border: 1px solid #CFCFCF;
    border-radius: 40px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.explore-btn span {
    transition: .3s;
}

.explore-btn:hover {
    background: var(--gradient-gold);
    color: #000000;
}

.explore-btn:hover span {
    transform: translateX(4px);
}

/* ── 9. ABOUT / MEET YOUR PRESIDENT SECTION ──────────────── */
.about-section {
    background: var(--color-white);
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

/* Image + caption overlay */
.about-img {
    position: relative;
    flex: 0 0 auto;
    width: calc(38% - 2rem);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img img {
    /* aspect-ratio: 3 / 4; */
    object-fit: cover;
    width: 100%;
    display: block;
}
.about-img-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(121, 121, 121, 0.36);
    text-align: center;
    backdrop-filter: blur(4px);
    padding: 16px 20px;
    border-radius: var(--radius-sm, 8px);
}
.about-img-name {
    font-family: var(--font-display);
    font-size: var(--fs-28, 1.75rem);
    color: var(--color-white);
    margin: 0 0 2px;
    line-height: 1.2;
}
.about-img-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--fs-14, 0.875rem);
    letter-spacing: 0.5px;
    color: var(--color-gold);
    margin: 0;
}

/* Right content column */
.about-content {
    flex: 0 0 auto;
    width: calc(62% - 2rem);
}
.bfx-item-content {
    flex: 1 1 0;
}
.section-label {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: var(--fs-20);
    color: var(--color-navy-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--sp-sm);
    display: inline-flex;
    align-items: center;
}
.section-label-bar {
    width: 32px;
    height: 2px;
    background: var(--color-navy-mid);
    display: inline-block;
    margin-right: 8px;
}

.about-body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-16, 1rem);
    line-height: 1.75;
    color: #555555;
    margin-bottom: 16px;
}
.about-body p:last-child {
    margin-bottom: 32px;
}

/* Pull-quote block */
.about-pullquote {
    border-left: 3px solid var(--color-gold);
    padding-left: 24px;
    margin-top: 8px;
}

.about-quote-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-24, 1.5rem);
    line-height: 1.4;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.about-quote-attribution {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-18, 1.125rem);
    color: var(--color-gold);
    margin: 0;
}
.attribution-dash {
    margin-right: 8px;
}

/* ── 10. LEADERSHIP TIMELINE ────────────────────────────── */
.timeline-section {
	padding-block: 6rem;
	background: var(--color-white);
	overflow: hidden;
}

.tl-label {
	display: block;
	font-family: var(--font-label);
	font-weight: 500;
	font-size: var(--fs-24);
	color: var(--color-navy-mid);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

.tl-heading {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: var(--fs-56);
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--color-text-dark);
	margin-bottom: 2rem;
}

.tl-heading .highlight {
	color: var(--color-gold-alt);
}

.tl-track {
	display: flex;
}

.tl-item {
    flex: 1 1 0;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0px 1px 10px 0px rgb(28 28 28 / 11%);
    padding: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}
.tl-badge {
    margin-top: -4.5rem;
    margin-bottom: 2rem;
}
.tl-badge-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-32);
    color: var(--color-gold-alt);
    line-height: 1;
    width: 5rem;
    height: 5rem;
    background: var(--color-white);
    box-shadow: 0px 1px 10px 0px rgba(89, 86, 86, 0.25);
    border-radius: 50%;
}
.tl-card-title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: var(--fs-22);
	color: var(--color-text-dark);
	line-height: 1.3;
	margin-bottom: 4px;
}

.tl-card-phase {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: 20px;
	color: var(--color-text-dark);
	line-height: 1.4;
	margin-bottom: 10px;
}

.tl-card-desc {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-18);
	color: var(--color-text-gray);
	line-height: 1.4;
	margin: 0;
}

.tl-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 5%;
	position: relative;
}

.tl-arrow {
	width: 141px;
	height: 22px;
	display: block;
	overflow: visible;
}

/* ── 11. WEBINAR SECTION ────────────────────────────────── */
.webinar-section {
	padding: 80px 0;
	background: var(--color-white);
}

.webinar-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 60px;
}

.webinar-grid .webinar-card {
	flex: 0 0 auto;
    width: calc((100% - 4rem) / 3);
}

.webinar-card {
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webinar-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.webinar-card-img {
	height: 239px;
	overflow: hidden;
	position: relative;
}

.webinar-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.webinar-card:hover .webinar-card-img img {
	transform: scale(1.05);
}

.webinar-date-badge {
	position: absolute;
	top: 0;
	right: 0;
	width: 113px;
	height: 94px;
	background: var(--color-red);
	border-radius: var(--radius-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.webinar-date-month {
	font-family: var(--font-date);
	font-weight: 600;
	font-size: var(--fs-20);
	color: var(--color-white);
	line-height: 1.2;
}

.webinar-date-duration {
	font-family: var(--font-date);
	font-weight: 600;
	font-size: var(--fs-16);
	color: rgba(255, 255, 255, 0.92);
	margin-top: 4px;
}

.webinar-play-icon {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 49px !important;
	height: 49px !important;
	z-index: 3;
}

.webinar-card-body {
	padding: 16px;
}

.webinar-card-title {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: var(--fs-24);
	color: var(--color-text-dark);
	margin-bottom: 16px;
	line-height: 1.3;
}

.webinar-popup-btn {
	color: var(--color-navy-mid);
	font-size: 20px;
}

.webinar-popup-btn:hover {
	color: var(--color-gold-alt);
}

.webinar-modal-inner {
    padding: 24px 10px 10px;
}

.webinar-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.webinar-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 14px;
}

.webinar-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.webinar-meta-item img {
    flex-shrink: 0;
}

.webinar-meta-item a {
    color: #333;
    text-decoration: underline;
}

.webinar-meta-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #bbb;
    flex-shrink: 0;
}

.webinar-modal-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    margin-bottom: 18px;
}

.webinar-modal-learn-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.webinar-modal-list {
    list-style: none;
    padding: 0;
}

.webinar-modal-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    padding: 6px 0;
}

.webinar-modal-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #111;
    flex-shrink: 0;
}

.webinar-modal-img-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
}

.webinar-modal-banner {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
}

.webinar-modal-zoom-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ── 12. PREVIOUS WEBINARS ──────────────────────────────── */
.prev-webinar-section {
	padding: 80px 0 180px;
	background: var(--color-white);
}
.pwv-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.pwv-header .section-title {
    margin-bottom: 0;
}

.pwv-nav-wrap {
    display: flex;
	justify-content: flex-end;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.pwv-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-navy-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.pwv-nav-btn svg {
    width: 44px;
    height: 44px;
    display: block;
}

.pwv-nav-btn:hover {
    color: var(--color-gold-alt);
    transform: scale(1.08);
}

.pwv-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.pwv-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 15px;
}

.pwv-swiper .swiper-wrapper {
    align-items: stretch;
}

.pwv-swiper .swiper-slide {
    height: auto;
}

.prev-webinar-section .prev-webinar-grid {
    display: none;
}

.prev-webinar-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    position: relative;
    cursor: pointer;
    background: #0b0d14;
    transition:
        height     0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s  ease,
        opacity    0.35s ease,
        transform  0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: height, opacity, transform;
}

.prev-webinar-card-img {
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}

.prev-webinar-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev-webinar-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
}

.pwv-swiper .swiper-slide.is-dimmed .prev-webinar-card {
    opacity: 0.22;
    transform: scale(0.965);
    pointer-events: none;
}

.prev-webinar-card.is-active {
    height: 360px;
    box-shadow:
        0 0 0 2px var(--color-gold-alt),
        0 28px 64px rgba(0, 0, 0, 0.55);
    z-index: 10;
}

.prev-webinar-card.is-active .prev-webinar-card-img {
    opacity: 0;
    pointer-events: none;
}

.prev-webinar-card.is-active .prev-webinar-body {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

.prev-webinar-card.is-active .pwv-play-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.pwv-play-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 49px;
    height: 49px;
    z-index: 4;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pwv-play-btn:hover { transform: scale(1.12); }

.pwv-play-btn img {
    width: 100%;
    height: 100%;
    display: block;
}

.prev-webinar-body {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.prev-webinar-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-20);
    color: var(--color-white);
    line-height: 1.3;
    max-width: 75%;
}

.prev-webinar-btn {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: var(--color-navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.prev-webinar-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--color-white);
}

.pwv-player {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease 0.18s;
    background: #000;
}

.prev-webinar-card.is-active .pwv-player {
    opacity: 1;
    pointer-events: all;
}

.pwv-iframe-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.pwv-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pwv-player-bar {
    display: flex;
    align-items: center;
	justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    background: var(--color-navy);
    flex-shrink: 0;
}

.pwv-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold-alt);
    flex-shrink: 0;
    animation: pwv-pulse 1.4s ease-in-out infinite;
}

@keyframes pwv-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.28; }
}

.pwv-now-playing {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,.78);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pwv-close-btn {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.pwv-close-btn:hover { background: rgba(255,255,255,.22); }

.pwv-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.35s ease 0.2s;
    pointer-events: none;
}

.prev-webinar-card.is-active .pwv-corner { opacity: 1; }

.pwv-corner--tl { top:8px;    left:8px;   border-top:2px solid var(--color-gold-alt); border-left:2px solid var(--color-gold-alt); }
.pwv-corner--tr { top:8px;    right:8px;  border-top:2px solid var(--color-gold-alt); border-right:2px solid var(--color-gold-alt); }
.pwv-corner--bl { bottom:8px; left:8px;   border-bottom:2px solid var(--color-gold-alt); border-left:2px solid var(--color-gold-alt); }
.pwv-corner--br { bottom:8px; right:8px;  border-bottom:2px solid var(--color-gold-alt); border-right:2px solid var(--color-gold-alt); }

.pwv-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
}

.pwv-scan.is-sweeping::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(243,178,32,.55);
    animation: pwv-scan-sweep 0.65s ease forwards;
}

@keyframes pwv-scan-sweep {
    from { top: -3px; opacity: 1; }
    to   { top: 105%; opacity: 0; }
}

/* ── 13. EVENTS SECTION ─────────────────────────────────── */
.events-section {
	padding: 80px 0;
	background: var(--color-white);
}

.events-grid {
	display: flex;
	gap: 75px;
	align-items: start;
	margin-top: 60px;
}

.events-main-image img {
	border-radius: 25px;
}

.events-sidebar {
	background: var(--color-bg-gray);
	border-radius: var(--radius-lg);
	padding: 30px;
	min-height: 1050px;
}

.events-sidebar-title {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: var(--fs-32);
	color: var(--color-text-dark);
	margin-bottom: 15px;
}

.event-item {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px dashed #000000;
}

.event-item:last-child {
	border-bottom: none;
}

.event-item-thumb {
	width: 138px;
	height: 130px;
	border-radius: var(--radius-md);
	overflow: hidden;
	flex-shrink: 0;
	background: var(--color-bg-light);
}

.event-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-item-info {
	flex: 1;
}

.event-item-date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	color: rgba(100, 100, 100, 0.92);
	margin-bottom: 8px;
}

.event-item-title {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: var(--fs-24);
	color: var(--color-text-dark);
	margin-bottom: 8px;
	line-height: 1.3;
}

.event-item-desc {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-16);
	color: var(--color-text-dark);
	line-height: 1.6;
	max-width: 320px;
}

.events-bottom {
	margin-top: 48px;
}


.events-workshop {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.events-workshop-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--color-navy-mid);
	font-family: var(--font-body);
	font-size: var(--fs-22);
	color: rgba(100, 100, 100, 0.92);
	box-shadow: var(--shadow-md);
	white-space: nowrap;
}

.events-desc {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-18);
	color: var(--color-text-gray);
	line-height: 1.4;
	margin-block-end: 1.5rem;
}

/* ── 14. CTA / BOOK APPOINTMENT ─────────────────────────── */
.cta-section {
	padding: 80px 0;
	background: var(--color-white);
}

.cta-inner {
	position: relative;
	background: linear-gradient(90deg, #f6f6f6, #f5f8ff 73.56%);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-sm);
	padding: 60px;
	min-height: 525px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 60%;
}
.cta-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 4.4vw, 4.4rem);
    text-transform: uppercase;
    line-height: 1.25;
    color: var(--color-text-dark);
}

.cta-title .highlight {
	color: var(--color-gold);
}

.cta-desc {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-20);
	color: var(--color-text-dark);
	line-height: 1.75;
}

.cta-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}


/* ── 15. FAQ SECTION ────────────────────────────────────── */
.faq-section {
	padding-block: 6rem;
	background: var(--color-white);
}
.faq-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--fs-56);
    text-transform: uppercase;
    text-align: center;
    color: var(--color-slate);
    margin-bottom: 2rem;
}
.faq-title .highlight {
	color: var(--color-gold-alt);
}

.faq-accordion {
	max-width: 1430px;
	margin: 0 auto;
}

.faq-accordion .accordion-item {
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0;
	background: transparent;
}

.faq-accordion .accordion-button {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-28);
	color: var(--color-slate);
	background: transparent;
	padding: 28px 48px 28px 0;
	box-shadow: none;
	border-radius: 0;
	position: relative;
	transition: color 0.2s ease;
}

.faq-accordion .accordion-button::after {
	display: none;
}

.faq-accordion .accordion-button .faq-icon {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 27px;
	height: 27px;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-accordion .accordion-button .faq-icon::before,
.faq-accordion .accordion-button .faq-icon::after {
	content: '';
	position: absolute;
	background: var(--color-gold-alt);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-accordion .accordion-button .faq-icon::before {
	width: 4px;
	height: 20px;
}

.faq-accordion .accordion-button .faq-icon::after {
	width: 20px;
	height: 4px;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon::before {
	opacity: 0;
	transform: rotate(90deg);
}

.faq-accordion .accordion-body {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--fs-20);
	color: var(--color-text-muted);
	padding: 0 0 28px;
	line-height: 1.75;
	max-width: 1380px;
}

/* ── 16. FOOTER ─────────────────────────────────────────── */
.footer {
	background: #0e2b71;
	padding: 80px 0 10px;
	position: relative;
}
.footer-name {
    font-family: "Cantata One", serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 4.5rem);
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0;
}
.footer-name .footer-name-gold {
	color: var(--color-gold);
}

.footer-nav {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 40px;
}

.footer-nav a {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-20);
	color: var(--color-white);
	transition: color 0.2s ease;
}

.footer-nav a:hover {
	color: var(--color-gold);
}

.footer-social {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 24px;
}

.footer-social-label {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-16);
	color: var(--color-white);
}

.footer-social-icons {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-social-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	color: var(--color-white);
}

.footer-social-icon:hover {
	background: var(--color-gold);
	color: var(--color-navy);
}

.footer-social-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.footer-divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin: 35px 0 28px;
}

.footer-bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copy {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-16);
	color: var(--color-white);
}

.footer-collab {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-16);
	color: var(--color-white);
}

.footer-collab a {
	color: var(--color-gold);
	font-weight: 500;
}

.footer-legal {
	display: flex;
	gap: 40px;
	align-items: center;
}

.footer-legal a {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: var(--fs-16);
	color: #cdcdcd;
	text-transform: capitalize;
	transition: color 0.2s ease;
}

.footer-legal a:hover {
	color: var(--color-gold);
}

/* ── 17. SECTION SPACING ────────────────────────────────── */
.section-gap {
	padding: 80px 0;
}

/* ── 18. SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-up-delay-1 {
	transition-delay: 0.1s;
}

.fade-up-delay-2 {
	transition-delay: 0.2s;
}

.fade-up-delay-3 {
	transition-delay: 0.3s;
}

.fade-up-delay-4 {
	transition-delay: 0.4s;
}

.movement-section {
    padding-block-start: 4rem;
    padding-block-end: 6rem;
    background: #f5f5f5;
    position: relative;
}
.movement-header {
    margin-bottom: 2rem;
}
.event_tab {
    margin-bottom: 2rem;
    gap: 1rem;
}
.event_tab_item {
    padding: .6rem 1.5rem;
    border: 1px solid #FFB000;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 500;
    color: #555555;
}
.event_tab_item:hover {
    background-color: #ededed;
}
.event_tab_item.active {
    background-color: #1742B4;
    border-color: #1742B4;
    color: #fff;
}

.movement-card {
    background: #fff;
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    overflow: hidden;
    height: 100%;
}
.movement-left {
    flex: 0 0 auto;
    width: calc(58% - 2rem);
    display: flex;
    flex-direction: column;
}
.event_card_btns {
    margin-top: auto;
}
.movement-right {
    flex: 0 0 auto;
    width: calc(42% - 2rem);
}

.movement-right img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.events-workshop-title {
    font-family: var(--font-display);
    font-size: var(--fs-44);
    line-height: 1.12;
    font-weight: 500;
    color: #111;
    margin-bottom: 1.25rem;
}

.events-workshop-title span {
    color: #FDB81D;
}

.event-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}
.event-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    width: calc(50% - 5px);
}
.event-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #EEF3FF;
    border: 1px solid #D7E2F5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.event-text {
    flex: 1 1 0;
}
.event-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.event-info-text {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
}
.event-btn svg {
    flex-shrink: 0;
    width: 32px;
    height: auto;
}

.arrow-icon {
    width: 34px;
    height: 14px;
}

.arrow-icon path {
    stroke: #111;
}

.event-nav-wrap {
    position: absolute;
    top: 50%;
    left: -1rem;
    right: -1rem;
    display: flex;
    justify-content: space-between;
    z-index: 20;
    pointer-events: none;
    transform: translateY(-50%);
}

.event-next-btn,
.event-prev-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    transition: .3s;
    pointer-events: all;
}

.event-next-btn svg,
.event-prev-btn svg {
    width: 28px;
    height: 28px;
}

.event-next-btn:hover,
.event-prev-btn:hover {
    background: #FDB81D;
    color: #fff;
    transform: scale(1.08);
}

.swiper {
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.custom-modal .modal-content {
    border-radius: 24px;
    padding: 15px;
    background: #f5f5f5;
    border: none;
}

.custom-close {
    position: absolute;
    top: 0;
    right: 0;
}

.form-wrapper label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: -15px;
    display: block;
}

.form-wrapper label span {
    color: red;
}

.form-control {
    height: 55px;
    border-radius: 15px;
    border: 1px solid #dcdcdc;
    padding: 0 16px;
    font-size: 16px;
    background: #fff;
}

select.form-control {
    appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 16px center;
    background-size: 18px;
}

.btn-submit {
    background: linear-gradient(90deg, var(--color-orange), var(--color-gold-alt));
    border: none;
    color: #fff;
    padding: 10px 50px;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

.form-note {
    font-size: 14px;
    color: #777;
	margin: 0;
}

/* CRM Form */
#crm-form-container .form-group {
	padding: 10px 0;
}

#crm-form-container #form_submit {
	background: linear-gradient(90deg, var(--color-orange), var(--color-gold-alt));
    border: none;
    color: #fff;
    padding: 10px 50px;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.3s;
	margin-top: 10px;
}

/* <!-- PWR APP PROMOTION SECTION --> */
.pwr-app-section{
    background:#FFFFFF;
    overflow:hidden;
    padding-block: 6rem;
}

.circle-dot{
    position:absolute;
    right:60px;
    width:20px;
    height:20px;
    background:#222;
    border-radius:50%;
}
.app_download_cont {
    display: flex;
    align-items: flex-end;
}
.feature_items, .qr-box {
    flex: 1 1 auto;
}
.qr-box > img {
    max-width: 200px;
}
.feature-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:30px;
}

.feature-item .icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#1742B4;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.feature-item .icon img{
    width:28px;
}

.feature-item h4{
    margin:0;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight:600;
    color:#111;
}

.feature-item p{
    margin:4px 0 0;
    font-size:18px;
    color:#888;
}

.download-link{
    display:inline-block;
    color:#1742B4;
    text-decoration:none;
}

.download-area{
    display:flex;
    align-items:flex-end;
    gap:20px;
    flex-wrap:wrap;
}

.download-area>a img{
    height:50px;
}
.benefit-box{
    position:relative;
    overflow:hidden;
    border-radius:50px;
    background:linear-gradient(90deg,#e8f5ef 0%,#eef5fa 55%,#edf2f8 100%);
    padding:90px 30px;
    text-align:center;
}

.benefit-box::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    left:-260px;
    bottom:-300px;
    background:rgba(210,228,230,.55);
    border-radius:50%;
}

.benefit-box::after{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-120px;
    top:-260px;
    background:rgba(214,230,233,.55);
    border-radius:50%;
}

.benefit-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
}

.benefit-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.lc-btn svg{
    flex-shrink: 0;
    width: 32px;
    height: auto;
}

/* ============================================================
    Responsive
============================================================ */

/* 1536px LARGE LAPTOP  */
@media (max-width: 1480px) {
    .movement-card {
        border-radius: 1.5rem;
        padding: 1.5rem;
        gap: 2rem;
    }
    .movement-left {
        width: calc(60% - 1rem);
    }
    .movement-right {
        width: calc(40% - 1rem);
    }
    .event-text {
        font-size: .8rem;
    }
    .event-icon img {
        width: 20px;
        height: 20px;
    }
    .event-icon {
        width: 40px;
        height: 40px;
    }
    .events-main-image {
        height: 680px;
    }
    .about-quote {
        font-size: 85px;
        margin-top: 25px;
    }
    .events-sidebar {
        min-height: 100%;
    }

    .benefits-pane-grid {
        gap: 18px;
    }

    .movement-header {
        gap: 60px;
    }
    .movement-img img {
        margin-left: 0;
    }

    .movement-content {
        margin-top: 0;
    }

    .events-workshop {
        margin-bottom: 30px;
    }
}

@media (max-width: 1280px) {
    .tl-item {
        padding: 1.2rem;
    }
    .tl-badge {
        margin-top: -3.5rem;
    }
    .fight-section,
    .timeline-section,
    .faq-section,
    .pwr-app-section,
    .movement-section,
    .vdx-section,
    .bfx-section {
        padding-block: 4rem;
    }
    .btn-hero-pill {
        gap: 5px;
        padding: 10px 20px;
    }
    .hero-logo-img {
        width: 100px;
        height: 100px;
    }
    .faq-title {
        margin-bottom: 1rem;
    }
    .cta-image {
        max-width: 350px;
    }

    .hero-tagline {
        font-size: 28px;
    }
    

    .events-grid {
        gap: 40px;
    }

    .cta-inner {
        padding: 40px;
        min-height: auto;
    }
    .fight-title {
        font-size: 18px;
    }

    .fight-desc {
        font-size: 17px;
        max-width: 280px;
    }

    .fight-icon {
        width: 70px;
        height: 70px;
    }

    .prev-webinar-grid {
        gap: 20px;
    }
    
    .prev-webinar-grid .webinar-card {
        flex: 1 1 calc(25% - 15px);
    }

    .benefits-pane-title {
        margin-bottom: 10px;
    }
    
    .benefits-pane-desc {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .benefits-list-item span {
        font-size: 16px;
    }

    .benefits-pane-grid {
        gap: 25px;
    }
    
    .benefits-pane-grid > * {
        flex: 1;
    }
    .benefits-nav.nav-pills {
        margin-bottom: 25px !important;
    }

    .benefits-list-item {
        margin-bottom: 15px;
    }

    .about-quote {
        font-size: 60px;
        margin-top: 15px;
    }

    .about-quote-end {
        font-size: 60px;
    }

    .tl-card-title {
        font-size: 19px;
    }

    .tl-card-phase {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .tl-card-desc {
        font-size: 17px;
        line-height: 1.5;
    }

    .webinar-card-body {
        padding: 10px;
    }

    .webinar-card-title {
        font-size: 20px;
    }

    .events-bottom {
        margin-top: 25px !important;
    }

    .events-workshop-tag {
        font-size: 18px;
        padding: 10px 15px;
    }

    .events-sidebar-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .event-item-title {
        font-size: 20px;
    }

    .prev-webinar-title {
        max-width: 100%;
    }

    .footer-nav {
        gap: 1rem;
    }

    .footer {
        padding: 55px 0 10px;
    }
    .movement-header {
        gap: 40px;
    }
    .events-workshop-title {
        margin-bottom: 10px;
    }

    .events-workshop {
        margin-bottom: 18px;
    }

    .events-workshop-tag {
        padding: 6px 14px;
    }

    .webinar-grid {
        gap: 15px;
    }
    .btn-outline-navy {
        padding: .6rem 1rem;
        font-size: 14px;
    }

    .webinar-popup-btn {
        font-size: 18px;
    }
    .financial-tools {
        padding-block-end: 4rem;
    }
}

@media (max-width: 1024px) {
    .navbar-main .navbar-nav {
        gap: 0rem;
    } 
    .bfx-item .bfx-dot-col::after {
        display: none;
    }
    .phone-wrapper img {
        max-width: 380px;
        display: inline-block;
    }
    .pwr-app-section .section-title,
    .pwr-app-section .section-subtitle {
        text-align: center;
        max-width: unset;
    }
    .feature-item {
        gap: 10px;
        margin-bottom: 15px;
    }
    .feature-item .icon {
        width: 50px;
        height: 50px;
    }
    .pwr-app-section .row {
        flex-direction: column;
    }
    .pwr-app-section .row .col-md-6 {
        width: 100%;
    }
    .btn-primary {
        gap: 5px;
        padding: .5rem 1.2rem;
    }
    .movement-right img {
        aspect-ratio: 3 / 5;
    }
    .event-next-btn, .event-prev-btn {
        width: 42px;
        height: 42px;
    }
    .event-next-btn svg, .event-prev-btn svg {
        width: 18px;
        height: 18px;
    }
    .faq-section,
    .pwr-app-section,
    .movement-section,
    .vdx-section,
    .bfx-section {
        padding-block: 3rem;
    }
    .financial-tools {
        padding-block-end: 3rem;
    }
    .section-title {
        margin-bottom: 1rem;
    }
    .hero-tagline {
        font-size: 24px;
    }
    .cta-content {
        max-width: 100%;
    }

    .hero-actions {
        gap: 16px;
    }

    .fight-col--right .fight-item--rtl {
        flex-direction: row-reverse;
    }

    .fight-col--right .fight-text--right {
        text-align: left;
    }

    .fight-col--right .fight-item--rtl .fight-desc {
        margin-left: 0;
    }

    .fight-desc {
        max-width: 100%;
    }

    .fight-center {
        order: -1;
        width: 100%;
    }
    .fight-col {
        width: calc((100% - 24px) / 2);
    }
    .vdx-play-btn {
        width: 80px;
        height: 80px;
    }
    .benefits-pane-grid > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .benefits-pane-grid {
        flex-direction: column;
        gap: 48px;
    }

    .benefits-pane-img {
        height: 400px;
    }

    .benefits-pane-title {
        font-size: 32px;
    }
    .tl-arrow {
        width: 80px;
    }

    .tl-card-title {
        font-size: 18px;
    }

    .tl-card-phase {
        font-size: 16px;
    }

    .tl-card-desc {
        font-size: 16px;
    }

    .webinar-grid {
        gap: 24px;
    }
    .webinar-grid .webinar-card {
        width: calc((100% - 2rem) / 2);
    }

    .events-grid {
        flex-direction: column;
        gap: 500px;
    }

    .events-main-image {
        height: 420px;
    }

    .events-sidebar {
        min-height: auto;
    }

    .prev-webinar-card.is-active {
        height: 300px;
    }

    .cta-inner {
        padding: 60px 48px;
        min-height: auto;
    }
    .cta-image {
        display: none;
    }
    .prev-webinar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-bottom {
        text-align: center;
        gap: 16px;
    }

    .footer-legal {
        justify-content: center;
    }
    .movement-img img {
        margin-left: 0;
        width: 100%;
    }
    .movement-content {
        margin-top: 0;
    }
    .events-workshop {
        margin-bottom: 15px;
    }

    .events-workshop-tag {
        font-size: 15px;
        padding: 7px 10px;
    }
}

@media (max-width: 991px) {
    .navbar-main .container-fluid {
        padding-inline: 2rem;
    }
    .tl-track {
        flex-wrap: wrap;
        column-gap: 1rem;
        row-gap: 2rem;
    }
    .tl-item {
        flex: 0 0 auto;
        width: calc( (100% - 1rem) / 2);
    }
    .tl-connector {
        display: none;
    }
    .navbar-collapse {
        background: rgba(14, 43, 113, 0.98);
        border-radius: 1rem;
        padding: 1.4rem;
        backdrop-filter: blur(12px);
        position: absolute;
        right: 1rem;
        top: 5rem;
        width: 16rem;
        box-shadow: 4px 5px 30px #060d1e85;
    }

    .navbar-nav {
        gap: 0 !important;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
    .footer-name {
        text-align: center;
    }
    .footer-social {
        gap: 1rem;
    }
    .third-logo,
    .footer-social,
    .footer-nav {
        justify-content: center !important;
    }
    .footer-legal {
        width: 100%;
    }
}
@media (max-width: 820px) {
    .event_tab_item {
        padding: .4rem 1rem;
        font-size: .8rem;
    }
    .event_tab {
        margin-bottom: 2rem;
        gap: 0.4rem;
    }
    .tool-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }
    .section-label,
    .tool-card h3 {
        margin-bottom: 0;
    }
    .about-content,
    .event-info {
        width: 100%;
    }
    .about-grid,
    .event-info-grid {
        flex-direction: column;
    }
    .tl-item {
        flex: 0 0 auto;
        width: calc( ( 100% - 1rem ) / 2);
    }
     
}
@media (max-width: 768px) {
    .about-img {
        width: 300px;
    }
    .hero-content {
        height: 540px;
    }
    .navbar-main {
        padding: 12px 0;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 17px;
        max-width: 100%;
    }

    .hero-actions {
        align-items: flex-start;
        gap: 16px;
    }

    .hero-badge-text {
        font-size: 18px;
    }
    .fight-icon {
        width: 64px;
        height: 64px;
    }

    .fight-title {
        font-size: 18px;
    }

    .fight-desc {
        font-size: 16px;
        max-width: 100%;
    }

    .benefits-section {
        padding: 50px 0;
    }
    .benefits-pane-grid {
        grid-template-columns: 1fr;
    }

    .benefits-pane-img {
        height: 300px;
    }

    .benefits-pane-title {
        font-size: 28px;
    }

    .about-quote {
        font-size: 56px;
    }

    .tl-item {
        align-items: flex-start;
    }
    .tl-arrow {
        width: 80px;
    }
    .webinar-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .webinar-card-img {
        height: 200px;
    }

    .events-main-image {
        height: 300px;
    }

    .events-sidebar {
        padding: 32px 24px;
    }

    .event-item {
        gap: 12px;
    }

    .event-item-thumb {
        height: 135px;
    }

    .events-grid {
        gap: 400px;
    }
    .events-workshop-tag {
        font-size: 16px;
    }

    .pwv-header {
        margin-bottom: 32px;
    }

    .prev-webinar-card {
        height: 180px;
    }

    .prev-webinar-card.is-active {
        height: 280px;
    }

    .pwv-swiper .swiper-slide.is-dimmed .prev-webinar-card {
        opacity: 0.4;
        transform: scale(0.98);
    }

    .cta-inner {
        padding: 48px 32px;
        border-radius: var(--radius-lg);
    }
    .cta-desc {
        font-size: 17px;
    }

    .faq-accordion .accordion-button {
        font-size: 20px;
        padding: 22px 40px 22px 0;
    }
    .prev-webinar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-legal {
        gap: 12px;
    }

    .events-workshop {
        margin-bottom: 15px;
    }

    .movement-header {
        margin-bottom: 10px !important;
    }

    .events-desc {
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .movement-card {
        gap: 1rem;
        flex-direction: column-reverse;
    }
    .movement-right img {
        aspect-ratio: 5 / 3;
    }
    .webinar-grid .webinar-card,
    .fight-col,
    .tl-item,
    .movement-right,
    .movement-left {
        width: 100%;
    }
    .footer-bottom {
        text-align: center;
        gap: .4rem;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    .hero-quote {
        margin-bottom: 1rem;
    }
    .hero-location {
        margin-bottom: 1rem;
    }
    .bfx-desc p{
        line-height: 1.4;
    }
    .vdx-player {
        aspect-ratio: 16 / 9;
        border-radius: 1.5rem;
    }
    .vdx-play-btn {
        width: 60px;
        height: 60px;
    }
    .vdx-play-btn svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    .app_download_cont,
    .bfx-item {
        flex-direction: column;
        gap: 1rem;
    }
    .feature_items, .qr-box,
    .bfx-dot-col,
    .bfx-item-content {
        width: 100%;
    }
    .bfx-item-content {
        text-align: center;
    }
    .ft-title {
        margin-bottom: 1rem;
    }
    .benefit-box {
        border-radius: 20px;
        padding: 20px;
    }
    .benefits-nav.nav-pills {
     gap: 5px;
    }
    .benefits-nav-pill {
        padding: .6rem 1rem;
    }
    .about-section, .webinar-section, 
    .events-section, .cta-section, .faq-section,
    .prev-webinar-section {
        padding: 2rem 0;
    }
    .hero-tagline {
        font-size: 19px;
    }

    .hero-badge-text {
        font-size: 16px;
    }
    .fight-icon-circle {
        width: 80%;
    }

    .fight-item {
        gap: 4px;
    }
    .cta-desc {
        margin-bottom: 15px;
    }

    .cta-inner {
        padding: 40px 24px;
    }

    .faq-accordion .accordion-button {
        font-size: 18px;
        padding: 18px 36px 18px 0;
    }
    .about-grid {
        gap: 32px;
    }

    .events-sidebar {
        padding: 24px 20px;
    }

    .footer-nav {
        gap: 22px;
        margin-bottom: 20px;
        line-height: 0.5;
    }

    .footer-legal {
        gap: 10px;
        order: -1;
        margin-bottom: 10px;
    }

    .footer-bottom {
        justify-content: center;
        gap: 0px !important;
    }

    .prev-webinar-card.is-active {
        height: 240px;
    }

    .pwv-now-playing {
        display: none;
    }

    .pwv-nav-btn {
        width: 38px;
        height: 38px;
    }

    .pwv-nav-btn svg {
        width: 38px;
        height: 38px;
    }
    .webinar-grid {
        margin-top: 30px;
    }

    .title-event-btn {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .footer-logo-social {
        gap: 20px;
    }

    .third-logo {
        gap: 0 !important
    }
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    .events-workshop {
        margin-bottom: 15px;
        gap: 15px ;
    }
    .movement-header {
        flex-direction: column;
        gap: 0;
        align-items: flex-start !important;
    }

    .event-nav-wrap {
        margin-top: 15px;
    }

    .footer-copy {
        font-size: 15px;
        order: 1;
    }
}

@media (max-width: 414px) {
    .download-area>a img {
        height: 40px;
    }
    .download-area {
        justify-content: center;
    }
    .qr-box img {
        display: inline-block;
    }
    .qr-box {
        text-align: center;
    }
    .download-link {
        display: block;
        text-align: center;
    }
}
@media (max-width: 320px) {
    .hero-actions {
        gap: 12px;
    }
    .fight-item {
        gap: 14px;
    }

    .fight-icon {
        width: 56px;
        height: 56px;
    }

    /* .ticker-pill { font-size: 15px; padding: 10px 18px; } */
    .prev-webinar-grid {
        grid-template-columns: 1fr;
    }

    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 32px 20px;
        border-radius: var(--radius-md);
    }

    .events-sidebar {
        padding: 20px 16px;
    }

    .event-item {
        flex-direction: column;
    }

    .footer-divider {
        margin: 20px 0 28px;
    }

}

@media print {
    .navbar-main,
    .fight-wave {
        display: none;
    }

    body {
        font-size: 12pt;
    }
}

@media (max-width: 992px) {
    .movement-desc {
        max-width: 100%;
    }
}
