@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

:root {
	--bg: #ffffff;
	--text: #1f2a37;
	--muted: #6b7280;
	--line: #e5e7eb;
	--primary: #0b5ea8;
	/* navy-ish */
	--secondary: #0f766e;
	/* teal */
	--accent: #2ea043;
	/* green underline */
	--btn: #0b5ea8;
	--white: #fff;
	--black: #000;
	--red: #ef4444;
	--gold: #e6a817;
	--card-bg: #f0f4f8;
	--light-bg: #f8f9fb;
	--item-hover: #e8ecf0;
	--primary-hover: #003d66;
	--border: #e0e4ea;
	--input-bg: #f3f4f6;
	--pillBg: #f3f4f6;
	--pillStroke: #e5e7eb;
	--highlight: #dff2d8;
	--shadow: 0 8px 24px rgba(17, 24, 39, .08);
	--main-font-family: "Lato", sans-serif;
	--body-font-family: "Poppins", sans-serif;
}

body {
	font-family: var(--main-font-family) !important;
	line-height: 1.6;
}

p {
	font-family: var(--body-font-family) !important;
}

a {
	text-decoration: none !important;
}

section {
	padding: 50px 0px;
}

h1 {
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	/* 72px = 4.5rem */
	;
}

h2 {
	font-size: clamp(2rem, 6vw, 3rem);
	/* 48px = 3rem */
	;
}

h3 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	/* 36px = 2.25rem */
	;
}

h4 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	/* 30px = 1.875rem */
	;
}

h5 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	/* 24px = 1.5rem */
	;
}

h6 {
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	/* 20px = 1.25rem */
	;
}


/* COMMON TITLE */
.title {
	font-size: clamp(2rem, 3vw, 2.625rem);
	font-weight: 700;
	color: var(--black);
	text-align: center;
	margin-bottom: 15px;
}

/* COMMON TITLE UNDERLINE */
.title-underline {
	width: 80px;
	height: 4px;
	background: var(--secondary);
	margin: 0 auto 60px;
}

.oj-16 {
	font-size: 14px !important;
}

.oj-btn-rounded {
	border-radius: 100px !important;
	padding: 8px 30px !important;
}


/* PRIMARY BTN */
.primary-btn {
	background: var(--primary);
	color: var(--white);
	border: none;
	padding: 12px 35px;
	border-radius: 50px;
	font-size: clamp(0.75rem, 1.5vw, 1rem);
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 0.5px;
	transition: background 0.3s ease;
}

.primary-btn:hover {
	background: var(--primary-hover);
}


/* BORDER BTN */
.border-btn {
	display: block;
	margin: 0 auto;
	padding: 15px 50px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary);
	background-color: transparent;
	border: 2px solid var(--primary);
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.border-btn:hover {
	background-color: var(--primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 74, 124, 0.2);
}


/* HEADER BTN */
.oj-btn-primary {
	background-color: var(--primary) !important;
	color: var(--white) !important;
	text-transform: uppercase;
	letter-spacing: .8px;
	cursor: pointer;
}

.oj-btn-success {
	background-color: var(--secondary) !important;
	color: var(--white) !important;
	text-transform: uppercase;
	letter-spacing: .8px;
	cursor: pointer;
}


/* HEADER */
#mainHeader {
	border-bottom: 1px solid #eee;
	width: 100%;
	padding: 20px 40px;
	position: relative;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
	z-index: 1000;
}

/* When Scrolled */
#mainHeader.sticky {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	padding: 15px 10px;
}

.nav-item {
	padding-right: 10px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: .2px;
	color: var(--black);
}

.logoMark {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--primary), #143a66);
	display: grid;
	place-items: center;
	color: var(--white);
	font-weight: 800;
	box-shadow: var(--shadow);
	flex: 0 0 auto;
}

.logo small {
	display: block;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0;
	margin-top: 2px;
	font-size: 12px;
}


/* HERO SEARCH SECTION */
.hero {
	margin: 0 auto;
	text-align: center;
}

.hero h1 {
	font-size: clamp(1.875rem, 4vw, 3.25rem);
	font-family: var(--main-font-family);
	font-weight: 700;
}

.hero-content {
	width: 100%;
	margin: 0px auto 60px;
}

.search-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	margin: 0 auto;
}

.search-box {
	text-align: left;
}

.search-label {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	margin-bottom: 20px;
	color: #333;
}

.search-label .highlight {
	font-weight: 600;
}

.talent {
	color: var(--primary);
}

.work {
	color: var(--secondary);
}

.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--white);
	border-radius: 50px;
	padding: 8px 8px 8px 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e8e8e8;
}

.search-icon {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	opacity: 0.4;
}

.search-box input[type="text"] {
	flex: 1;
	border: none;
	outline: none;
	font-size: 1.1rem;
	color: #333;
	background: transparent;
}

.search-box input[type="text"]::placeholder {
	color: #bbb;
}


/* TALENT SEARCH SECTION */
.talent-search {
	margin: 0 auto;
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 40px;
	margin-bottom: 50px;
}

.skill-link {
	color: var(--primary);
	text-decoration: none;
	font-size: clamp(1rem, 2vw, 1.125rem);
	transition: all 0.3s ease;
	padding: 5px 0;
	display: inline-block;
}

.skill-link:hover {
	color: var(--primary-hover);
	text-decoration: underline;
	transform: translateX(5px);
}


/* EMPLOYERS SAY SECTION */
.employers-say {
	margin: 0 auto;
}

.employers-say-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 50px;
}

.employers-say-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.employers-say-box {
	background: var(--pillBg);
	padding: 15px 25px;
	border-radius: 8px;
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	color: #111827;
	font-weight: 500;
	display: inline-block;
	transition: all 0.3s ease;
}

.employers-say-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.employers-say .highlight {
	background: linear-gradient(to bottom, transparent 50%, #a5d6a7 50%);
	font-weight: 700;
}


/* PAGES MENU SECTION */
.pages-menu-section {
	margin: 0 auto;
}

.pages-menu-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pages-menu-item {
	width: 100%;
	max-width: 200px;
	text-align: center;
}

.pages-menu-link {
	display: block;
	font-size: clamp(1rem, 2vw, 1.125rem);
	font-weight: 600;
	color: var(--primary);
	text-decoration: underline !important;
	padding: 8px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.pages-menu-link:hover {
	transform: translateY(-3px);
	color: var(--primary-hover);
}


/* THE EASIEST JOB BOARD SECTION */
.the-easiest-job-board {
	margin: 0 auto;
	background-color: var(--pillBg);
	text-align: center;
}

.job-board-heading {
	font-size: clamp(1.875rem, 4vw, 3.25rem);
	font-family: var(--main-font-family);
	font-weight: 700;
}

.job-board-subheading {
	margin-bottom: 40px;
}

.find-outsourced-staff-video-wrap {
	position: relative;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 6px 32px rgba(0, 0, 0, 0.22);
	background: #000;
	aspect-ratio: 16 / 9;
}

.find-outsourced-staff-video-wrap:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
	transition: box-shadow 0.3s ease;
}

.find-outsourced-staff-video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}


/* STEPS SECTION */
.how-it-works img {
	width: 100%;
	height: 100%;
}

.step-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--primary);
	text-transform: uppercase;
	margin-bottom: 0.3rem;
}

.step-heading {
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 800;
	color: var(--text);
	margin-bottom: 1.1rem;
}


/* ── Illustration boxes ── */
.illustration-wrap {
	background: var(--light-bg);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	padding: 1.5rem;
}

.illustration-wrap svg {
	max-width: 100%;
	max-height: 220px;
}

/* ── Sub-links ── */
.sub-link {
	color: var(--primary);
	font-weight: 700;
	text-decoration: none;
	margin-bottom: 5px;
}

.sub-link:hover {
	text-decoration: underline;
}

.sub-desc {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 0.6rem;
}

/* ── Search bar ── */
.search-row {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.search-input {
	flex: 1 !important;
	border: 1.5px solid #d0d7e2 !important;
	border-radius: 8px;
	padding: 0.45rem 0.9rem;
	font-size: 0.88rem !important;
	outline: none !important;
}

.search-input:focus {
	border-color: var(--primary);
}

.btn-search {
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 0.45rem 1.2rem;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	letter-spacing: 0.05em;
}

.btn-post {
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 0.5rem 1.4rem;
	font-weight: 700;
	font-size: 0.82rem;
	cursor: pointer;
	letter-spacing: 0.06em;
	margin-bottom: 1rem;
}

/* ── Tip box ── */
.tip-box {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1.5px solid var(--gold);
	border-radius: 8px;
	padding: 0.45rem 1rem;
	font-size: 0.85rem;
	color: #555;
	background: #fffbf0;
}

.tip-box .bulb {
	color: var(--gold);
	font-size: 1.1rem;
}

/* ── Checklist ── */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.2rem;
}

.check-list li {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	margin-bottom: 0.65rem;
	font-size: clamp(0.75rem, 2vw, 0.875rem);
	line-height: 1.5;
}

.check-list li .chk {
	color: var(--accent);
	font-size: 1.15rem;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ── Step rows ── */
.step-row {
	padding: 3rem 0;
}

.step-row+.step-row {
	border-top: 1px solid #eee;
}

.info-card {
	background: var(--card-bg);
	border-radius: 10px;
	padding: 2rem 1.8rem 1.8rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	border: none;
}

.info-card .icon-wrap {
	font-size: 1.6rem;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 0.2rem;
}

.info-card p {
	font-size: 1rem;
	font-weight: 700;
	color: #222;
	line-height: 1.45;
	margin: 0;
}

.info-card .card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--link-color);
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	margin-top: auto;
}

.info-card .card-link:hover {
	color: #1a6fad;
}

.info-card .card-link .fa-arrow-right {
	font-size: 1rem;
	transition: transform 0.2s;
}

.info-card .card-link:hover .fa-arrow-right {
	transform: translateX(4px);
}

/* SVG icons */
.icon-wrap svg {
	width: 32px;
	height: 32px;
	fill: var(--primary);
}


/* FAQ SECTION */
.faq-category {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 1rem;
}

/* Accordion group spacing */
.faq-group {
	margin-bottom: 2.8rem;
}

/* Accordion item */
.faq .accordion-item {
	border: none !important;
	border-radius: var(--border-radius) !important;
	margin-bottom: 0.45rem;
	overflow: hidden;
}

.faq .accordion-button {
	background-color: var(--card-bg) !important;
	color: var(--text) !important;
	font-size: clamp(0.875rem, 2vw, 1rem);
	font-weight: 600;
	padding: 1rem 1.2rem !important;
	border: none !important;
	border-radius: 6px !important;
	box-shadow: none !important;
	transition: background 0.2s !important;
}

.faq .accordion-button:not(.collapsed) {
	background-color: var(--item-hover);
	color: var(--primary);
	font-weight: 700;
}

.faq .accordion-button:hover {
	background-color: var(--item-hover);
}

/* Custom chevron color */
.faq .accordion-button::after {
	filter: brightness(0) saturate(100%) invert(20%) sepia(10%) saturate(500%) hue-rotate(180deg);
	opacity: 0.55;
}

.faq .accordion-button:not(.collapsed)::after {
	filter: brightness(0) saturate(100%) invert(15%) sepia(40%) saturate(600%) hue-rotate(180deg);
	opacity: 0.85;
}

.faq .accordion-body {
	background-color: var(--card-bg);
	font-size: 0.9rem;
	line-height: 1.65;
	color: #555;
	padding: 0.8rem 1.2rem 1.1rem !important;
	border-radius: 0 0 6px 6px;
	margin-top: -5px;
}

.faq .accordion-collapse {
	border-radius: 0 0 6px 6px;
}

.not-ready {
	background: var(--pillBg);
}

.not-ready p {
	font-size: 1rem;
	color: #555;
	margin-bottom: 2rem;
	text-align: center;
}

/* Tag buttons */
.tags-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	max-width: 860px;
	margin: 0 auto 2.5rem;
}

.tag-btn {
	display: inline-block;
	border: 1.5px solid #b0bec5;
	border-radius: 6px;
	padding: 0.5rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: #2e2e2e;
	background: transparent;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	cursor: pointer;
}

.tag-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: #eef3f7;
}

.not-ready-steps {
	padding: 40px 0px;
}

.not-ready-steps p {
	font-size: 1rem;
	color: #555;
	margin-bottom: 1rem;
	text-align: left;
}

.not-ready-steps .info-card {
	background: var(--white);
	border: 1px solid var(--muted);
}


/* PRICING PAGE */
/* PRICING SECTION */
.pricing-hero {
	text-align: center;
	padding: 3rem 1rem 1.5rem;
	background: var(--pillBg);
}

.pricing-hero h1 {
	font-size: 2.1rem;
	font-weight: 900;
	color: #2e2e2e;
	margin-bottom: 0.5rem;
}

.pricing-hero h1 span.count {
	color: var(--accent);
}

.pricing-hero p {
	font-size: 0.97rem;
	color: #444;
	margin-bottom: 0.3rem;
}

.pricing-hero a {
	font-weight: 700;
	text-decoration: underline !important;
}

/* ── Single card ── */
.pricing-cards,
.certificate {
	background: var(--pillBg);
	padding: 50px 0px;
}

.plan-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

/* colored top border per plan */
.plan-card.free {
	border-top: 4px solid #4caf7d;
}

.plan-card.pro {
	border-top: 4px solid #1a8fcc;
}

.plan-card.premium {
	border-top: 4px solid #e05555;
}

.plan-header {
	text-align: center;
	padding: 1.2rem 1rem 0.8rem;
}

.plan-label {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.free .plan-label {
	color: #4caf7d;
}

.pro .plan-label {
	color: #1a8fcc;
}

.premium .plan-label {
	color: #e05555;
}

.plan-sublabel {
	font-size: 0.7rem;
	color: var(--secondary);
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
	display: block;
	margin-bottom: 0.6rem;
}

.plan-price {
	font-size: 3rem;
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1;
}

.plan-price sup {
	font-size: 1.2rem;
	font-weight: 700;
	vertical-align: super;
}

.plan-price .currency-badge {
	font-size: 0.65rem;
	font-weight: 700;
	color: #888;
	vertical-align: super;
	margin-left: 2px;
}

.plan-cancel {
	font-size: 0.78rem;
	color: #888;
	margin: 0.2rem 0 0.8rem;
}

/* ── Toggle tabs ── */
.billing-toggle {
	display: flex;
	border: 1.5px solid #c5d0da;
	border-radius: 6px;
	overflow: hidden;
	margin: 0 auto 0.5rem;
	width: fit-content;
}

.billing-toggle button {
	border: none;
	background: transparent;
	padding: 0.38rem 0.9rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #555;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
	line-height: 1.3;
}

.billing-toggle button.active {
	background: var(--primary);
	color: var(--white);
	border-radius: 4px;
}

.billing-toggle button small {
	display: block;
	font-size: 0.62rem;
	font-weight: 600;
	opacity: 0.85;
}

/* ── AI Matching badge ── */
.ai-badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #eef3f7;
	border-radius: 6px;
	padding: 0.4rem 0.7rem;
	margin: 0.6rem 1rem 0;
	font-size: 0.78rem;
	font-weight: 700;
	color: #333;
}

.ai-badge .new-tag {
	background: #e05555;
	color: var(--white);
	font-size: 0.62rem;
	font-weight: 800;
	border-radius: 4px;
	padding: 0.1rem 0.4rem;
	letter-spacing: 0.05em;
}

.ai-badge .sub-text {
	font-size: 0.65rem;
	color: #888;
	font-weight: 600;
}

/* ── Feature list ── */
.feature-list {
	list-style: none;
	padding: 0.8rem 1.1rem;
	margin: 0;
	flex: 1;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.83rem;
	margin-bottom: 0.55rem;
	line-height: 1.4;
	color: #333;
}

.feature-list li .icon {
	flex-shrink: 0;
	font-size: 0.85rem;
	margin-top: 1px;
}

.icon-check {
	color: var(--accent);
}

.icon-x {
	color: var(--red);
}

.feature-list li a {
	color: var(--secondary);
	font-weight: 700;
	text-decoration: none;
}

.feature-list li a:hover {
	text-decoration: underline;
}

.feature-list li strong {
	font-weight: 800;
}

.info-icon {
	color: #aaa;
	font-size: 0.75rem;
	cursor: pointer;
}

/* ── Card footer ── */
.plan-footer {
	padding: 0.8rem 1rem 1rem;
}

.btn-cancel-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	border: 1.5px solid #c5d0da;
	border-radius: 6px;
	padding: 0.45rem 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #555;
	text-decoration: none;
	margin-bottom: 0.6rem;
	transition: border-color 0.2s;
}

.btn-cancel-link:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.btn-cancel-link .dot {
	color: #1a8fcc;
	font-size: 0.6rem;
}

.btn-register {
	display: block;
	width: 100%;
	background: var(--accent);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 0.7rem;
	font-weight: 800;
	font-size: 0.85rem;
	text-align: center;
	cursor: pointer;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: background 0.2s;
}

.btn-register:hover {
	background: #2d8a29;
}

.btn-register small {
	display: block;
	font-size: 0.65rem;
	font-weight: 600;
	opacity: 0.85;
	letter-spacing: 0;
	text-transform: none;
}

/* ── Most Popular badge ── */
.most-popular-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: #e05555;
	color: var(--white);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.22rem 0.9rem;
	border-radius: 0 0 8px 8px;
}

/* ── Money back guarantee ── */
.money-back {
	background: var(--white);
	border-radius: 10px;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	max-width: 680px;
	margin: 0 auto 3rem;
}

.money-back img {
	width: 80px;
	flex-shrink: 0;
}

.money-back h5 {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 0.3rem;
	color: #222;
}

.money-back p {
	font-size: 0.82rem;
	color: #555;
	margin: 0 0 0.3rem;
}

.money-back .terms {
	font-size: 0.72rem;
	color: #888;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.money-back a {
	color: var(--secondary);
	font-weight: 700;
}

/* ── Price display logic ── */
.price-monthly,
.price-annually {
	display: none;
}

.show-monthly .price-monthly {
	display: inline;
}

.show-annually .price-annually {
	display: inline;
}


/* TESTIMONIALS SECTION */
.testimonials {
	background: var(--pillBg);
	text-align: center;
}


/* ── Slider wrapper ── */
.slider-outer {
	position: relative;
	max-width: 1060px;
	margin: 0 auto 2.5rem;
	overflow: hidden;
}

.slider-track {
	display: flex;
	transition: transform 0.5s ease;
}

/* ── Single card ── */
.testimonial-card {
	background: var(--white);
	border-radius: 10px;
	padding: 2rem 1.8rem 1.6rem;
	text-align: left;
	flex: 0 0 calc(33.333% - 1rem);
	margin: 0 0.5rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 320px;
}

.quote-icon {
	font-size: 3.5rem;
	line-height: 1;
	color: #d8dde3;
	display: block;
}

.testimonial-text {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: #444;
	line-height: 1.65;
	flex: 1;
	margin-bottom: 1.5rem;
}

/* ── Author ── */
.author {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.author-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 2.5px solid var(--secondary);
	object-fit: cover;
	flex-shrink: 0;
	background: #c5d5e8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--white);
	font-weight: 800;
}

.author-info .name {
	font-size: clamp(0.75rem, 1.5vw, 0.875rem);
	font-weight: 700;
	color: #2e2e2e;
	margin: 0;
}

.author-info .role {
	font-size: 0.75rem;
	color: #666;
	margin: 0;
}

.author-info .role a {
	color: var(--secondary);
	text-decoration: none;
	font-weight: 600;
}

.author-info .role a:hover {
	text-decoration: underline;
}

/* ── Nav arrows ── */
.slider-nav {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-bottom: 2rem;
}

.nav-arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #b0bec5;
	background: transparent;
	cursor: pointer;
	font-size: 1rem;
	color: #555;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-arrow:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: #eef3f7;
}

/* ── Dots ── */
.slider-dots {
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-bottom: 2rem;
}

.dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #c5cdd5;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.dot.active {
	background: var(--secondary);
	transform: scale(1.2);
}

/* ── Avatar initials fallback colors ── */
.av-1 {
	background: #6b9ec7;
}

.av-2 {
	background: #5bb8c4;
}

.av-3 {
	background: #7a9ac0;
}

.av-4 {
	background: #8aad8a;
}

.av-5 {
	background: #c47a7a;
}

/* COMPANIES SECTION */
.companies {
	padding: 3.5rem 1.5rem 3rem;
	text-align: center;
}

.logos-row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 0 2.5rem;
}

.logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
	transition: opacity 0.2s, transform 0.2s;
}

.logo-item:hover {
	opacity: 1;
	transform: scale(1.06);
}

.logo-item img {
	height: 50px;
	width: 100%;
	object-fit: contain;
	transition: opacity 0.2s, transform 0.2s;
}

.got-questions {
	background: var(--pillBg);
	text-align: center;
}

  /* Link cards */
.question-card {
	background: var(--white);
	border-radius: 10px;
	padding: 2rem 1.5rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: box-shadow 0.2s, transform 0.2s;
}

.question-card:hover {
	box-shadow: 0 4px 18px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.question-card span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary);
	line-height: 1.45;
}




   /* ── Dark blue hero banner ── */
.real-results-hero {
	background-image: linear-gradient(135deg, var(--primary), #143a66);
	text-align: center;
}

.real-results-hero h1 {
	color: var(--white);
	margin-bottom: 0.8rem;
}

.real-results-hero p {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: rgba(255,255,255,0.85);
	margin: 0;
}

.real-results-body {
	background: #f9fafb;
	position: relative;
	overflow: hidden;
}
.real-results-body::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, rgba(37,99,235,0.12) 100%);
	clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
	pointer-events: none;
}

.real-results-body h2 {
	font-style: italic;
	font-weight: 600;
	color: #2e2e2e;
	margin-bottom: 1.8rem;
}

.real-results-body p {
	color: #666;
	line-height: 1.75;
	margin-bottom: 1.4rem;
	max-width: 560px;
}

  /* ── Image column with fade ── */
.image-col {
	position: relative;
	padding: 0;
	min-height: 420px;
}


     /* ── Tab toggle ── */
.stories-section {
	padding: 3rem 1.5rem 4rem;
}

.tab-toggle {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}

.tab-toggle button {
	border: 2px solid #b0bec5;
	background: transparent;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.6rem 2.2rem;
	color: #555;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tab-toggle button:first-child {
	border-radius: 6px 0 0 6px;
	border-right: none;
}

.tab-toggle button:last-child {
	border-radius: 0 6px 6px 0;
}

.tab-toggle button.active {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.tab-toggle button:not(.active):hover {
	border-color: var(--primary);
	color: var(--primary);
}
  
	  /* ── Tab content ── */
.tab-pane-custom {
	display: none;
}

.tab-pane-custom.active {
	display: block;
}
  
	  /* ── Story layout ── */
.story-row {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto 3rem;
}
  
	  /* ── Photo ── */
.story-photo {
	flex: 0 0 380px;
	max-width: 380px;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
}

.story-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
  
	  /* ── Text ── */
.story-text {
	flex: 1;
	position: relative;
	padding-top: 0.5rem;
}
  
	  /* Large background quote mark */
.story-text::before {
	content: '\201C';
	position: absolute;
	top: -10px;
	right: 10px;
	font-size: 10rem;
	line-height: 1;
	color: #e8ecf0;
	pointer-events: none;
	z-index: 0;
}

.story-text > * {
	position: relative;
	z-index: 1;
}

.story-text p {
	font-size: 0.97rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1.2rem;
}

.story-text .author-name {
	font-style: italic;
	font-weight: 600;
	font-size: 1.05rem;
	color: #2e2e2e;
	margin-top: 1rem;
}
  




	     /* ── Section ── */
.video-testimonials {
	background: var(--pillBg);
}
	  
		  /* ── Single row ── */
.review-row {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	max-width: 720px;
	margin: 0 auto 4rem;
	position: relative;
}
	  
		  /* alternate: text left, photo right */
.review-row.reverse {
	flex-direction: row-reverse;
}

.review-row.reverse .review-text {
	text-align: right;
}
	  
		  /* ── Avatar ── */
.review-avatar {
	flex: 0 0 140px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--white);
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	flex-shrink: 0;
}

.review-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
	  
		  /* ── Text block ── */
.review-text {
	flex: 1;
	position: relative;
}
	  
		  /* Big background quote */
.review-text .bg-quote {
	position: absolute;
	font-size: 7rem;
	line-height: 1;
	color: rgba(180,200,215,0.35);
	top: -15px;
	right: -10px;
	pointer-events: none;
	user-select: none;
}

.review-row.reverse .review-text .bg-quote {
	right: auto;
	left: -10px;
}

.stars {
	color: var(--star);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	letter-spacing: 2px;
}

.review-quote {
	font-size: 0.92rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 0.6rem;
	position: relative;
	z-index: 1;
}

.review-author {
	font-style: italic;
	font-weight: 500;
	font-size: 0.95rem;
	color: #333;
	display: block;
	margin-bottom: 0.7rem;
}

.btn-story {
	display: inline-block;
	background: var(--primary);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.4rem 1.1rem;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.2s;
}

.btn-story:hover {
	background: var(--secondary);
	color: var(--white);
}
	  
		  /* ── Divider ── */
.review-divider {
	border: none;
	border-top: 1px solid rgba(0,0,0,0.07);
	max-width: 720px;
	margin: 0 auto 4rem;
}
	  
		  /* ── Video row (last) ── */
.video-row {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	max-width: 720px;
	margin: 0 auto;
	background: #d8e5ee;
	border-radius: 12px;
	padding: 2rem 2.5rem;
}

.video-text {
	flex: 1;
	position: relative;
}

.video-text .bg-quote {
	position: absolute;
	font-size: 6rem;
	line-height: 1;
	color: rgba(180,200,215,0.4);
	top: -10px;
	left: -15px;
	pointer-events: none;
	user-select: none;
}

.video-text p {
	font-size: 0.93rem;
	color: #555;
	line-height: 1.7;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.video-text .author {
	font-style: italic;
	font-size: 0.9rem;
	color: #333;
	font-weight: 500;
}

.video-embed {
	flex: 0 0 260px;
	width: 260px;
}

.video-embed iframe {
	width: 100%;
	height: 155px;
	border-radius: 8px;
	border: none;
}

.login {
	display: grid;
	justify-content: center;
	padding: 60px 0px;
}

   /* ── Tagline ── */
.login-tagline {
	font-size: 1.1rem;
	font-weight: 600;
	color: #555;
	margin-bottom: 0.8rem;
	text-align: center;
}

  /* ── Card ── */
.login-card {
	max-width: 100%;
	width: 500px;
	border: 1.5px solid #dde1e7;
	border-radius: 10px;
	padding: 2.2rem 2.4rem;
	background: var(--white);
	margin-bottom: 0.8rem;
}

  /* ── Labels ── */
.field-label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.4rem;
	display: block;
}

  /* ── Inputs ── */
.login-input {
	width: 100%;
	background: #f3f4f6;
	border: 1.5px solid #f3f4f6;
	border-radius: 6px;
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	color: #333;
	outline: none;
	transition: border-color 0.2s;
	margin-bottom: 1.2rem;
}

.login-input:focus {
	border-color: var(--secondary);
	background: var(--white);
}

  /* ── Password wrapper ── */
.password-wrap {
	position: relative;
	margin-bottom: 1.5rem;
}

.password-wrap .login-input {
	margin-bottom: 0;
	padding-right: 3rem;
}

.toggle-pw {
	position: absolute;
	right: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #333;
	display: flex;
	align-items: center;
}

.toggle-pw svg {
	width: 22px;
	height: 22px;
}

  /* ── Login button ── */
.btn-login {
	width: 100%;
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 0.85rem;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
	margin-bottom: 1.1rem;
}

.btn-login:hover {
	background: #1a5a8a;
}

  /* ── Forgot password ── */
.forgot-link {
	display: block;
	text-align: center;
	color: var(--secondary);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.forgot-link:hover {
	text-decoration: underline;
}

  /* ── Register box ── */
.register-box {
	width: 100%;
	max-width: 500px;
	background: #f3f4f6;
	border-radius: 10px;
	padding: 1.1rem 2rem;
	text-align: center;
	font-size: 0.93rem;
	color: #555;
	font-weight: 600;
}

.register-box a {
	color: var(--secondary);
	font-weight: 700;
	text-decoration: none;
}

.register-box a:hover {
	text-decoration: underline;
}
		  


/* ── Wrapper ── */
.split-hero {
	display: flex;
	min-height: 100vh;
	position: relative;
	padding: 0px;
}

  /* ── Left Panel ── */
.panel {
	flex: 1;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 3.5rem 4rem 0;
}

.panel-left {
	background-color: var(--primary);
	clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
	z-index: 2;
}

.panel-right {
	background-color: var(--light-bg);
	margin-left: -6%;
	padding-left: 8%;
	z-index: 1;
}

  /* ── Text content ── */
.panel-content {
	position: relative;
	z-index: 3;
}

.panel-left .panel-content h2 {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 0.5rem;
	line-height: 1.15;
}

.panel-right .panel-content h2 {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 0.5rem;
	line-height: 1.15;
}

.panel-left .panel-content p {
	font-size: 1rem;
	font-weight: 600;
	color: rgba(255,255,255,0.75);
	margin-bottom: 1.8rem;
}

.panel-right .panel-content p {
	font-size: 1rem;
	font-weight: 600;
	color: #5a6a7a;
	margin-bottom: 1.8rem;
}

  /* ── Buttons ── */
.btn-employer {
	display: inline-block;
	background: var(--white);
	color: var(--primary);
	font-weight: 800;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 50px;
	padding: 0.75rem 2rem;
	text-decoration: none;
	border: none;
	transition: background 0.2s, color 0.2s;
	cursor: pointer;
}

.btn-employer:hover {
	background: var(--gold);
	color: var(--white);
}

.btn-worker {
	display: inline-block;
	background: var(--primary);
	color: var(--white);
	font-weight: 800;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 50px;
	padding: 0.75rem 2rem;
	text-decoration: none;
	border: none;
	transition: background 0.2s;
	cursor: pointer;
}

.btn-worker:hover {
	background: #1a5a8a;
	color: var(--white);
}

  /* ── Curved arrows ── */
.arrow-wrap {
	position: relative;
	height: 60px;
	margin-top: 0.5rem;
}

.arrow-left {
	position: absolute;
	left: 50px;
	top: 0;
}

.arrow-right {
	position: absolute;
	left: 30px;
	top: 0;
}

  /* ── Chat bubbles ── */
.bubble {
	position: absolute;
	background: rgba(255,255,255,0.92);
	border-radius: 16px;
	padding: 0.55rem 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #333;
	box-shadow: 0 4px 14px rgba(0,0,0,0.12);
	max-width: 160px;
	line-height: 1.4;
	z-index: 10;
	animation: floatBubble 3s ease-in-out infinite alternate;
}

.bubble::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: rgba(255,255,255,0.92);
	border-radius: 50%;
}

  /* Left panel bubbles */
.bubble-left-1 {
	left: 2.5rem;
	bottom: 38%;
	animation-delay: 0s;
}

.bubble-left-2 {
	right: 18%;
	bottom: 55%;
	animation-delay: 1s;
}

  /* Right panel bubbles */
.bubble-right-1 {
	left: 8%;
	bottom: 42%;
	animation-delay: 0.5s;
}

.bubble-right-2 {
	right: 5%;
	bottom: 52%;
	animation-delay: 1.5s;
}

@keyframes floatBubble {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-8px);
	}
}

  /* ── Images ── */
.panel-image {
	position: absolute;
	bottom: 0;
	z-index: 2;
	pointer-events: none;
}

.panel-left .panel-image {
	right: 8%;
	height: 72%;
	max-height: 520px;
}

.panel-right .panel-image {
	right: 4%;
	height: 68%;
	max-height: 490px;
}

.panel-image img {
	height: 100%;
	width: auto;
	object-fit: contain;
	object-position: bottom;
	display: block;
}



 /* Overlay */
.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.drawer-overlay.open {
	opacity: 1;
	pointer-events: all;
}

  /* Drawer panel */
.drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 460px;
	max-width: 100vw;
	height: 100%;
	background: var(--white);
	z-index: 2000;
	transform: translateX(-100%);
	transition: transform 0.38s cubic-bezier(.4, 0, .2, 1);
	overflow-y: auto;
	padding: 2rem 2.2rem 3rem;
	box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
}

.drawer.open {
	transform: translateX(0);
}

  /* Close button */
.drawer-close {
	position: absolute;
	top: 1.1rem;
	right: 1.2rem;
	background: none;
	border: none;
	font-size: 1.4rem;
	font-weight: 700;
	color: #333;
	cursor: pointer;
	line-height: 1;
}

.drawer-close:hover {
	color: #000;
}

  /* Title */
.drawer h3 {
	margin-bottom: 0.9rem;
}

  /* Sub label */
.drawer .sub-label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #666;
	margin-bottom: 1.2rem;
}

.drawer .sub-label strong {
	color: #1a1a1a;
}

  /* Field labels */
.form-field-label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #555;
	display: block;
	margin-bottom: 0.35rem;
}

  /* Inputs */
.form-input {
	width: 100%;
	background: #f3f4f6;
	border: 1.5px solid #f3f4f6;
	border-radius: 5px;
	padding: 0.7rem 1rem;
	font-size: 0.92rem;
	color: #333;
	outline: none;
	margin-bottom: 1.1rem;
	transition: border-color 0.2s;
}

.form-input:focus {
	border-color: var(--primary, #0d3557);
	background: var(--white);
}

  /* Password toggle */
.pw-wrap {
	position: relative;
	margin-bottom: 0.4rem;
}

.pw-wrap .form-input {
	margin-bottom: 0;
	padding-right: 3rem;
}

.pw-toggle {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #555;
}

.pw-toggle svg {
	width: 20px;
	height: 20px;
}

.pw-hint {
	font-size: 0.75rem;
	color: #888;
	margin: 0.3rem 0 1.1rem;
	font-style: italic;
}

  /* Checkboxes */
.check-row {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin-bottom: 0.85rem;
	font-size: 0.85rem;
	color: #444;
}

.check-row input[type="checkbox"] {
	margin-top: 3px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	accent-color: var(--primary, #0d3557);
}

.check-row a {
	color: #2a7fc1;
	font-weight: 700;
	text-decoration: none;
}

.check-row a:hover {
	text-decoration: underline;
}

  /* Captcha */
.captcha-box {
	border: 1.5px solid #d0d5dd;
	border-radius: 6px;
	padding: 1rem 1.2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	background: #fafafa;
}

.captcha-box input {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	accent-color: var(--primary, #0d3557);
}

.captcha-box label {
	font-size: 0.88rem;
	font-weight: 600;
	color: #333;
	flex: 1;
	margin: 0;
	cursor: pointer;
}

.captcha-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.captcha-logo svg {
	width: 32px;
	height: 32px;
}

.captcha-logo span {
	font-size: 0.6rem;
	color: #aaa;
}

  /* Register button */
.btn-register {
	width: 100%;
	background: var(--primary, #0d3557);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 0.85rem;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
}

.btn-register:hover {
	background: #1a5a8a;
}



    /* ── Search bar ── */
.search-bar-wrap {
	background: var(--white);
	border-radius: 50px;
	display: flex;
	align-items: center;
	padding: 0.4rem 0.4rem 0.4rem 1.4rem;
	margin-bottom: 1.8rem;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.search-bar-wrap .search-icon {
	color: #aab;
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-right: 0.7rem;
}

.search-bar-wrap input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 0.95rem;
	color: #444;
	background: transparent;
}

.search-bar-wrap input::placeholder {
	color: #bbb;
}

.btn-search {
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 50px;
	padding: 0.65rem 2rem;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
}

.btn-search:hover {
	background: #1a5a8a;
}
  
	  /* ── Layout: sidebar + results ── */
.jobs-page {
	background-color: var(--pillBg);
}

.jobs-layout {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}
  
	  /* ── Sidebar ── */
.sidebar {
	width: 260px;
	flex-shrink: 0;
	background: var(--white);
	border-radius: 10px;
	padding: 1.4rem 1.3rem;
	border: 1px solid var(--border);
	position: sticky;
	top: 7rem;
	align-self: flex-start;
}

.sidebar h5 {
	font-size: 1rem;
	font-weight: 800;
	color: #222;
	margin-bottom: 0.3rem;
}

.sidebar .select-label {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 0.8rem;
	display: block;
}
  
	  /* Skills search input */
.skill-search-wrap {
	display: flex;
	align-items: center;
	border: 1.5px solid var(--border);
	border-radius: 6px;
	padding: 0.5rem 0.8rem;
	gap: 0.5rem;
	margin-bottom: 1.3rem;
}

.skill-search-wrap svg {
	color: var(--secondary);
	flex-shrink: 0;
}

.skill-search-wrap input {
	border: none;
	outline: none;
	color: #444;
	width: 100%;
	background: transparent;
}

.skill-search-wrap input::placeholder {
	color: #bbb;
}

.sidebar hr {
	border-color: var(--border);
	margin: 1rem 0;
}
  
	  /* Employment type */
.emp-label {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 0.8rem;
	display: block;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.55rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: #333;
}

.check-item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--secondary);
	cursor: pointer;
}
  
	  /* Refine button */
.btn-refine {
	width: 100%;
	background: transparent;
	border: 1.5px solid var(--border);
	border-radius: 50px;
	padding: 0.55rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--secondary);
	cursor: pointer;
	margin-top: 1rem;
	transition: border-color 0.2s, background 0.2s;
}

.btn-refine:hover {
	border-color: var(--secondary);
	background: #eef5fc;
}
  
	  /* ── Results column ── */
.results-col {
	flex: 1;
	min-width: 0;
}

.results-count {
	font-size: 0.88rem;
	color: #777;
	font-weight: 600;
	margin-bottom: 1rem;
}
  
	  /* ── Job card ── */
.job-card {
	background: var(--white);
	border-radius: 10px;
	border: 1px solid var(--border);
	padding: 1.4rem 1.6rem;
	margin-bottom: 1rem;
	transition: box-shadow 0.2s;
}

.job-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.job-card-inner {
	display: flex;
	gap: 1.2rem;
	align-items: flex-start;
}
  
	  /* Company logo */
.company-logo {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	object-fit: contain;
	border: 1px solid var(--border);
	background: #f8f9fb;
	flex-shrink: 0;
	padding: 4px;
}

.job-info {
	flex: 1;
	min-width: 0;
}

.job-title-row {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	flex-wrap: wrap;
	margin-bottom: 0.2rem;
}

.job-title {
	font-size: 1rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0;
}
  
	  /* Badge */
.badge-type {
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 4px;
	padding: 0.2rem 0.55rem;
	white-space: nowrap;
	margin-top: 2px;
}

.badge-fulltime {
	background: #e8f8f0;
	color: #1a9e5a;
	border: 1px solid #b6e8cf;
}

.badge-parttime {
	background: #fff4e0;
	color: #c97a00;
	border: 1px solid #ffdda0;
}

.badge-gig {
	background: #eef3ff;
	color: #3a5fc0;
	border: 1px solid #c0cef5;
}

.job-meta {
	font-size: 0.78rem;
	color: #888;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.job-salary {
	font-size: 0.88rem;
	font-weight: 700;
	color: #444;
	margin-bottom: 0.5rem;
}

.job-company-name {
	font-size: 0.88rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.15rem;
}

.job-desc {
	font-size: 0.85rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 0.8rem;
}

.job-desc a {
	color: var(--secondary);
	font-weight: 700;
	text-decoration: none;
}

.job-desc a:hover {
	text-decoration: underline;
}
  
	  /* Skill tags */
.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.skill-tag {
	background: #f0f2f5;
	border-radius: 5px;
	padding: 0.25rem 0.75rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #444;
}
  




   /* ── Hero Banner ── */
.contact-hero {
	background-image: linear-gradient(135deg, var(--primary), #143a66);
	text-align: center;
	padding: 3.5rem 1.5rem 3rem;
}

.contact-hero h1 {
	color: var(--white);
	margin-bottom: 0.8rem;
}

.contact-hero p {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

  /* ── Field labels ── */
.field-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 0.4rem;
}

  /* ── Inputs ── */
.form-input {
	width: 100%;
	background: var(--input-bg);
	border: 1.5px solid var(--input-bg);
	border-radius: 5px;
	padding: 0.7rem 1rem;
	font-size: 0.93rem;
	color: #333;
	outline: none;
	margin-bottom: 1.2rem;
	transition: border-color 0.2s, background 0.2s;
}

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

textarea.form-input {
	resize: vertical;
	min-height: 120px;
	margin-bottom: 1.2rem;
}

  /* ── Captcha mock ── */
.captcha-box {
	border: 1.5px solid #d0d5dd;
	border-radius: 4px;
	padding: 0.9rem 1.2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.3rem;
	background: #fafafa;
	max-width: 100%;
}

.captcha-box input[type="checkbox"] {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	accent-color: var(--primary);
	cursor: pointer;
}

.captcha-box label {
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
	flex: 1;
	margin: 0;
	cursor: pointer;
}

.captcha-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.captcha-info svg {
	width: 34px;
	height: 34px;
}

.captcha-info span {
	font-size: 0.58rem;
	color: #aaa;
	white-space: nowrap;
}

.captcha-warning {
	font-size: 0.65rem;
	color: #999;
	margin-top: 0.3rem;
	display: block;
}

.captcha-warning a {
	color: #2a7fc1;
	text-decoration: underline;
}

  /* ── Send button ── */
.btn-send {
	width: 100%;
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 0.9rem;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background 0.2s;
	margin-bottom: 0.7rem;
}

.btn-send:hover {
	background: var(--primary-hover);
}

.btn-send svg {
	width: 18px;
	height: 18px;
}

.send-note {
	text-align: center;
	font-size: 0.85rem;
	color: #888;
	font-style: italic;
	margin: 0;
}

  /* ── Right column ── */
.contact-info {
	padding-top: 0.5rem;
}

.info-row {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	margin-bottom: 1.6rem;
}

.info-row svg {
	flex-shrink: 0;
	color: #aab;
	margin-top: 2px;
}

.info-row strong {
	font-size: 0.97rem;
	font-weight: 800;
	color: #222;
	display: block;
	margin-bottom: 0.2rem;
}

.info-row p {
	font-size: 0.88rem;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

  /* ── Gold FAQ button ── */
.btn-faq {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--gold);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 0.85rem 1.5rem;
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
	width: 100%;
	max-width: 260px;
	margin-bottom: 0.9rem;
	transition: background 0.2s;
	text-decoration: none;
}

.btn-faq:hover {
	background: var(--gold-dark);
	color: var(--white);
}

.btn-faq .faq-num {
	font-size: 1.3rem;
	font-weight: 900;
	border-bottom: 2px solid rgba(255,255,255,0.7);
	padding-bottom: 1px;
	margin-right: 2px;
}

.btn-faq .faq-q {
	font-size: 1.5rem;
	font-weight: 900;
	opacity: 0.85;
}

  /* ── Messenger button ── */
.btn-messenger {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 0.7rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 800;
	cursor: pointer;
	width: 100%;
	max-width: 260px;
	transition: background 0.2s;
	text-decoration: none;
}

.btn-messenger:hover {
	background: var(--primary-hover);
	color: var(--white);
}

.btn-messenger svg {
	width: 20px;
	height: 20px;
}




   /* ── Hero ── */
.privacy-hero {
	background-image: linear-gradient(135deg, var(--primary), #143a66);
}

.privacy-hero h1 {
	color: var(--white);
	margin-bottom: 0.5rem;
}

.privacy-hero p {
	color: rgba(255,255,255,0.7);
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0;
}

  /* ── Layout ── */
.privacy-layout {
	display: flex;
	gap: 2.5rem;
	max-width: 1060px;
	margin: 0 auto;
	padding: 3rem 1.5rem 5rem;
	align-items: flex-start;
}

  /* ── Sticky TOC sidebar ── */
.toc {
	width: 230px;
	flex-shrink: 0;
	position: sticky;
	top: 7rem;
	align-self: flex-start;
	background: var(--pillBg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 1.3rem 1.2rem;
}

.toc h6 {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 0.9rem;
}

.toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc ul li {
	margin-bottom: 0.5rem;
}

.toc ul li a {
	font-size: 0.82rem;
	font-weight: 700;
	color: #555;
	text-decoration: none;
	transition: color 0.2s;
	display: block;
	padding: 0.15rem 0;
	border-left: 2px solid transparent;
	padding-left: 0.6rem;
}

.toc ul li a:hover,
  .toc ul li a.active {
	color: var(--primary);
	border-left-color: var(--primary);
}

  /* ── Content ── */
.privacy-content {
	flex: 1;
	min-width: 0;
}

.privacy-content .last-updated {
	font-size: 0.8rem;
	color: #aaa;
	font-weight: 600;
	margin-bottom: 2rem;
	display: block;
}

.privacy-section {
	margin-bottom: 2.8rem;
	scroll-margin-top: 5.5rem;
}

.privacy-section h2 {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.9rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--border);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.privacy-section h2 .sec-num {
	background: var(--primary);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 800;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.privacy-section p {
	font-size: 0.93rem;
	color: #555;
	margin-bottom: 0.9rem;
}

.privacy-section ul {
	padding-left: 1.3rem;
	margin-bottom: 0.9rem;
}

.privacy-section ul li {
	font-size: 0.93rem;
	color: #555;
	margin-bottom: 0.4rem;
}

.privacy-section a {
	color: var(--primary);
	font-weight: 700;
	text-decoration: none;
}

.privacy-section a:hover {
	text-decoration: underline;
}

  /* Highlight box */
.highlight-box {
	background: #eef5fc;
	border-left: 4px solid var(--primary);
	border-radius: 0 8px 8px 0;
	padding: 1rem 1.2rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #3a3a3a;
}




/* Hero */
.page-hero {
	background-image: linear-gradient(135deg, var(--primary), #143a66);
}

.page-hero h1 {
	color: var(--white);
	margin-bottom: 0.8rem;
}

.page-hero p {
	color: rgba(255,255,255,0.7);
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0;
}

    /* Layout */
.page-layout {
	display: flex;
	gap: 2.5rem;
	max-width: 1060px;
	margin: 0 auto;
	padding: 3rem 1.5rem 5rem;
	align-items: flex-start;
}

    /* TOC */
.toc {
	width: 230px;
	flex-shrink: 0;
	position: sticky;
	top: 7rem;
	align-self: flex-start;
	background: var(--pillBg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 1.3rem 1.2rem;
}

.toc h6 {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 0.9rem;
}

.toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc ul li {
	margin-bottom: 0.5rem;
}

.toc ul li a {
	font-size: 0.82rem;
	font-weight: 700;
	color: #555;
	text-decoration: none;
	display: block;
	padding: 0.15rem 0 0.15rem 0.6rem;
	border-left: 2px solid transparent;
	transition: color 0.2s,border-color 0.2s;
}


    /* Content */
.page-content {
	flex: 1;
	min-width: 0;
}

.last-updated {
	font-size: 0.8rem;
	color: #aaa;
	font-weight: 600;
	margin-bottom: 2rem;
	display: block;
}

.terms-section {
	margin-bottom: 2.8rem;
	scroll-margin-top: 5.5rem;
}

.terms-section h2 {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.9rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--border);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.sec-num {
	background: var(--primary);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 800;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.terms-section p {
	font-size: 0.93rem;
	color: #555;
	margin-bottom: 0.9rem;
}

.terms-section ul {
	padding-left: 1.3rem;
	margin-bottom: 0.9rem;
}

.terms-section ul li {
	font-size: 0.93rem;
	color: #555;
	margin-bottom: 0.4rem;
}

.terms-section a {
	color: var(--secondary);
	font-weight: 700;
	text-decoration: none;
}

.terms-section a:hover {
	text-decoration: underline;
}

.highlight-box {
	background: #eef5fc;
	border-left: 4px solid var(--secondary);
	border-radius: 0 8px 8px 0;
	padding: 1rem 1.2rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #3a3a3a;
}

.warning-box {
	background: #fff8ec;
	border-left: 4px solid #e6a817;
	border-radius: 0 8px 8px 0;
	padding: 1rem 1.2rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #3a3a3a;
}





   /* ── Hero ── */
.about-hero {
	background-image: linear-gradient(135deg, var(--primary), #143a66);
}

.about-hero h1 {
	color: var(--white);
}

.about-hero h1 .heart {
	vertical-align: baseline;
}

.about-hero p {
	color: rgba(255,255,255,0.75);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

  /* ── Section headings ── */
.section-title {
	font-style: italic;
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	margin-bottom: 1.2rem;
}

  /* ── Body text ── */
.about-body p {
	font-size: 0.95rem;
	color: #444;
	margin-bottom: 0.9rem;
	line-height: 1.8;
}

.about-body p strong {
	color: #222;
}

  /* ── Section divider ── */
.section-block {
	margin-bottom: 3rem;
}

  /* ── Quote style ── */
.quote-text {
	font-size: 0.95rem;
	color: #333;
	margin-bottom: 0.9rem;
}

.quote-text strong {
	font-weight: 800;
	color: #222;
}

  /* ── Team section ── */
.team-subtitle {
	text-align: center;
	font-size: 0.93rem;
	color: #777;
	margin-bottom: 2.5rem;
}

  /* ── Featured team member (full-width) ── */
.team-member-featured {
	text-align: center;
	margin-bottom: 2.8rem;
	padding-bottom: 2.8rem;
	border-bottom: 1px solid var(--border);
}

.team-member-featured:last-of-type {
	border-bottom: none;
}

.member-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 0.9rem;
	border: 3px solid var(--border);
}

.member-name {
	font-size: 1rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 0.1rem;
}

.member-role {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 1rem;
}

.member-bio {
	text-align: left;
	font-size: 0.93rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 0.8rem;
}

.member-bio strong {
	color: #222;
	font-weight: 800;
}

  /* ── Grid team members ── */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 1.5rem 0rem;
	justify-content: center;
	place-items: center;
	align-items: center;
	margin-bottom: 1.5rem;
}

.team-grid-item {
	text-align: center;
	width: 130px;
}

.team-grid-item img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--border);
	margin-bottom: 0.5rem;
}

.team-grid-item .g-name {
	font-size: 0.85rem;
	font-weight: 800;
	color: #222;
	line-height: 1.3;
}

  /* ── Support group label ── */
.support-label {
	text-align: center;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #999;
	margin: 1rem 0 1rem;
}






    /* ── Hero ── */
.ref-hero {
	background-image: linear-gradient(135deg, var(--primary), #143a66);
}

.ref-hero h1 {
	color: var(--white);
	margin-bottom: 0.6rem;
}

.ref-hero p {
	font-style: italic;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	color: rgba(255,255,255,0.82);
	margin: 0;
}
  
	  /* ── Section headings ── */
.sec-heading {
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1a1a1a;
	margin-bottom: 0.9rem;
}

.ref-body p {
	font-size: 0.95rem;
	color: #444;
	margin-bottom: 0.8rem;
	line-height: 1.75;
}
  
	  /* ── Section blocks ── */
.section-block {
	margin-bottom: 2.8rem;
}
  
	  /* ── Steps box ── */
.steps-box {
	background: var(--pillBg);
	border-radius: 8px;
	padding: 2rem 1.5rem 1.5rem;
	margin: 1rem 0 0.5rem;
}

.steps-row {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.step-item {
	text-align: center;
	flex: 1;
	min-width: 0;
}

.step-circle {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--secondary);
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.7rem;
}

.step-text {
	font-size: 0.85rem;
	color: #555;
	line-height: 1.55;
}

.step-text strong {
	color: #222;
	font-weight: 800;
}

.steps-footer {
	text-align: center;
	font-size: 0.88rem;
	color: #555;
	border-top: 1px solid var(--border);
	padding-top: 1rem;
}

.steps-footer strong {
	color: #222;
	font-weight: 800;
}
  
	  /* ── Chevron list ── */
.chevron-list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0.5rem;
}

.chevron-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.95rem;
	color: #444;
	margin-bottom: 0.55rem;
}

.chevron-list li::before {
	content: '›';
	color: var(--secondary);
	font-size: 1.2rem;
	font-weight: 900;
	line-height: 1.4;
	flex-shrink: 0;
}
  
	  /* ── Checkmark list ── */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0.8rem;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.95rem;
	color: #444;
	margin-bottom: 0.45rem;
}

/* .check-list li::before {
	content: '✓';
	color: var(--secondary);
	font-size: 0.95rem;
	font-weight: 900;
	flex-shrink: 0;
} */
  
	  /* ── Example box ── */
.example-box {
	background: var(--pillBg);
	border-radius: 8px;
	padding: 1.1rem 1.4rem;
	font-size: 0.92rem;
	color: #444;
	margin-top: 0.6rem;
}

.example-box strong {
	color: #222;
	font-weight: 800;
}
  
	  /* ── Italic note ── */
.italic-note {
	font-style: italic;
	color: #777 !important;
	font-size: 0.9rem !important;
}
  






    /* ── Hero ── */
.gs-hero {
	background-image: linear-gradient(135deg, var(--primary), #143a66);
}

.gs-hero .sub {
	font-size: 1.05rem;
	font-weight: 600;
	color: rgba(255,255,255,0.85);
	margin-bottom: 0.3rem;
}

.gs-hero h1 {
	color: #fff;
	margin-bottom: 0.5rem;
}

.gs-hero .tagline {
	font-style: italic;
	font-size: 1rem;
	color: rgba(255,255,255,0.78);
	margin-bottom: 1.8rem;
}

    /* YouTube embed */
.video-wrap {
	max-width: 640px;
	margin: 0 auto;
	border-radius: 8px 8px 0 0;
	overflow: hidden;
	line-height: 0;
}

.video-wrap iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border: none;
	display: block;
}



    /* ── Step block ── */
.step-block {
	margin-bottom: 2.8rem;
}

    /* Step label */
.step-label {
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 0.15rem;
}

.step-title {
	font-size: 1.6rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 0.7rem;
	line-height: 1.25;
}

.step-text {
	font-size: 0.92rem;
	color: #555;
	margin-bottom: 0.7rem;
	line-height: 1.75;
}

    /* Step row: text left / image right  or  image left / text right */
.gs-body .step-row {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.gs-body .step-row.reverse {
	flex-direction: row-reverse;
}

.step-content {
	flex: 1;
	min-width: 0;
}

.step-image {
	flex: 0 0 400px;
	text-align: center;
}

.step-image img {
	width: 100%;
	max-width: 100%;
}

    /* CTA button */
.btn-step {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.55rem 1.3rem;
	border-radius: 4px;
	margin-top: 0.5rem;
	transition: background 0.2s;
}

.btn-step:hover {
	background: #1a5a8a;
	color: #fff;
}

    /* ── Info banner ── */
.info-banner {
	background: var(--pillBg);
	border-radius: 8px;
	padding: 1.1rem 1.4rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2.8rem;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.65;
	text-align: center;
	justify-content: center;
}

.info-banner .banner-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.info-banner a {
	color: var(--teal);
	font-weight: 700;
	text-decoration: none;
}

.info-banner a:hover {
	text-decoration: underline;
}





   /* ── Page wrapper ── */
.gs-body {
	padding: 0;
}

.pay-wrap {
	padding: 0px 0px 80px 0px;
}

.gs-faq,
.gs-education {
	background-color: var(--pillBg);
}

.gs-faq .accordion-button,
  .gs-faq .accordion-body {
	background-color: var(--white) !important;
}

  /* ── Top divider ── */
.top-divider {
	border: none;
	border-top: 1px solid var(--border);
	margin: 2.5rem 0 2rem;
}

  /* YouTube embed */
.video-wrap {
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 3rem;
	line-height: 0;
}

.video-wrap iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border: none;
	display: block;
}

  /* ── Section: How to Pay ── */
.pay-heading {
	font-size: 1.6rem;
	font-weight: 800;
	color: #1a1a1a;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 0.9rem;
}

.pay-intro {
	text-align: center;
	font-size: 0.93rem;
	color: #555;
	margin-bottom: 1.6rem;
	line-height: 1.7;
}

.pay-intro a {
	color: var(--green);
	font-weight: 800;
	text-decoration: none;
}

.pay-intro a:hover {
	text-decoration: underline;
}

  /* EasyPay logo */
.easypay-logo {
	text-align: center;
	margin-bottom: 0.8rem;
}

.easypay-logo .logo-text {
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.02em;
}

.easypay-logo .logo-easy {
	color: var(--secondary);
	font-style: italic;
}

.easypay-logo .logo-pay {
	color: #1a1a1a;
}

.easypay-tagline {
	text-align: center;
	font-size: 0.95rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 1.2rem;
}

.body-text {
	font-size: 0.93rem;
	color: #444;
	line-height: 1.78;
	margin-bottom: 1rem;
}

  /* ── Quote divider block ── */
.quote-block {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 1.1rem 0;
	margin: 1.6rem 0;
}

.quote-block p {
	font-size: 0.95rem;
	font-style: italic;
	color: #555;
	margin: 0;
}




   /* ─── TESTIMONIALS ─── */
.gs-review-row {
	display: flex;
	align-items: flex-start;
	gap: 1.4rem;
	margin-bottom: 3rem;
}
  /* Even rows: image right */
.gs-review-row.gs-img-right {
	flex-direction: row-reverse;
}

.gs-review-photo {
	flex-shrink: 0;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	object-fit: cover;
}

.gs-review-body {
	flex: 1;
	min-width: 0;
}

.stars {
	color: #f0b429;
	font-size: 1.3rem;
	letter-spacing: 2px;
	margin-bottom: 0.4rem;
	display: block;
}

.gs-review-text {
	font-size: 0.92rem;
	color: #444;
	line-height: 1.75;
	margin: 0;
}

  /* CTA button */
.gs-btn-outline {
	display: inline-block;
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.5rem 1.2rem;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}

.gs-btn-outline:hover {
	background: var(--primary);
	color: #fff;
}

.gs-view-more {
	text-align: center;
	padding: 1rem 0 3rem;
}

  /* ─── EDUCATION SECTION ─── */
.gs-edu-heading {
	font-size: 1.7rem;
	font-weight: 800;
	color: #1a1a1a;
	text-align: center;
	margin-bottom: 2rem;
}

.gs-gs-edu-cards {
	display: flex;
	gap: 1.2rem;
	max-width: 100%;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}

.gs-edu-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	flex: 1;
	min-width: 160px;
	max-width: 100%;
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
}

.gs-gs-edu-card-thumb {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
	background: #c8d0e0;
}

  /* thumbnail placeholder via SVG inline bg */
.gs-thumb-video {
	background: linear-gradient(135deg, #1a3a5c 60%, #2a5f8f 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16/9;
}

.gs-thumb-pdf {
	background: linear-gradient(135deg, #1a3a5c 60%, #c0392b 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16/9;
}

.gs-thumb-icon {
	font-size: 2rem;
}

.gs-gs-edu-card-body {
	padding: 0.8rem 0.8rem 0.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.gs-gs-edu-card-title {
	font-size: 0.82rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 0.2rem;
	line-height: 1.4;
}

.gs-gs-edu-card-sub {
	font-size: 0.75rem;
	color: #888;
	font-weight: 600;
	flex: 1;
	margin-bottom: 0.7rem;
}

.gs-gs-edu-card-btn {
	display: block;
	text-align: center;
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal);
	text-decoration: none;
	border-top: 1px solid var(--border);
	padding-top: 0.55rem;
	transition: color 0.2s;
}

.gs-gs-edu-card-btn:hover {
	color: var(--primary);
}

  /* ─── CTA ICONS SECTION ─── */
.gs-cta-grid {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.gs-cta-item {
	flex: 1;
	min-width: 155px;
	max-width: 100%;
	text-align: center;
}

.gs-cta-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.gs-cta-icon svg {
	width: 40px;
	height: 40px;
	fill: #fff;
}

.gs-cta-title {
	font-size: 1rem;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.3;
	margin-bottom: 0.5rem;
}

.gs-cta-desc {
	font-size: 0.82rem;
	color: #777;
	line-height: 1.6;
	margin-bottom: 0.9rem;
}

  /* ─── Responsive ─── */
@media (max-width: 576px) {
	.gs-review-row, .gs-review-row.gs-img-right {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.gs-review-photo {
		width: 90px;
		height: 90px;
	}

	.gs-edu-card {
		min-width: 140px;
	}

	.gs-cta-item {
		min-width: 130px;
	}
}




/* FOOTER */
.footer {
	padding: 40px 0 20px;
}

.footer-column h3 {
	color: var(--primary);
	font-size: clamp(0.75rem, 1.5vw, 1rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: #4b5563;
	text-decoration: none;
	font-size: clamp(0.75rem, 1.5vw, 0.875rem);
	transition: color 0.2s ease;
	display: inline-block;
}

.footer-column ul li a:hover {
	color: #2563eb;
}

.footer-column ul li a.spread-word {
	color: var(--red);
	font-weight: 600;
}

.footer-bottom {
	border-top: 1px solid #e5e7eb;
	padding-top: 25px;
	margin-top: 40px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-logo-icon {
	width: 45px;
	height: 45px;
	background: #2563eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.footer-logo-icon::before {
	content: '';
	width: 16px;
	height: 16px;
	background: white;
	border-radius: 50%;
	position: absolute;
	top: 8px;
}

.footer-logo-icon::after {
	content: '';
	width: 28px;
	height: 18px;
	background: white;
	border-radius: 50% 50% 0 0;
	position: absolute;
	bottom: 6px;
}

.footer-logo span {
	font-size: 22px;
	font-weight: 600;
	color: #1f2937;
}

.copyright {
	color: #6b7280;
	font-size: 14px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	color: #4b5563;
	font-size: 20px;
	transition: color 0.2s ease;
	text-decoration: none;
}

.social-links a:hover {
	color: #2563eb;
}

.social-links .fa-facebook-f {
	color: #3b5998;
}

.social-links .fa-twitter {
	color: #1DA1F2;
}