/* =============================================================================
   Hire Inner Page Styles
   Extracted from template-parts/sections/new-hire-inner-*.php
   ============================================================================= */


/* =============================================================================
   Hero Panel — new-hire-inner-hero-panel.php
   ============================================================================= */

body{
background-color:#16161D;
font-family: 'Poppins', sans-serif;
}
main {
    gap: 0 !important;
}
header {
    color: #000;
    padding: 54px 0 25px !important;
    background: rgba(22, 22, 29, 0.90) !important;
    width: 98% !important;
    margin: 0 auto !important;
    margin-top: 15px !important;
    border-radius: 4px !important;
    font-family: 'Poppins', sans-serif !important;
}

#new_hire_inner_hero_panel {
	position: relative;
	overflow: hidden;
	background-color: #ff4d04;
}

#new_hire_inner_hero_panel .nhihp-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
}

#new_hire_inner_hero_panel::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
	opacity: 0;
	transition: opacity 0.2s ease;
}

#new_hire_inner_hero_panel .container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 620px;
}

#new_hire_inner_hero_panel .nhihp-content {
	width: 100%;
	max-width: 700px;
	padding: 90px 0;
}

#new_hire_inner_hero_panel .nhihp-heading {
	margin: 0 0 20px;
	font-size: 40px;
	font-weight: 300;
	line-height: 120%;
	letter-spacing: -0.02em;
	color: #1d1d1d;
}

#new_hire_inner_hero_panel .nhihp-heading span {
	font-weight: 700;
	color: #fff;
	display: block;
	font-size: 65px;
	line-height: 120%;
}

#new_hire_inner_hero_panel .nhihp-description {
	margin: 0 0 32px;
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	line-height: 120%;
}

#new_hire_inner_hero_panel .nhihp-description p {
	margin: 0;
}

#new_hire_inner_hero_panel .nhihp-description p + p {
	margin-top: 4px;
}

@media (max-width: 991px) {
	#new_hire_inner_hero_panel::before {
		opacity: 1;
	}

	#new_hire_inner_hero_panel .nhihp-bg {
		background-position: center 25%;
	}

	#new_hire_inner_hero_panel .container {
		min-height: 0;
		align-items: flex-end;
		padding-top: 180px;
		padding-bottom: 40px;
	}

	#new_hire_inner_hero_panel .nhihp-content {
		max-width: 100%;
		padding: 0;
	}

	#new_hire_inner_hero_panel .nhihp-heading {
		font-size: 28px;
	}

	#new_hire_inner_hero_panel .nhihp-description {
		margin-bottom: 24px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	#new_hire_inner_hero_panel .container {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	#new_hire_inner_hero_panel .nhihp-heading {
		font-size: 24px;
	}
}


/* =============================================================================
   Slider Panel — new-hire-inner-slider-panel.php
   ============================================================================= */

#new_hire_inner_slider_panel {
	position: relative;
	overflow: hidden;
	padding: 64px 0;
}


#new_hire_inner_slider_panel .container {
	position: relative;
	z-index: 2;
}

#new_hire_inner_slider_panel .nhisp-heading {
	margin: 0 0 40px;
	text-align: center;
	font-size: 40px;
	font-weight: 300;
	line-height: 120%;
	color: #ff4d04;
}

#new_hire_inner_slider_panel .nhisp-heading strong,
#new_hire_inner_slider_panel .nhisp-heading span {
	font-weight: 700;
	color: #fff;
}

#new_hire_inner_slider_panel .nhisp-slider {
	position: relative;
	overflow: hidden;
	margin: 0 0 48px;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#new_hire_inner_slider_panel .nhisp-slider::before,
#new_hire_inner_slider_panel .nhisp-slider::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 3;
	pointer-events: none;
}

#new_hire_inner_slider_panel .nhisp-slider::before {
	left: 0;
}

#new_hire_inner_slider_panel .nhisp-slider::after {
	right: 0;
}

#new_hire_inner_slider_panel .nhisp-track-wrap {
	display: flex;
	width: max-content;
	animation: nhisp-scroll 40s linear infinite;
}

#new_hire_inner_slider_panel .nhisp-track {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

#new_hire_inner_slider_panel .nhisp-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

#new_hire_inner_slider_panel .nhisp-icon img {
	width: 120px;
	height: 132px;
	object-fit: contain;
}

@keyframes nhisp-scroll {
	from {
		transform: translateX(0);
	}
	to {
		/* Exact measured width of one track (set via JS) rather than -50%,
		   which only lands seamlessly if both duplicated tracks are pixel-
		   identical in width — any drift there shows up as a gap at the seam. */
		transform: translateX(calc(-1 * var(--nhisp-track-width, 50%)));
	}
}

#new_hire_inner_slider_panel .nhisp-content {

	margin: 0 auto 32px;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: 120%;
	color: rgb(255, 255, 255);
}

#new_hire_inner_slider_panel .nhisp-content p {
	margin: 0;
}

#new_hire_inner_slider_panel .nhisp-content strong {
	font-weight: 700;
	color: #fff;
}

#new_hire_inner_slider_panel .nhisp-cta {
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	#new_hire_inner_slider_panel .nhisp-track-wrap {
		animation: none;
	}
}

@media (max-width: 767px) {
	#new_hire_inner_slider_panel {
		padding: 48px 0;
	}

	#new_hire_inner_slider_panel::before,
	#new_hire_inner_slider_panel::after {
		display: none;
	}

	#new_hire_inner_slider_panel .nhisp-heading {
		margin-bottom: 28px;
		font-size: 22px;
	}


	#new_hire_inner_slider_panel .nhisp-content {
		font-size: 14px;
	}
}

section#new_home_three_column_panel {
    padding-top: 80px;
}

/* =============================================================================
   Profiles Panel — new-hire-inner-profiles-panel.php
   Card spec pulled from Figma: About us page v2, node 4602:4772
   ============================================================================= */

#new_hire_inner_profiles_panel {
	position: relative;
	padding: 80px 0;
}

#new_hire_inner_profiles_panel .nhipp-header {
	margin: 0 auto 48px;
	text-align: center;
}

#new_hire_inner_profiles_panel .nhipp-heading {
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 130%;
	color: #fff;
}

#new_hire_inner_profiles_panel .nhipp-heading strong,
#new_hire_inner_profiles_panel .nhipp-heading span {
	font-weight: 700;
	color: #ff4d04;
}

#new_hire_inner_profiles_panel .nhipp-subheading {
	margin: 8px 0 0;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
}

#new_hire_inner_profiles_panel .nhipp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

#new_hire_inner_profiles_panel .nhipp-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-family: "Poppins", sans-serif;
	transition: border-color 0.3s ease;
}

#new_hire_inner_profiles_panel .nhipp-card:hover {
	border-color: #ff4d04;
}

#new_hire_inner_profiles_panel .nhipp-card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
}

#new_hire_inner_profiles_panel .nhipp-card-bg::after {
	content: "";
	position: absolute;
	inset: 0;
}

#new_hire_inner_profiles_panel .nhipp-card > *:not(.nhipp-card-bg) {
	position: relative;
	z-index: 1;
}

#new_hire_inner_profiles_panel .nhipp-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 110px;
	padding: 0 16px;
	border-radius: 4px;
}

#new_hire_inner_profiles_panel .nhipp-card-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	flex: 0 1 40%;
	padding: 16px 0;
}

#new_hire_inner_profiles_panel .nhipp-name {
	margin: 0;
	font-size: 22px;
	font-weight: 400;
	line-height: 28px;
	color: #f4f8f5;
}

#new_hire_inner_profiles_panel .nhipp-role {
	margin: 0;
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
	color: #f4f8f5;
}

#new_hire_inner_profiles_panel .nhipp-photo {
	flex: 0 0 56%;
	align-self: stretch;
	overflow: hidden;
	border-radius: 4px;
}

#new_hire_inner_profiles_panel .nhipp-photo img {
	width: 186px;
    height: 110px;
    object-fit: contain;
}

#new_hire_inner_profiles_panel .nhipp-exp {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 4px;
	color: #fff;
	transition: background-color 0.3s ease;
}

#new_hire_inner_profiles_panel .nhipp-exp svg {
	flex-shrink: 0;
	color: #ff4d04;
	transition: color 0.3s ease;
}

#new_hire_inner_profiles_panel .nhipp-exp-value {
	font-size: 22px;
	font-weight: 400;
	line-height: 28px;
}

#new_hire_inner_profiles_panel .nhipp-exp-suffix {
	margin-left: 4px;
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
}

#new_hire_inner_profiles_panel .nhipp-card:hover .nhipp-exp {
	background-color: #ff4d04;
}

#new_hire_inner_profiles_panel .nhipp-card:hover .nhipp-exp svg path {
	stroke: #fff;
}

#new_hire_inner_profiles_panel .nhipp-skills {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#new_hire_inner_profiles_panel .nhipp-skills-label,
#new_hire_inner_profiles_panel .nhipp-abilities-label {
	font-size: 11px;
	font-weight: 400;
	line-height: 12px;
	color: #fff;
}

#new_hire_inner_profiles_panel .nhipp-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

#new_hire_inner_profiles_panel .nhipp-tag {
	padding: 5px 10px;
	border-radius: 4px;
	background-color: rgba(22, 22, 29, 0.8);
	color: #fff;
	font-size: 11px;
	font-weight: 400;
	line-height: 12px;
}

#new_hire_inner_profiles_panel .nhipp-abilities {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#new_hire_inner_profiles_panel .nhipp-ability {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

#new_hire_inner_profiles_panel .nhipp-ability-name {
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
	color: #fff;
}

#new_hire_inner_profiles_panel .nhipp-ability-bar {
	position: relative;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	transition: width 0.5s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
}

#new_hire_inner_profiles_panel .nhipp-card:hover .nhipp-ability-bar {
	width: 100%;
	height: 2px;
	border-radius: 0;
	background-color: transparent;
}

#new_hire_inner_profiles_panel .nhipp-ability-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #ff4d04;
	transition: width 0.5s ease 0.15s;
}

#new_hire_inner_profiles_panel .nhipp-card:hover .nhipp-ability-fill {
	width: var(--nhipp-fill, 0%);
}

#new_hire_inner_profiles_panel .nhipp-ability-score {
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	margin-left: 12px;
	white-space: nowrap;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease 0.3s;
}

#new_hire_inner_profiles_panel .nhipp-card:hover .nhipp-ability-score {
	opacity: 1;
}

#new_hire_inner_profiles_panel .nhipp-price {
	position: relative;
	margin-top: auto;
	min-height: 64px;
	overflow: hidden;
	border-radius: 4px;
}

#new_hire_inner_profiles_panel .nhipp-price-placeholder,
#new_hire_inner_profiles_panel .nhipp-price-real {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 10px;
	color: #fff;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

#new_hire_inner_profiles_panel .nhipp-price-amount {
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -0.8px;
}

#new_hire_inner_profiles_panel .nhipp-price-suffix {
	font-size: 22px;
	font-weight: 400;
}

#new_hire_inner_profiles_panel .nhipp-price-real {
	position: absolute;
	inset: 0;
	background-color: #ff4d04;
	opacity: 0;
	transform: translateY(100%);
}

#new_hire_inner_profiles_panel .nhipp-card:hover .nhipp-price-placeholder {
	opacity: 0;
}

#new_hire_inner_profiles_panel .nhipp-card:hover .nhipp-price-real {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1023px) {
	#new_hire_inner_profiles_panel .nhipp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Always show the "revealed" state by default — on desktop too, not just touch. */
#new_hire_inner_profiles_panel .nhipp-card {
	border-color: #ff4d04;
}

#new_hire_inner_profiles_panel .nhipp-exp {
	background-color: #ff4d04;
}

#new_hire_inner_profiles_panel .nhipp-exp svg path {
	stroke: #fff;
}

#new_hire_inner_profiles_panel .nhipp-ability-bar {
	width: 100%;
	height: 2px;
	border-radius: 0;
	background-color: transparent;
}

#new_hire_inner_profiles_panel .nhipp-ability-fill {
	width: var(--nhipp-fill, 0%);
}

#new_hire_inner_profiles_panel .nhipp-ability-score {
	opacity: 1;
}

#new_hire_inner_profiles_panel .nhipp-price-placeholder {
	opacity: 0;
}

#new_hire_inner_profiles_panel .nhipp-price-real {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 640px) {
	#new_hire_inner_profiles_panel {
		padding: 56px 0;
	}

	#new_hire_inner_profiles_panel .nhipp-grid {
		grid-template-columns: 1fr;
	}

	#new_hire_inner_profiles_panel .nhipp-heading {
		font-size: 24px;
	}

	#new_hire_inner_profiles_panel .nhipp-price-amount {
		font-size: 32px;
	}

	#new_pricing_table_panel{
		padding:20px 0 0;
	}
}


/* =============================================================================
   FAQ Panel — new-hire-inner-faq-panel.php
   Outer "Steps" row spec pulled from Figma: About us page v2, node 4583:2996
   ============================================================================= */

#new_hire_inner_faq_panel {
	padding: 80px 0;
}

#new_hire_inner_faq_panel .nhifp-heading {
	margin: 0 0 48px;
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	font-weight: 300;
	letter-spacing: -0.8px;
	line-height: 48px;
	color: #ff4d04;
}

#new_hire_inner_faq_panel .nhifp-heading strong,
#new_hire_inner_faq_panel .nhifp-heading span {
	font-weight: 600;
	color: #f4f8f5;
}

#new_hire_inner_faq_panel .nhifp-steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#new_hire_inner_faq_panel .nhifp-step {
	border-radius: 4px;
	overflow: hidden;
}

#new_hire_inner_faq_panel .nhifp-step-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px;
	border: 0;
	border-radius: 4px;
	background-color: #16161d;
	cursor: pointer;
	font-family: "Poppins", sans-serif;
	transition: background-color 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-step-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

#new_hire_inner_faq_panel .nhifp-step-num {
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	color: #ff4d04;
	transition: color 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-step-divider {
	width: 1px;
	height: 28px;
	background-color: rgba(255, 77, 4, 0.6);
	transition: background-color 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-step-title {
	font-size: 22px;
	font-weight: 500;
	line-height: 28px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #ff4d04;
	transition: color 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-step-toggle {
	position: relative;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 4px;
	background-color: #ff4d04;
	transition: background-color 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-step-toggle-hbar,
#new_hire_inner_faq_panel .nhifp-step-toggle-vbar {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #16161d;
	border-radius: 1px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-step-toggle-hbar {
	width: 16px;
	height: 2px;
	transform: translate(-50%, -50%);
}

#new_hire_inner_faq_panel .nhifp-step-toggle-vbar {
	width: 2px;
	height: 16px;
	transform: translate(-50%, -50%);
}

#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-header {
	background-color: #ff4d04;
}

#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-num,
#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-title {
	color: #f4f8f5;
}

#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-divider {
	background-color: rgba(244, 248, 245, 0.6);
}

#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-toggle {
	background-color: #f4f8f5;
}

#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-toggle-hbar,
#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-toggle-vbar {
	background-color: #ff4d04;
}

#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-toggle-vbar {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

#new_hire_inner_faq_panel .nhifp-step-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

#new_hire_inner_faq_panel .nhifp-step.is-open .nhifp-step-panel {
	/* A generous fixed cap (not the exact scrollHeight) so opening/closing an
	   inner FAQ doesn't need to recompute this panel's own height. */
	max-height: 3000px;
}

#new_hire_inner_faq_panel .nhifp-faqs {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px 20px;
	background-color: #16161d;
	border-radius: 0 0 4px 4px;
}

#new_hire_inner_faq_panel .nhifp-faq {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#new_hire_inner_faq_panel .nhifp-faq:last-child {
	border-bottom: 0;
}

#new_hire_inner_faq_panel .nhifp-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 16px 0;
	border: 0;
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	transition: color 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-faq.is-open .nhifp-faq-question {
	color: #ff4d04;
}

#new_hire_inner_faq_panel .nhifp-faq-chevron {
	flex-shrink: 0;
	color: #ff4d04;
	transition: transform 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-faq.is-open .nhifp-faq-chevron {
	transform: rotate(180deg);
}

#new_hire_inner_faq_panel .nhifp-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

#new_hire_inner_faq_panel .nhifp-faq.is-open .nhifp-faq-answer {
	max-height: 800px;
}

#new_hire_inner_faq_panel .nhifp-faq-answer-inner {
	padding: 4px 16px 20px;
	background-color: #030303;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	color: rgba(255, 255, 255, 0.8);
}

#new_hire_inner_faq_panel .nhifp-faq-answer-inner p {
	margin: 0;
	padding-top: 16px;
}

@media (max-width: 640px) {
	#new_hire_inner_faq_panel {
		padding: 0;
	}
	#ai_academy_cta_panel .inner{
		min-height: auto !important;
	}

	#new_hire_inner_faq_panel .nhifp-heading {
		margin-bottom: 32px;
		font-size: 26px;
		line-height: 32px;
	}

	#new_hire_inner_faq_panel .nhifp-step-header {
		padding: 16px;
	}

	#new_hire_inner_faq_panel .nhifp-step-left {
		gap: 14px;
	}

	#new_hire_inner_faq_panel .nhifp-step-num {
		font-size: 22px;
		line-height: 28px;
	}

	#new_hire_inner_faq_panel .nhifp-step-title {
		font-size: 14px;
	}

	#new_hire_inner_faq_panel .nhifp-step-toggle {
		width: 36px;
		height: 36px;
	}
}
