/**
 * TalentLeap Hireox – core styles (valid, self-contained)
 */

:root {
	--themeht-primary-color: #014e4e;
	--themeht-secondary-color: #f9d67b;
	--themeht-dark-color: #222222;
	--themeht-body-color: #666666;
	--themeht-white-color: #ffffff;
	--themeht-light-color: #eaeef1;
	--themeht-body-font: "Public Sans", sans-serif;
	--themeht-heading-font: "Chivo", sans-serif;
	--logo-desktop-height: 48px;
	--logo-footer-height: 56px;
	--logo-max-width: 220px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--themeht-body-font);
	font-size: 16px;
	line-height: 26px;
	color: var(--themeht-body-color);
	background: var(--themeht-white-color);
	overflow-x: hidden;
}

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

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

a:hover { color: var(--themeht-primary-color); }

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--themeht-heading-font);
	font-weight: 500;
	color: var(--themeht-dark-color);
	margin-top: 0;
	margin-bottom: 20px;
}

.page-wrapper { overflow-x: hidden; }

/* ─── Main header bar ─── */
.header.header-2 {
	padding: 0;
}

.header-2 #header-wrap {
	position: relative;
	z-index: 999;
	padding: clamp(16px, 2vw, 24px) 0 0;
}

.tlh-header-bar {
	padding: 14px 24px;
	background-color: var(--themeht-light-color);
	border-radius: 15px;
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.04);
}

#header-wrap.fixed-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	padding-top: 0;
}

#header-wrap.fixed-header .tlh-header-bar {
	background: var(--themeht-white-color);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	border-radius: 0 0 15px 15px;
}

.ht-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	width: 100%;
}

.navbar-brand.logo img,
.navbar-brand.logo .custom-logo,
.tlh-logo--header {
	max-height: var(--logo-desktop-height);
	max-width: var(--logo-max-width);
	width: auto;
	height: auto;
	object-fit: contain;
}

.tlh-logo--footer,
.tlh-footer__logo .footer-logo,
.tlh-footer__logo .custom-logo {
	max-height: var(--logo-footer-height);
	max-width: min(240px, 100%);
	width: auto;
	height: auto;
	object-fit: contain;
	background: none;
}

/* Light logo on dark footer (transparent PNG) */
.tlh-footer__logo .tlh-logo--footer {
	filter: brightness(0) invert(1);
}

.navigation-top {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-nav .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav .menu > li {
	position: relative;
	list-style: none;
	margin: 0 6px;
}

.main-nav .menu > li > a {
	display: block;
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	padding: 6px 20px 5px;
	border-radius: 100px;
	color: var(--themeht-dark-color);
}

.main-nav .menu > li > a:hover,
.main-nav .menu > li.current-menu-item > a {
	background-color: var(--themeht-primary-color);
	color: var(--themeht-white-color) !important;
}

.right-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
	flex-shrink: 0;
}

.nav-menu-toggle {
	display: none;
}

/* ─── Buttons ─── */
.themeht-btn-warp {
	display: inline-flex;
	align-items: center;
	transition: all 0.4s ease;
}

a.themeht-btn .btn-text {
	padding: 16px 28px 15px;
	border-radius: 100px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	font-family: var(--themeht-heading-font);
	line-height: 1.2;
}

a.primary-btn .btn-text {
	background: var(--themeht-primary-color);
	color: var(--themeht-white-color);
}

a.secondary-btn .btn-text {
	background: var(--themeht-secondary-color);
	color: var(--themeht-dark-color);
}

.themeht-btn-warp .btn-icon1,
.themeht-btn-warp .btn-icon2 {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background: var(--themeht-primary-color);
	color: var(--themeht-white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.4s ease;
	--icon-width: 50px;
}

.themeht-btn.secondary-btn .btn-icon1,
.themeht-btn.secondary-btn .btn-icon2 {
	background: var(--themeht-secondary-color);
	color: var(--themeht-dark-color);
}

.themeht-btn-warp .btn-icon1 {
	transform: scale(0.5);
	margin-right: calc(var(--icon-width) * -1);
	opacity: 0;
}

.themeht-btn-warp:hover .btn-icon1 {
	transform: scale(1);
	margin-right: 0;
	opacity: 1;
}

.themeht-btn-warp .btn-icon2 {
	opacity: 1;
}

.themeht-btn-warp:hover .btn-icon2 {
	transform: scale(0.5);
	margin-left: calc(var(--icon-width) * -1);
	opacity: 0;
}

/* ─── Section titles ─── */
.theme-title { margin-bottom: 40px; }

.theme-title p {
	display: inline-block;
	margin-bottom: 15px !important;
	padding: 10px 15px 8px;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	background: var(--themeht-light-color);
	border-radius: 5px;
	color: var(--themeht-dark-color);
	font-weight: 500;
}

.theme-title h2 { font-size: 46px; line-height: 56px; }

.theme-title.text-center { text-align: center; }

.section-desc {
	max-width: 700px;
	margin: 12px auto 0;
	color: var(--themeht-body-color);
}

/* ─── Hero / Banner ─── */
.banner-slider-one {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.banner-slider-one .swiper-slide {
	position: relative;
	min-height: 620px;
}

.banner-slider-one .slider-img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
}

.banner-slider-one .banner-content {
	position: relative;
	z-index: 2;
	padding: 200px 60px 180px 80px;
}

.banner-slider-one .banner-content::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 30%, transparent 100%);
	z-index: -1;
}

.banner-slider-one .banner-content h1 {
	color: var(--themeht-white-color) !important;
	font-size: 72px !important;
	line-height: 82px !important;
	text-transform: uppercase;
	margin-bottom: 28px !important;
}

.banner-content h6 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--themeht-white-color);
	display: inline-flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	background: rgba(255, 255, 255, 0.2);
	padding: 6px 12px;
	border-radius: 6px;
	margin-bottom: 20px !important;
}

.banner-content h6 span {
	background: var(--themeht-white-color);
	color: var(--themeht-dark-color);
	padding: 2px 8px;
	border-radius: 5px;
	font-weight: 600;
}

.banner-slider-one .swiper-button-prev,
.banner-slider-one .swiper-button-next {
	position: absolute;
	bottom: 30px !important;
	top: auto !important;
	width: 40px !important;
	height: 40px !important;
	background: rgba(255, 255, 255, 0.35) !important;
	backdrop-filter: blur(4px);
	border-radius: 50%;
}

.banner-slider-one .swiper-button-next { right: 40px !important; left: auto !important; }
.banner-slider-one .swiper-button-prev { right: 90px !important; left: auto !important; }

.banner-slider-one .swiper-button-prev::after,
.banner-slider-one .swiper-button-next::after {
	font-size: 14px !important;
	color: #fff !important;
}

/* Stats + chart */
.banner-statistics {
	background: var(--themeht-light-color);
	border-radius: 20px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.Statistics-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 10px;
	background: var(--themeht-primary-color);
	color: #fff;
	font-size: 24px;
	margin-bottom: 24px;
}

.banner-statistics p {
	font-size: 22px;
	line-height: 1.3 !important;
	color: var(--themeht-dark-color);
	font-weight: 500;
	margin-bottom: 0;
}

.Statistics-img-warp {
	display: flex;
	align-items: center;
	margin: 16px 0;
	padding-bottom: 16px;
	border-bottom: 1px solid #d5d5d5;
}

.Statistics-img-warp img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: -8px;
	border: 2px solid #fff;
}

.Statistics-bottom {
	display: flex;
	justify-content: space-between;
	font-size: 17px;
	color: var(--themeht-dark-color);
}

/* ─── Services ─── */
.service-item.style-1 {
	display: flex;
	align-items: flex-start;
	position: relative;
	padding: 20px 0 40px;
	border-bottom: 1px solid #d5d5d5;
}

.service-item.style-1 .service-icon {
	padding-right: 20px;
	flex-shrink: 0;
}

.service-item.style-1 .service-icon i {
	font-size: 48px;
	color: var(--themeht-primary-color);
}

.service-item.style-1 .service-title h4 {
	margin-bottom: 8px;
	font-size: 32px;
	line-height: 1.2;
}

.service-item.style-1 .service-title h4 a {
	color: var(--themeht-dark-color);
}

.service-item.style-1 .service-image {
	position: absolute;
	top: 10px;
	right: 0;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: 0.4s ease;
}

.service-item.style-1:hover .service-image {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.service-item.style-1 .service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ─── Portfolio ─── */
.portfolio-item.style-1 {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 0;
}

.portfolio-item.style-1::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 65%;
	background: linear-gradient(0deg, rgba(1, 78, 78, 1) 0%, rgba(1, 78, 78, 0.6) 40%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

.portfolio-item.style-1 img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}

.portfolio-item.style-1 .portfolio-desc {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	text-align: center;
	padding: 20px;
	color: #fff;
}

.portfolio-item.style-1 .portfolio-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	background: var(--themeht-secondary-color);
	color: var(--themeht-dark-color);
	font-size: 28px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio-item.style-1 h4 a,
.portfolio-item.style-1 .portfolio-cat {
	color: var(--themeht-white-color);
}

.portfolio-item.style-1 h4 { font-size: 24px; margin-bottom: 6px; }

.portfolio-item.style-1 .portfolio-cat {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.arrow-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px 16px 22px;
	background: #fff;
	color: var(--themeht-dark-color);
	border-radius: 15px 15px 0 0;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	position: relative;
}

/* ─── Testimonials ─── */
.testimonial.style-1 {
	display: flex;
	align-items: center;
	gap: 40px;
}

.testimonial.style-1 img {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.testimonial.style-1 p {
	font-size: 22px;
	line-height: 1.5;
	font-style: italic;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.testimonial.style-1 h4,
.testimonial.style-1 span {
	color: #fff;
}

.testimonial.style-1 span {
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
}

/* ─── Pricing ─── */
.price-table.style1 {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 20px;
	padding: 50px 30px;
	text-align: center;
	height: 100%;
	position: relative;
}

.price-table.style1.popular {
	border-color: var(--themeht-primary-color);
	box-shadow: 0 20px 50px rgba(1, 78, 78, 0.12);
}

.price-table .price-value h2 {
	font-size: 52px;
	color: var(--themeht-primary-color);
	margin: 16px 0 4px;
}

.price-table .price-list {
	list-style: none;
	padding: 0;
	margin: 28px 0;
	text-align: left;
}

.price-table .price-list li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.price-table .price-list li i {
	color: var(--themeht-primary-color);
	margin-right: 8px;
}

/* ─── Team ─── */
.team-member.style-1 {
	text-align: center;
	background: var(--themeht-light-color);
	border-radius: 15px;
	padding: 30px 24px;
}

.team-member.style-1 .team-images {
	margin: 0 auto 20px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
}

.team-member.style-1 .team-images img,
.team-member.style-1 img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.team-member.style-1 h4 { font-size: 22px; margin-bottom: 6px; }

.team-member.style-1 span {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--themeht-body-color);
}

.team-social-icon {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
	padding: 0;
	list-style: none;
}

.team-social-icon a {
	width: 38px;
	height: 38px;
	line-height: 38px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--themeht-dark-color);
}

.team-social-icon a:hover {
	background: var(--themeht-primary-color);
	color: #fff;
}

/* ─── Blog cards ─── */
.post-card.style-1 {
	border: 1px solid #d5d5d5;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}

.post-card.style-1 .post-image img {
	width: 100%;
	aspect-ratio: 16/11;
	object-fit: cover;
}

.post-card.style-1 .post-desc {
	padding: 24px 28px;
}

.post-card.style-1 .post-title h4 {
	font-size: 22px;
	line-height: 1.35;
	margin-bottom: 8px;
}

.post-card.style-1 .post-title a { color: var(--themeht-dark-color); }

/* ─── Lists ─── */
.list-icon.style1 li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 17px;
}

.list-icon.style1 li i {
	color: var(--themeht-primary-color);
	flex-shrink: 0;
	margin-top: 4px;
}

/* ─── Footer ─── */
.footer.primary-bg {
	background: var(--themeht-primary-color) !important;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 20px;
	border-radius: 20px 20px 0 0;
}

.footer.primary-bg a { color: rgba(255, 255, 255, 0.85); }
.footer.primary-bg a:hover { color: var(--themeht-secondary-color); }
.footer .widget-title { color: #fff; font-size: 22px; margin-bottom: 24px; }
.footer-widget.widget ul li { list-style: none; margin-bottom: 10px; }

.secondary-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.subscribe-btn {
	padding: 14px 28px;
	border: none;
	border-radius: 100px;
	background: var(--themeht-primary-color);
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	cursor: pointer;
	font-family: var(--themeht-heading-font);
}

/* ─── Utilities ─── */
.white-bg { background: #fff; }
.light-bg { background: var(--themeht-light-color); }
.primary-bg { background: var(--themeht-primary-color); }
.secondary-bg { background: var(--themeht-secondary-color); }

.section-padding { padding: 100px 0; }

/* Swiper nav */
.swiper-button-prev,
.swiper-button-next { color: var(--themeht-primary-color); }

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 20px; font-weight: 700; }
