 @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Montserrat:wght@400;600;700&display=swap');

* {
	scroll-behavior: smooth;
}

:root {
	/* Branding Colors */
	--hayman-blue-teal: #1eafb8;
	--hayman-green-lime: #64ac4c;
	--hayman-dark-green: #599847;
	--hayman-text-dark: #333333;

	/* Banner/Utility Colors */
	--hayman-warning: #ff8c00;
	--hayman-dark-overlay: #000626;
	--hayman-dark: var(--hayman-dark-overlay);
	--hayman-primary: var(--hayman-green-lime);
	--hayman-body-bg: #f8f9fa;
	--hayman-highlight-teal: #25cdc7;
	--hayman-white: #ffffff;
	--hayman-light-text-color: #5d667c;
	--hayman-border: #E4E4E4;
	--hayman-light-bg: #F5F7F9;
	--hayman-black: #000000;

	/* Fonts */
	--bs-font-sans-serif: 'Lato', sans-serif;
	--bs-font-monospace: 'Montserrat', sans-serif;
	--hayman-font-primary: 'Montserrat', sans-serif;
	--hayman-font-secondary: 'Lato', sans-serif;

	/* Hayman Gradiant */
	--hayman-gradiant-right: linear-gradient(to right, var(--hayman-blue-teal) 0%, #1eafb8 30%, var(--hayman-green-lime) 100%);
	--hayman-gradiant-subscribe: linear-gradient(to right, var(--hayman-green-lime) 0%, var(--hayman-blue-teal) 100%);
	/* body font size / default font size */
	--font-size-haymen-default: 16px;

	/* Hayman Heading font */
	--font-size-heading-default: 46px;

	/* container width */
	--hayman-container-width-100: 100%;
	--hayman-container-width-98: 98%;

	/* Custom CSS Variables - Added for the Accordion/Services Section */
	--width: 100px;
	--expanded-min-width: 300px;

	/* Custom Color Variables - Added for existing CSS selectors (Adjust these to your exact theme if different) */
	--clr-white: var(--hayman-white);
	--clr-primary-dark: var(--hayman-dark);
	--clr-accent-gold: var(--hayman-warning);
}

@media(min-width:767px) and (max-width:1299px) {
	:root {
		--font-size-haymen-default: 14px;
		--font-size-heading-default: 42px;
	}
}

@media(max-width:767px) {
	:root {
		--font-size-haymen-default: 12px;
		--font-size-heading-default: 32px;
	}
}

/* container width */
.container,
.container-fluid {
	max-width: var(--hayman-container-width-100);
}

/* General Body and Font Assignment */
body {
	font-family: var(--hayman-font-secondary);
	color: var(--hayman-text-dark);
	background-color: var(--hayman-white);
	font-size: var(--font-size-haymen-default);
	line-height: normal;
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: var(--font-size-heading-default);
	line-height: normal;
	font-weight: 600;
	font-style: var(--hayman-font-primary);
}

/* ======================= Hayman Button Style ======================= */
.btn-pill {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background: var(--hayman-gradiant-right);
	color: var(--hayman-white);
	padding: 0.6rem 0.6rem 0.6rem 2rem;
	border-radius: 50px;
	font-size: var(--font-size-haymen-default);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-pill .btn-icon-circle-hero {
	background: var(--hayman-white);
	color: var(--hayman-dark-green);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-pill:hover {
	background: var(--hayman-green-lime);
	color: var(--hayman-white);
}

.btn-pill:hover .btn-icon-circle-hero {
	transform: rotate(45deg);
	background-color: var(--hayman-white);
}

/* ======================= Hayman Button Secondary Style ======================= */
.btn-pill-secondary {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background: var(--hayman-white);
	color: var(--hayman-dark-green);
	padding: 0.6rem 0.6rem 0.6rem 2rem;
	border-radius: 50px;
	font-size: var(--font-size-haymen-default);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-pill-secondary .btn-icon-circle-hero {
	background: var(--hayman-gradiant-right);
	color: var(--hayman-white);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-pill-secondary:hover {
	background: var(--hayman-gradiant-right);
	color: var(--hayman-white);
}

.btn-pill-secondary:hover .btn-icon-circle-hero {
	transform: rotate(45deg);
	background: var(--hayman-white);
	color: var(--hayman-dark-green);
}

/* ======================= Highlight Title Styles ======================= */
.hayman-intro-highlight {
	background: var(--hayman-white);
	display: inline-block;
	color: var(--hayman-light-text-color);
	padding: 8px 20px;
	border-radius: 20px;
	letter-spacing: 2px;
	font-weight: 500;
}

/* Top Bar Styles */
.top-bar-gradient {
	background: var(--hayman-gradiant-right);
}

/* ======================= Section title style ======================= */
.section-heading {
	font-family: var(--hayman-font-primary);
	color: var(--hayman-text-dark);
	font-size: var(--font-size-heading-default);
	font-weight: 600;
	line-height: normal;
	margin-bottom: 1rem;
}

/* ======================= Highlight Title Styles ======================= */
.hayman-text-highlight {
	font-weight: 400;
	position: relative;
	z-index: 2;
	display: inline-block;
}

.hayman-text-highlight:before {
	content: '';
	background: var(--hayman-highlight-teal);
	height: 8px;
	width: 100%;
	position: absolute;
	bottom: 8px;
	z-index: -1;
}

.hayman-text-highlight.banner:before {
	bottom: 15px;
}

/* ======================= SVG STYLES ======================= */

.svg-curve-base {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin-bottom: -0.75rem;
	z-index: 9;
}

@media (max-width: 767.98px) {
	.svg-curve-base {
		display: none;
	}
}

/* Top bar css */
.inner-top {
	background: var(--hayman-gradiant-right);
	color: var(--hayman-white);
	padding: 10px 40px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.top-bar-item {
    color: #fff;
}
/* Header Css */

header.hayman-header {
	padding: 15px 0;
}

header.hayman-header .hayman-logo {
	width: 70%;
}

/*  Hayman banner css */
.hayman-banner {
	max-width: var(--hayman-container-width-98);
	margin: auto;
	position: relative;
	background-position: center;
	background-size: cover;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hayman-banner .bg-overlay {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: .5;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.hayman-banner-content {
	position: relative;
	z-index: 9;
	color: var(--hayman-white);
	margin-left: 50px;
}

.hayman-banner-content .hayman-intro-highlight {
	background: var(--hayman-gradiant-right);
	color: var(--hayman-white);
}

.hayman-banner-content .main-heading {
	font-size: 74px;
}

.hayman-banner-content .text {
	font-size: 18px;
}

@media(min-width:767px)and (max-width:1299px) {
	.hayman-banner-content .main-heading {
		font-size: 64px;
	}

	.hayman-banner-content .text {
		font-size: 16px;
	}
}

@media (min-width: 576px) {
	.hayman-banner {
		height: 600px !important;
	}
}

@media (min-width: 992px) {
	.hayman-banner {
		height: 700px !important;
	}
}

.hayman-banner .fill-body {
	fill: var(--hayman-white) !important;
}

@media(max-width:767px){
    .hayman-banner-content .hayman-intro-highlight {
    padding: 5px 15px;
    letter-spacing: 0;
}
        .hayman-banner-content {
    margin-left: 0;
    padding: 15px;
}
    .hayman-banner-content .main-heading {
    font-size: 42px;
}
.hayman-banner-content .text {
    font-size: 16px;
    line-height: 1.6;
}
}

/* Hayman marquee section */
section.marquee-section {
	position: relative;
	z-index: 9;
}

@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.marquee-section .marquee-container {
	width: 100%;
	overflow: hidden;
	background-color: var(--hayman-dark);
	padding: 15px 0;
	white-space: nowrap;
}

.marquee-section .marquee-content {
	display: inline-block;
	animation: marquee-scroll 30s linear infinite;
}

.marquee-section .marquee-text {
	font-family: var(--bs-font-monospace);
	font-size: 36px;
	font-weight: 700;
	color: var(--hayman-white);
	display: inline;
}

.marquee-section .marquee-separator {
	font-size: 36px;
	color: var(--hayman-white);
	margin: 0 20px;
}

.marquee-section .marquee-container:hover .marquee-content {
	animation-play-state: paused;
}

@media (max-width:767px) {
	.marquee-section .marquee-separator {
		font-size: 24px;
	}

	.marquee-section .marquee-text {
		font-size: 24px;
	}
}

/* --- Hayman About Section Styles --- */
.hayman-about-section {
	background-color: var(--hayman-white);
	padding: 90px 0 !important;
	position: relative;
}

.hayman-about-section .hayman-image-container {
	position: relative;
	height: 550px;
	margin-top: 2rem;
}

.hayman-about-section .hayman-img-top,
.hayman-about-section .hayman-img-bottom {
	position: absolute;
	object-fit: cover;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.hayman-about-section .hayman-img-top {
	top: -10%;
	left: 45px;
	width: 60%;
	height: 80%;
	z-index: 2;
}

.hayman-about-section .hayman-img-bottom {
	bottom: 25px;
	right: 0;
	width: 50%;
	height: 80%;
	z-index: 3;
}

.hayman-about-section .hayman-quote-box {
	position: absolute;
	bottom: -10px;
	left: 45px;
	width: 56%;
	background-color: var(--hayman-white);
	padding: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border: 4px solid var(--hayman-blue-teal);
	z-index: 3;
	/* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
	border-radius: 10px;
}

.hayman-about-section .hayman-quote-mark i {
	font-size: 24px;
	line-height: 0;
	color: var(--hayman-blue-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hayman-white);
	vertical-align: top;
	margin-right: 0.25rem;
	height: 40px;
	width: 40px;
	position: absolute;
	top: -25px;
}

.hayman-about-section .hayman-quote-box p {
	color: var(--hayman-light-text-color);
}

.hayman-about-section .hayman-quote-author {
	font-weight: 600;
	font-style: normal;
	color: var(--hayman-text-dark);
	margin-bottom: 0;
	font-size: 0.9rem;
}

.hayman-about-section .hayman-subtext {
	font-family: var(--hayman-font-secondary);
	color: #5d667c;
	font-size: 1.1rem;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 2rem;
}

.hayman-about-section .hayman-about-content {
	padding: 0 30px;
}

.hayman-about-section ul#myTab {
	gap: 5px;
	border: none;
}

.hayman-about-section .nav-link {
	padding: 15px 20px;
	border-radius: 8px;
	border: 1px solid var(--hayman-border) !important;
	background: transparent;
	color: var(--hayman-light-text-color);
}

.hayman-about-section .nav-link:hover,
.hayman-about-section .nav-link.active {
	background: var(--hayman-dark);
	background-color: var(--hayman-dark) !important;
	color: var(--hayman-white) !important;
	font-weight: 500;
}

.hayman-about-section .btn-text-highlight {
	color: var(--hayman-highlight-teal);
}

.hayman-about-section .hayman-read-more {
	color: var(--hayman-highlight-teal);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	margin-top: 1rem;
}

.hayman-about-section .hayman-read-more i {
	transition: all 0.3s ease;
	margin-left: 0.5rem;
}

.hayman-about-section .hayman-read-more:hover i {
	margin-left: 5px;
}


@media (max-width: 991.98px) {
	.hayman-about-section .hayman-image-container {
		height: auto;
		margin-top: 0;
		position: static;
	}

	.hayman-about-section .hayman-img-top,
	.hayman-about-section .hayman-img-bottom {
		position: static;
		width: 100%;
		height: auto;
		margin-bottom: 1rem;
	}

	.hayman-about-section .hayman-img-top {
		display: none;
	}

	.hayman-about-section .hayman-quote-box {
		position: relative;
		width: 100%;
		margin-top: 1rem;
		bottom: auto;
		left: auto;
	}
    .hayman-about-section {
    padding: 30px 0 !important;
}
.hayman-about-section .hayman-about-content {
    padding: 0;
}
}

/* Segment section */
.segments-section {
	background-color: var(--hayman-dark);
	color: var(--hayman-white);
}

.segments-section .segment-card {
	background-color: var(--hayman-white);
	color: var(--hayman-primary);
	padding: 40px;
	border-radius: 12px;
	min-height: 250px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.segments-section .segment-card:hover {
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}

.segments-section .segment-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	padding-bottom: 35px;
	border-bottom: 1px solid var(--hayman-border);
}

.segments-section .segment-card-icon-wrapper {
	background-color: var(--hayman-blue-teal);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	border: 3px solid var(--hayman-blue-teal);
	flex-shrink: 0;
}

.segments-section .segment-card-icon-wrapper i {
	color: var(--hayman-white);
	font-size: 28px;
}

.segments-section .segment-card-body .segment-card-heading {
	font-family: var(--hayman-font-primary);
	color: var(--hayman-dark);
	font-size: 24px;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	position: relative;
}

.segments-section .segment-card-body .segment-card-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: var(--hayman-blue-teal);
	opacity: 0.5;
}

.segments-section .segment-card-body p {
	margin-bottom: 1rem;
	padding-top: 15px;
	position: relative;
	z-index: 3;
	color: var(--hayman-light-text-color);
}

.segments-section .segment-card-action {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: var(--hayman-primary);
	color: var(--hayman-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	flex-shrink: 0;
}

.segments-section .segment-card-action:hover {
	background-color: var(--hayman-blue-teal);
}

.segments-section .segment-number {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 72px;
	font-weight: 800;
	color: rgba(30, 175, 184, 0.08);
	z-index: 1;
}

.segments-section .cta-icon {
	margin-bottom: 25px;
}

.segments-section .cta-card {
	background-color: var(--hayman-blue-teal);
	color: var(--hayman-white);
	padding: 40px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 250px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.segments-section .cta-card .cta-heading {
	font-family: var(--hayman-font-primary);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 35px;
}

.segments-section .cta-btn {
	background-color: var(--hayman-white);
	color: var(--hayman-primary);
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}

.segments-section .cta-btn:hover {
	background-color: var(--hayman-highlight-teal);
	color: var(--hayman-primary);
}

.segments-section .cta-icon i {
	font-size: 2.5rem;
	color: var(--hayman-white);
}

@media (max-width: 767px) {
	.segments-section .segment-card {
		padding: 20px;
		min-height: 250px;
	}

	.segments-section .segment-card-body .segment-card-heading {
		font-size: 20px;
	}
}

/* Why Hayman Section css */
.why-hayman {
	position: relative;
	padding: 40px 0;
}

.why-hayman .container,
.why-hayman .container-fluid {
	max-width: var(--hayman-container-width-98);
}

.why-hayman .why-inner {
	border: 1px solid #f0f0f0;
}

.why-hayman .why-content {
	height: 100%;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	padding: 40px;
}

.why-hayman .why-content i {
	font-size: 52px;
	color: var(--hayman-dark);
	margin-bottom: 15px;
}

.why-hayman .why-content .why-heading {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--hayman-text-dark);
}

.why-hayman .why-content p {
	flex-grow: 1;
	color: var(--hayman-light-text-color);
	margin-bottom: 20px;
}

.why-hayman .why-content a {
	text-decoration: none;
	color: var(--hayman-light-text-color);
	transition: color 0.3s;
}

.why-hayman .why-content a:hover {
	color: var(--hayman-primary);
}

.why-hayman .why-content a i {
	font-size: 14px;
	margin-left: 5px;
	color: var(--hayman-light-text-color);
	transition: margin-left 0.3s;
}

.why-hayman .why-content a:hover i {
	margin-left: 10px;
}

/* Hayman Products Css */
.hayman-products {
	position: relative;
	padding: 60px 0;
	background: var(--hayman-light-bg);
}

.hayman-products .container,
.hayman-products .container-fluid {
	max-width: var(--hayman-container-width-98);
}

.hayman-products .row.product-row {
	align-items: center;
	border-bottom: 3px solid var(--hayman-primary);
	padding-bottom: 15px;
	margin-bottom: 40px;
}

.hayman-products .product-card {
	position: relative;
	display: flex;
	justify-content: center;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 25px;
}

.hayman-products .product-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}

.hayman-products .product-name-box {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	bottom: 15px;
	padding: 10px 25px;
	color: var(--hayman-white);
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(2px);
	width: 88%;
	margin: auto;
	border-radius: 20px;
	align-items: center;
}

.hayman-products .product-name-box h4 {
	font-size: var(--font-size-haymen-default);
	margin: 0;
	font-weight: 700;
}

.hayman-products .product-name-box a i {
	width: 42px;
	height: 42px;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid var(--hayman-primary);
	color: var(--hayman-primary);
	transform: rotate(320deg) !important;
}

.hayman-products .product-icon-overlay {
	position: absolute;
	top: 15px;
	left: 25px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background-color: var(--hayman-primary);
	z-index: 10;
}

.hayman-products .product-icon-overlay i {
	font-size: 20px;
	color: var(--hayman-white);
}

.hayman-products .owl-carousel.product-carousel {
	padding: 0 10px;
}

.hayman-products .owl-carousel .item {
	padding: 0 5px;
}

/* Pcd & Third Party Both Section Css */
.trusted-partner-section {
	padding: 80px 0;
	font-family: var(--hayman-font-secondary);
	background-color: var(--hayman-white);
}

.trusted-partner-section .container,
.trusted-partner-section .container-fluid {
	max-width: var(--hayman-container-width-98);
}

.trusted-partner-section .partner-image-wrap {
	position: relative;
	height: 100%;
	min-height: 550px;
}

.trusted-partner-section .partner-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.trusted-partner-section .metric-overlay-box {
	position: absolute;
	width: 250px;
	padding: 20px;
	background-color: var(--hayman-dark);
	color: var(--hayman-white);
	border-radius: 5px;
	text-align: center;
	font-family: var(--hayman-font-primary);
}

.trusted-partner-section .metric-overlay-box h2 {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1;
}

.trusted-partner-section .metric-overlay-box p {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--hayman-white);
	margin: 5px 0 0 0;
}

.trusted-partner-section .metric-overlay-box i {
	font-size: 24px;
	margin-bottom: 10px;
}

.trusted-partner-section .metric-overlay-top {
	top: 50px;
	left: -20%;
}

.trusted-partner-section .metric-overlay-bottom {
	bottom: 50px;
	right: -40px;
}

.trusted-partner-section .partner-content-wrap {
	padding-left: 50px;
}

.trusted-partner-section .partner-description {
	color: var(--hayman-light-text-color);
	border-left: 3px solid var(--hayman-primary);
	padding-left: 15px;
	margin-bottom: 40px;
}

.trusted-partner-section .progress-item {
	margin-bottom: 25px;
}

.trusted-partner-section .progress-label {
	font-size: 14px;
	color: var(--hayman-text-dark);
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
}

.trusted-partner-section .progress-bar-wrap {
	display: flex;
	align-items: center;
	background-color: var(--hayman-body-bg);
	border-radius: 25px;
	padding: 15px 20px;
	border: 1px solid var(--hayman-border);
}

.trusted-partner-section .stats-desc {
	text-align: start;
}

.trusted-partner-section .progress-bar-line {
	flex-grow: 1;
	height: 10px;
	background-color: var(--hayman-body-bg);
	border-radius: 5px;
	overflow: hidden;
	margin-right: 15px;
}

.trusted-partner-section .progress-bar-fill {
	height: 100%;
	background-color: var(--hayman-blue-teal);
	border-radius: 5px;
}

.trusted-partner-section .progress-percentage {
	font-size: 16px;
	color: var(--hayman-text-dark);
	font-weight: 600;
}

.trusted-partner-section .stats-box {
	border-right: 1px solid var(--hayman-border);
}

.trusted-partner-section .stats-box {
	text-align: center;
	margin-top: 50px;
	padding: 0 15px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.trusted-partner-section .stats-box:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: var(--hayman-border);
}

.trusted-partner-section .stats-icon-wrap {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.trusted-partner-section .stats-icon-wrap::before {
	content: '';
	position: absolute;
	width: 90%;
	height: 90%;
	background-color: var(--hayman-white);
	border-radius: 50%;
	border: 3px solid #f0f0f0;
	z-index: -1;
}

.trusted-partner-section .stats-icon-wrap i {
	font-size: 40px;
	color: var(--hayman-text-dark);
}

.trusted-partner-section .stats-icon-wrap.clients-outline {
	background: conic-gradient(var(--hayman-blue-teal) 0%,
			var(--hayman-blue-teal) 50%,
			var(--hayman-green-lime) 100%);
}

.trusted-partner-section .stats-icon-wrap.product-outline {
	background: conic-gradient(var(--hayman-green-lime) 0%,
			var(--hayman-green-lime) 50%,
			var(--hayman-blue-teal) 100%);
}

.trusted-partner-section .stats-icon-wrap.repeat-outline {
	background: conic-gradient(var(--hayman-green-lime) 0%,
			var(--hayman-green-lime) 50%,
			var(--hayman-blue-teal) 100%);
}

.trusted-partner-section .stats-value {
	font-family: var(--hayman-font-primary);
	font-size: 44px;
	font-weight: 700;
	color: var(--hayman-text-dark);
	margin-bottom: 5px;
	line-height: 1;
}

.trusted-partner-section .stats-label {
	font-size: var(--font-size-haymen-default);
	text-transform: uppercase;
	color: var(--hayman-light-text-color);
	font-weight: 500;
}

@media (max-width: 991px) {
    .trusted-partner-section {
        padding: 30px 0;
    }
	.trusted-partner-section .partner-image-wrap {
		min-height: auto;
		margin-bottom: 10px;
	}

	.trusted-partner-section .partner-content-wrap {
		padding-left: 0;
	}

	.trusted-partner-section .metric-overlay-top,
	.trusted-partner-section .metric-overlay-bottom {
        display: none !important;
		position: static;
		width: 45%;
		margin: 20px auto 0;
		display: inline-block;
		padding: 15px;
	}

	.trusted-partner-section .metric-overlay-top {
		margin-right: 5%;
	}

	.trusted-partner-section .metric-overlay-bottom {
		margin-left: 5%;
	}
}

@media (max-width: 767px) {
	.trusted-partner-section .stats-box:not(:last-child)::after {
		content: none;
	}

	.trusted-partner-section .stats-box {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

/* Product Category Section */
.hayman-process {
	background: var(--hayman-light-bg);
	color: var(--hayman-dark);
	padding: 80px 0;
}

.hayman-process .btn-custom-pill {
	background: var(--hayman-white);
	color: var(--hayman-dark-overlay);
}

.hayman-process .btn-custom-pill .btn-icon-circle-s2 {
	background-color: var(--hayman-dark-overlay);
	color: var(--hayman-white);
}

.hayman-process .btn-custom-pill:hover {
	background: var(--hayman-warning);
	color: var(--hayman-dark-overlay);
}

.hayman-process .service-accordion {
	overflow: hidden;
	padding: 0;
}

.hayman-process .service-list {
	background: transparent;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5.7px);
	-webkit-backdrop-filter: blur(5.7px);
	padding: 40px 20px;
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
}

.hayman-process .service-list .accordion-li {
	position: relative;
	display: flex;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
	padding: 20px 0;
}

/* .hayman-process .service-list .accordion-li:last-child {
        border-bottom: none;
    } */

.hayman-process .accordion-title {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 50px;
	width: 100%;
	transition: all 0.3s ease;
}

.hayman-process .accrodion-p {
	line-height: 1.4;
	color: var(--hayman-light-text-color);
}

.hayman-process .list-box li {
	line-height: 1.4;
	margin-bottom: 10px;
	color: var(--hayman-light-text-color);
}

.hayman-process .service-list .accordion-li .accordion-title-icon,
.hayman-process .service-list .accordion-li .accordion-title {
	display: flex;
	align-items: center;
	gap: 15px;
}

.hayman-process .service-list .accordion-li .icon {
	color: var(--hayman-white);
	width: 24px;
	min-width: 24px;
	height: 24px;
	stroke-width: 1;
}

.hayman-process .service-list .accordion-li .icon+.icon {
	display: none;
}

.hayman-process .service-list .accordion-li .fa-plus-circle-mobile {
	display: block;
}

.hayman-process .service-list .accordion-li .fa-minus-circle-mobile {
	display: none;
}

.hayman-process .service-list .accordion-li.active .fa-plus-circle-mobile {
	display: none;
}

.hayman-process .service-list .accordion-li.active .fa-minus-circle-mobile {
	display: block;
}

.hayman-process .accordion-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease-in-out, opacity 0.3s ease;
}

.hayman-process .service-list .accordion-content {
	padding: 0 20px;
}

.hayman-process .service-list .accordion-li.active .accordion-content {
	max-height: 800px;
	opacity: 1;
	padding: 40px;
}

.hayman-process .contact-inner {
	margin-block-start: 20px;
	position: relative;
}

.hayman-process .service-content-inner .button {
	min-height: 44px;
	font-size: 16px;
	margin-block-start: 30px;
	border-radius: 25px;
}

.hayman-process .count-accordion {
	position: relative;
	z-index: 2;
	font-size: 56px;
	font-weight: 900;
	color: var(--hayman-border);
}

.hayman-process .heading.text-24 {
	font-size: 26px;
	position: absolute;
	bottom: 12px;
	left: 20px;
	z-index: 2;
}

@media (min-width: 992px) {
	.hayman-process .service-list {
		height: 550px;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 0;
		gap: 15px;
	}

	.hayman-process .service-list .accordion-li {
		min-width: 100px;
		width: 170px;
		flex-direction: row;
		border: 1px solid var(--hayman-border);
		padding: 0;
		position: relative;
	}

	/* .hayman-process .service-list .accordion-li:last-child {
            border-right: none;
        } */

	/* .hayman-process .service-list .accordion-li:not(:first-child) {
            border-left: 1px solid var(--hayman-border);
        } */

	.hayman-process .accordion-horizontal .accordion-li.active {
		width: 100%;
		min-width: 300px;
	}

	.hayman-process .accordion-title {
		padding: 0;
		width: 100px;
		height: 100%;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		gap: 0;
	}

	.hayman-process .service-list .accordion-li .accordion-title-icon {
		flex-direction: column;
		justify-content: flex-start;
		height: auto;
		padding: 20px 0 0 0;
	}

	.hayman-process .service-list .accordion-li .title-plus-container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-bottom: 20px;
		height: 100%;
	}

	.hayman-process .service-list .accordion-li.active .accordion-title {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 20;
		display: none;
		width: 100px;
		background-color: #363E42;
		transition: all 0.3s ease;
	}

	.hayman-process .service-list .text-rotate {
		text-orientation: mixed;
		writing-mode: vertical-rl;
		transform: rotate(-180deg);
		max-height: 240px;
		white-space: nowrap;
		font-size: 20px;
		line-height: 1.25;
		font-family: 'Montserrat', sans-serif;
		position: static;
		margin-top: auto;
		margin-bottom: 20px;
	}

	.hayman-process .service-list .accordion-li .plus-icon-desktop {
		display: block;
		color: var(--hayman-white);
		width: 24px;
		min-width: 24px;
		height: 24px;
		font-size: 20px;
		margin-bottom: auto;
	}

	.hayman-process .service-list .accordion-li.active .title-plus-container {
		display: none;
	}

	.hayman-process .service-list .accordion-li.active .accordion-title-icon {
		padding: 40px 0;
		justify-content: center;
	}

	.hayman-process .accordion-content {
		height: 100%;
		max-height: unset;
		opacity: 0;
		padding: 0;
		position: absolute;
		left: 100px;
		width: calc(100% - 100px);
		pointer-events: none;
		transition: opacity 0.3s ease;
	}

	.hayman-process .service-list .accordion-li.active .accordion-content {
		opacity: 1;
		left: 0;
		width: 100%;
		pointer-events: auto;
		padding: 40px;
		transform: all 0.3s ease;
		background: var(--hayman-white);
	}

	.hayman-process .service-content-inner {
		max-width: 100%;
		min-width: 360px;
		height: auto;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 20px 20px;
	}

	.hayman-process .image-box {
		overflow: hidden;
		min-height: 450px;
		height: 460px;
	}
}

@media(min-width:767px)and (max-width:1299px) {
	.hayman-process .service-list {
		height: 435px;
	}

	.hayman-process .contact-inner {
		margin-block-start: 0px;
	}
}

@media(max-width:767px) {
    .hayman-process {
        padding: 30px 0;
    }
	.hayman-process .contact-inner {
		margin-block-start: 0;
	}

	.hayman-process .service-list {
		padding: 10px;
		gap: 10px;
		box-shadow: none;
	}

	.hayman-process .accordion-li.active {
		background: var(--hayman-white);
	}

	.hayman-process .service-list .accordion-li {
		border: 1px solid var(--hayman-border);
		align-items: center;
		padding: 10px 20px;
	}

	.hayman-process .heading.text-24 {
		font-size: 18px;
		bottom: 0;
	}

	.hayman-process .accordion-li.active .accordion-title {
		display: none !important;
	}

	.hayman-process .service-list .accordion-title-icon .icon {
		display: none !important;
	}

	.hayman-process .service-list .accordion-li.active .accordion-content {
		max-height: 800px;
		opacity: 1;
		padding: 10px;
	}

	.hayman-process .title-plus-container {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.hayman-process .service-list .accordion-li .icon {
		color: var(--hayman-white);
		width: 24px;
		min-width: 24px;
		height: unset;
		stroke-width: 1;
	}
}

/* --- Testimonial Section Styles --- */
.testimonial-section {
	padding: 40px 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.testimonial-section .container,
.testimonial-section .container-fluid {
	max-width: var(--hayman-container-width-98);
}

.testimonial-section .testimonial-overlay {
	background: linear-gradient(to right, var(--hayman-dark-overlay) 40%, rgba(0, 0, 0, 0) 100%);
	opacity: 0.85;
}

.testimonial-section .testimonial-title {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(to bottom, var(--hayman-blue-teal), var(--hayman-green-lime));
	color: transparent;
	font-family: var(--hayman-font-primary);
	display: flex;
	align-items: center;
	margin-bottom: 0 !important;
	background-clip: text;
	-webkit-background-clip: text;
}

.testimonial-section #testimonial-carousel {
	margin-top: 1.5rem;
}

.testimonial-section .blockquote-custom {
	font-size: 26px;
	line-height: 1.6;
	color: var(--hayman-white);
	font-family: var(--hayman-font-secondary);
	font-weight: 300;
	border-left: none;
	margin-bottom: 2rem;
}

.testimonial-section .reviewer-name {
	font-size: 22px;
	font-weight: 500;
	color: var(--hayman-highlight-teal);
	font-family: var(--hayman-font-secondary);
}

.testimonial-section .owl-dots {
	text-align: left;
	margin-top: 10px;
	padding-left: 0;
}

.testimonial-section .owl-dots .owl-dot {
	display: inline-block;
	cursor: pointer;
}

.testimonial-section .owl-dots .owl-dot span {
	width: 20px;
	height: 5px;
	margin: 0 5px;
	background: rgba(255, 255, 255, 0.4);
	display: block;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.testimonial-section .owl-dots .owl-dot.active span {
	background: var(--hayman-white);
	width: 40px;
}

/* --- Section Styling --- */
.hayman-about-section {
	background-color: var(--hayman-white);
}

.hayman-about-section .about-image-wrapper {
	background-color: var(--hayman-white);
	border-radius: 1rem;
	overflow: hidden;
	padding: 1rem;
	height: 100%;
}

.hayman-about-section .about-feature-image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 0.5rem;
}

.hayman-about-section .feature-box {
	background-color: var(--hayman-white);
	border-radius: 1rem;
	height: 100%;
}

.hayman-about-section .feature-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--hayman-text-dark);
	font-family: var(--hayman-font-primary);
	margin-bottom: 0.5rem;
}

.hayman-about-section .feature-text {
	line-height: 1.6;
	color: var(--hayman-light-text-color);
	font-family: var(--hayman-font-secondary);
	margin-bottom: 0;
}

.hayman-about-section .feature-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 0.5rem;
	color: var(--hayman-white);
}

.hayman-about-section .icon-orange {
	background-color: #ffc9a5;
	color: #f79954;
}

.hayman-about-section .icon-teal {
	background-color: #c0f7f3;
	color: var(--hayman-highlight-teal);
}

.hayman-about-section .icon-green {
	background-color: #d8f1d0;
	color: var(--hayman-green-lime);
}

.hayman-about-section .icon-purple {
	background-color: #e3d0f7;
	color: #9c60e8;
}

/* contact section css */
.hayman-position-relative {
	position: relative;
}

.hayman-section-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hayman-z-1 {
	z-index: 1;
}

.contact-section {
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 0 180px 0;
	height: 600px;
	margin-bottom: 180px;
}

.contact-section .contact-overlay {
	background-color: var(--hayman-black);
	opacity: 0.7;
}

.contact-section .contact-intro-text {
	color: var(--hayman-white);
	max-width: 800px;
	font-family: var(--hayman-font-secondary);
	line-height: 1.6;
}

.contact-section .contact-hay {
	position: absolute;
}

.contact-section .contact-info-card {
	background-color: var(--hayman-dark-overlay);
	height: 100%;
	padding: 0 !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;

}

.contact-section .info-card-bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	padding: 2rem !important;
}
.inner-contact {
    margin-top: 60px;
}
.inner-contact .info-card-bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	padding: 2rem !important;
}
.inner-contact .info-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--hayman-font-secondary);
    line-height: 1.6;
}
.inner-contact .info-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    background-color: var(--hayman-highlight-teal);
    color: var(--hayman-white);
}
.contact-section .contact-info-card .content-wrapper {
	position: relative;
	z-index: 2;
}

.contact-section .info-icon-wrapper {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 0.5rem;
	background-color: var(--hayman-highlight-teal);
	color: var(--hayman-white);
}

.contact-section .info-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--hayman-white);
	font-family: var(--hayman-font-primary);
}

.contact-section .info-description {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--hayman-font-secondary);
	line-height: 1.6;
}

.contact-section .contact-form-card {
	background-color: var(--hayman-white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-section .form-label-custom {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--hayman-text-dark);
	font-family: var(--hayman-font-secondary);
	margin-bottom: 0.25rem;
}

.contact-section .required-dot {
	color: var(--hayman-warning);
	font-size: 1.2rem;
	line-height: 0;
	position: relative;
	top: -2px;
}

.contact-section .form-control-custom {
	border: 1px solid var(--hayman-border);
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	color: var(--hayman-text-dark);
	font-family: var(--hayman-font-secondary);
	transition: border-color 0.3s;
}

.contact-section .form-control-custom:focus {
	border-color: var(--hayman-highlight-teal);
	box-shadow: 0 0 0 0.25rem rgba(37, 205, 199, 0.25);
}

.contact-section input.wpcf7-form-control.wpcf7-submit.has-spinner.rk-form-submit{
	background-image: var(--hayman-gradiant-right);
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 0.75rem 1.5rem;
	transition: opacity 0.3s;
	color: var(--hayman-white);
	font-family: var(--hayman-font-primary);
	box-shadow: 0 4px 15px rgba(100, 172, 76, 0.4);
}

.contact-section input.wpcf7-form-control.wpcf7-submit.has-spinner.rk-form-submit:hover {
	opacity: 0.9;
	color: var(--hayman-white);
}
.inner-contact input.wpcf7-form-control.wpcf7-submit.has-spinner.rk-form-submit{
	background-image: var(--hayman-gradiant-right);
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 0.75rem 1.5rem;
	transition: opacity 0.3s;
	color: var(--hayman-white);
	font-family: var(--hayman-font-primary);
	box-shadow: 0 4px 15px rgba(100, 172, 76, 0.4);
}

.inner-contact input.wpcf7-form-control.wpcf7-submit.has-spinner.rk-form-submit:hover {
	opacity: 0.9;
	color: var(--hayman-white);
}
@media(max-width:767px){
    .contact-section {
    padding: 30px 0;
    height: auto;
    margin-bottom: 0;
}
.contact-section .contact-hay {
    position: relative;
}
}
/* Blogs section */
.blog-section {
	position: relative;
	padding: 40px 0;
}

.blog-section .container,
.blog-section .container-fluid {
	max-width: var(--hayman-container-width-98);
}

.blog-section .section-header {
	margin-bottom: 50px;
	text-align: center;
}

.blog-section .subtitle-tag {
	background-color: var(--hayman-white);
}

.blog-section .main-heading {
	margin-bottom: 0;
}

.blog-section .blog-card {
	background: var(--hayman-light-bg);
	border-radius: 25px;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
	overflow: hidden;
	height: 100%;
	transition: all 0.3s ease;
}

.blog-section .blog-card:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 25px;
}

.blog-section .blog-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.blog-section .blog-card:hover .blog-image {
	transform: scale(1.05);
}

.blog-section .blog-meta {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #00000087;
	color: var(--hayman-white);
	padding: 5px 15px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	z-index: 2;
}

.blog-section .blog-meta i {
	margin-right: 5px;
	font-size: 0.8rem;
}

.blog-section .blog-content {
	padding: 25px;
	background: var(--hayman-light-bg);
}

.blog-section .blog-title {
	font-family: var(--hayman-font-primary);
	font-size: 24px;
	font-weight: 600;
	color: var(--hayman-dark);
	line-height: 1.3;
	margin-bottom: 15px;
}

.blog-section .blog-excerpt {
	margin-bottom: 25px;
}

.blog-section .read-more-link {
	display: inline-flex;
	align-items: center;
	color: var(--hayman-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: var(--para-font-size);
	transition: all 0.3s ease;
}

.blog-section .read-more-link i {
	margin-right: 10px;
	color: var(--hayman-white);
	background-color: var(--hayman-dark);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}


.blog-card-image-container img {
	object-fit: fill !important;
}

.blog-section .read-more-link:hover {
	color: var(--hayman-dark);
}

.blog-section .read-more-link:hover i {
	background-color: var(--hayman-dark);
}

/* --- Footer Structure --- */
.hayman-footer {
	background-color: var(--hayman-dark);
	color: var(--hayman-white);
	font-family: var(--hayman-font-secondary);
	position: relative;
	margin-top: 80px;
}

.hayman-footer .footer-top-bar {
	position: absolute;
	top: -75px;
	inset-inline: 1%;
	color: var(--hayman-text-dark);
}

.hayman-footer .footer-logo-wrapper {
	width: 100%;
	height: 100px;
	background-image: linear-gradient(to right, var(--hayman-highlight-teal), var(--hayman-green-lime));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin-left: -12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hayman-footer .footer-logo-contact {
	background: var(--hayman-white);
	padding: 20px;
	height: 100px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hayman-footer .footer-logo {
	max-width: 100%;
	max-height: 100%;
	filter: brightness(0) invert(1);
}

.hayman-footer .contact-info-item {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hayman-text-dark);
}

.hayman-footer .contact-info-item .icon-primary {
	color: var(--hayman-blue-teal);
	font-size: 1.1rem;
	margin-top: 3px;
}

.hayman-footer .contact-info-item .info-text {
	line-height: 1.4;
	font-family: var(--hayman-font-secondary);
	color:#222;
	transition:all 0.3s ease-in-out;
}

.hayman-footer .contact-info-item .info-text:hover{
	color:var(--hayman-blue-teal);
}

.hayman-footer .footer-main-content {
	background-color: var(--hayman-dark);
	color: rgba(255, 255, 255, 0.75);
	padding-top: 100px !important;
}

.hayman-footer .footer-heading {
	color: var(--hayman-white);
	font-size: 1.1rem;
	font-weight: 700;
	font-family: var(--hayman-font-primary);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
	position: relative;
	letter-spacing: 0.5px;
}

.hayman-footer .footer-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background-color: var(--hayman-highlight-teal);
}

.hayman-footer .about-text {
	line-height: 1.6;
}

.hayman-footer .social-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--hayman-white);
	margin-right: 8px;
	transition: background-color 0.3s;
}

.hayman-footer .social-icon:hover {
	background-color: var(--hayman-highlight-teal);
	color: var(--hayman-dark);
}

.hayman-footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hayman-footer .footer-links li {
	margin-bottom: 10px;
}

.hayman-footer .footer-links a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.3s;
	position: relative;
	padding-left: 15px;
}

.hayman-footer .footer-links a::before {
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--hayman-highlight-teal);
	top: 3px;
}

.hayman-footer .footer-links a:hover {
	color:  var(--hayman-highlight-teal);
}

.hayman-footer .news-item {
	display: flex;
	align-items: center;
}

.hayman-footer .news-image-wrapper {
	flex-shrink: 0;
	width: 70px;
	height: 60px;
	margin-right: 15px;
	border-radius: 5px;
	overflow: hidden;
}

.hayman-footer .news-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hayman-footer .news-title {
	display: block;
	color: var(--hayman-white);
	text-decoration: none;
	line-height: 1.3;
	font-weight: 500;
	margin-bottom: 2px;
	transition: color 0.3s;
}

.hayman-footer .news-title:hover {
	color: var(--hayman-highlight-teal);
}

.hayman-footer .news-date {
	display: block;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

.hayman-footer .newsletter-text {
	line-height: 1.7;
	margin-bottom: 1rem;
}

.hayman-footer .newsletter-form {
	display: flex;
	flex-direction: column;
}

.hayman-footer .newsletter-input {
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-radius: 8px;
	margin-bottom: 10px;
	color: var(--hayman-text-dark);
}

.hayman-footer .newsletter-input::placeholder {
	color: var(--hayman-light-text-color);
}

.hayman-footer .btn-subscribe {
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-radius: 8px;
	color: var(--hayman-white);
	font-weight: 600;
	font-family: var(--hayman-font-primary);
	text-transform: uppercase;
	background-image: var(--hayman-gradiant-subscribe);
	background-size: 200% auto;
	transition: background-position 0.5s;
}

.hayman-footer .btn-subscribe:hover {
	background-position: right center;
	color: var(--hayman-white);
}

.hayman-footer .footer-copyright {
	background-color: var(--hayman-dark-overlay);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hayman-footer .copyright-text {
	color: rgba(255, 255, 255, 0.6);
}

.hayman-footer .designer-text {
	color: var(--hayman-highlight-teal);
	font-weight: 500;
}
@media(max-width:767px){
    .hayman-footer {
    margin-top: 0;
}
    .hayman-footer .contact-info-item {
    justify-content: start;
}
.hayman-footer .footer-top-bar {
    position: relative;
    top: 0;
}
.hayman-footer .footer-logo-wrapper {
    height: 100%;
    margin-left: 0;
}
.hayman-footer .footer-logo-contact {
    height: 100%;
}
.hayman-footer .footer-main-content {
    padding-top: 20px !important;
}
}





/* Breadcrumb css */
.page-breadcrumb {
	background: linear-gradient(to right, var(--hayman-blue-teal) 0%, #1eafb8 30%, var(--hayman-green-lime) 100%);
	padding: 40px 0;
	color: #fff;
	position: relative;
	overflow: hidden;
}
section.page-breadcrumb .container {
    position: relative;
    z-index: 99;
}
.page-breadcrumb::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.page-breadcrumb::after {
	content: "";
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}


.page-breadcrumb span.breadcrumb_new a {
	color: #fff;
}

.page-breadcrumb span.breadcrumb_new {
	color:#fff;
}

.page-breadcrumb .extraa {
	margin: 54px 0;
}

.page-breadcrumb .pagetitle {
	color: #fff;
}

.page-breadcrumb .container-fluid {
	position: relative;
	z-index: 999;
}

.page-breadcrumb .container {
    width: 95%;
}

section.innerpages .container {
    width: 95%;
}


/* ------------------------------------------------------------------
   COMPANY PROFILE PAGE SPECIFIC STYLES
------------------------------------------------------------------ */

.img-border-primary {
    border: 4px solid var(--hayman-blue-teal);
}

.stat-card-base {
    background-color: #e1e1e1;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-number-primary {
    color: var(--hayman-primary);
}

.stat-number-ancient {
    color: var(--hayman-primary);
}

.stat-label {
/*     font-family: var(--text-font); */
    font-size: 1.1rem;
    color: var(--hayman-text-dark);
    margin: 0;
}

/* ------------------------------------------------------------------
   DIRECTOR'S MESSAGE PAGE SPECIFIC STYLES
------------------------------------------------------------------ */

.lead-quote {
    border-left: 5px solid var(--hayman-blue-teal);
    background-color: #e1e1e1;
}

.lead-quote p {
    font-style: italic;
}

.img-object-cover {
    object-fit: cover;
}

.director-name {
    font-size: 1.5rem;
    color:var(--hayman-primary);
}

.director-title {
    font-style: italic;
/*     color: var(--text-color); */
    margin-top: -5px;
}

.text-small {
    font-size: 0.9rem;
}



/* ------------------------------------------------------------------
   MISSION, VISION, VALUES PAGE SPECIFIC STYLES
------------------------------------------------------------------ */

.value-card {
    border-radius: 8px;
    background-color: #e1e1e1;
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.value-highlight {
    border-top: 5px solid var(--hayman-primary);
}

.value-primary {
    border-top: 5px solid var(--hayman-blue-teal);
}

.value-quote {
    border-top: 5px solid var(--hayman-primary);
}

.value-card-title {
    color: #0c3226;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.value-card-text {
    font-size: 0.95rem;
}



/* ------------------------------------------------------------------
   R&D PAGE SPECIFIC STYLES
------------------------------------------------------------------ */

.img-border-highlight {
    border: 4px solid var(--hayman-blue-teal);
}

.feature-title-primary {
    color: var(--hayman-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-text-small {
    font-size: 0.95rem;
}



/* ------------------------------------------------------------------
   PHARMA FRANCHISE PAGE SPECIFIC STYLES
------------------------------------------------------------------ */

.img-border-ancient {
    border: 4px solid var(--hayman-blue-teal);
}

/* Custom list styles */
.list-checked-primary li {
    position: relative;
    padding-left: 25px;
}

.list-checked-primary li::before {
    content: '✓';
    color:var(--hayman-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.list-checked-ancient li {
    position: relative;
    padding-left: 25px;
}

.list-checked-ancient li::before {
    content: '✓';
    color: var(--hayman-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}



  #sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
 
}
#sequence a:not(:last-child) {
    border-right: 1px solid #fffdfd;
}
#sequence {
    width: 100%;
    float: left;
    background: var(--hayman-gradiant-right);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}
.contact-modal{
	background-color:#000626;
	color:#fff;
}
.contact-modal input.wpcf7-form-control.wpcf7-submit.has-spinner.rk-form-submit {
    background-image: var(--hayman-gradiant-right);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    transition: opacity 0.3s;
    color: var(--hayman-white);
    font-family: var(--hayman-font-primary);
    box-shadow: 0 4px 15px rgba(100, 172, 76, 0.4);
}