/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.4
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}
:root {
    --ancient-color: #102143;
    --primary-color: #A1C633;
    --highlight-text: #A9B8B8;
    --dark-text: #161D1B;
    --highlight-bg: #1E8A8A;
    --testimonials-quote: #009264;
    --highlight-bg-dark: #001236;
    --light-bg: #F6F8FA;
    --light-secondary-bg: #e1e1e1;
    --white-color: #ffffff;
    --ripple-bg: #D8E5E5;
    --text-color: #4A4A47;
    --marquee-height: 60px;
    --marquee-speed: 25s;
    --marquee-angle: 3deg;
    --marquee-gradient-dark: linear-gradient(120deg, rgb(16 33 67) 11%, rgb(27 70 132) 100%);
    --marquee-gradient-light: linear-gradient(216deg, rgb(211 72 55) 80%, rgb(30 56 108) 100%);
    --linear-gradiant-82: linear-gradient(82deg, rgb(16 33 67) 0%, rgb(173 54 39) 53%, rgb(16 33 67) 100%);
    --linear-gradiant-210: linear-gradient(210deg, rgb(173 54 39) 0%, #143970 53%, #143970 100%);
    --linear-gradiant-secondary-180: linear-gradient(180deg, rgba(246, 248, 250, 1) 0%, rgb(16 33 67) 100%);
    --linear-gradiant-banner: linear-gradient(to right, rgb(16 33 67 / 90%) 35%, rgb(13 30 65 / 0%) 100%);
    --transition-4s: all 0.3s ease;
    --transition-5s: all 0.5s ease;
    --heading-font: 'Figtree', sans-serif;
    --text-font: 'DM Sans', sans-serif;
}

body {
	margin: 0;
	padding: 0;
	color: var(--text-color);
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
}

body,
p,
span,
div,
a,
li,
button,
input,
textarea {
	font-family: var(--text-font);
}

a {
	text-decoration: none;
}

.text-highlight {
	color: var(--highlight-text);
	font-weight: inherit;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
	background-image: radial-gradient(ellipse at center, #1b4684, #1b4684) !important;
}

div.asl_w .probox .promagnifier {
	background-image: linear-gradient(180deg, #bc271c, #bc271c) !important;
}

/* Global button css */
.global_btn {
    font-size: 14px;
    font-weight: 600;
    border: none;
    background-color: #e5382b;
    padding: 15px 24px 15px 24px;
    display: inline-block;
    align-items: center;
    border-radius: 99px;
    position: relative;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);



	.text {
		color: var(--white-color);
		line-height: 1;
		position: relative;
		z-index: 5;
		margin-right: 32px;
	}

	svg {
		display: inline-block;
		position: relative;
		z-index: 5;
		transform: rotate(0deg) translateX(0);
		transform-origin: left;
		transition: all .5s cubic-bezier(.77, 0, .175, 1);
	}

	&::before {
		content: '';
		background-color: #004789;
		width: 32px;
		height: 32px;
		display: block;
		position: absolute;
		z-index: 1;
		border-radius: 99px;
		top: 50%;
		right: 16px;
		transform: translateY(-50%);
		transition: all .5s cubic-bezier(.77, 0, .175, 1);
	}

	&.light {
		background-color: var(--ancient-color);

		&::before {
			background-color: var(--primary-color);
		}

	}
}

.global_btn:hover {

	svg {
		transform: rotate(45deg) translateX(-8px);
	}

	&::before {
		content: '';
		width: 100%;
		height: 100%;
		right: 0;
	}
}

section.why-section {
	overflow: hidden;
}

.col-md-6.extra {
	padding: 0px 0 0px 82px;
}

#ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
	color: #000000 !important;
}

/* subheading tag */
.subtitle-tag {
	display: inline-block;
	background-color: #afb9c3;
	color: var(--dark-text);
	padding: 6px 15px;
	border-radius: 25px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	margin-bottom: 25px;
}


.section-title {
	font-family: var(--heading-font);
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--dark-text);
}

@media (max-width: 991.98px) {
	.section-title {
		font-size: 2rem;
	}
}

@media (max-width: 575.98px) {
	.section-title {
		font-size: 1.8rem;
	}
}

/* header css */
header.main-header {
    width: 100% !important;
    z-index: 15;
    padding: 0 0 14px 0;
    position: absolute;
    background: #21212161;
}

/* for inner pages */
header.main-header.no-home {
	position: absolute;
	width: 100%;
}

section.banner.position-relative {
	height: 658px !important;
}

#ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
	color: #000000 !important;
}

header.main-header .container.header-container {
    padding: 6px 15px;
    max-width: 96%;
    margin-top: 15px;
    border-radius: 20px;
    transition: var(--transition-4s);
}

.header-right-bar {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 20px;
}

header.main-header .header-logo {
	display: block;
	transition: var(--transition-4s);
}

header.main-header .header-secondary-logo {
	display: none;
	transition: var(--transition-4s);
}

video.banner-video {
	width: 100%;
}

/* header scroll */
header.main-header.navbar-scrolled {
    position: fixed;
    top: 0;
    background: #143970;
    padding: 0 0 0 0 !important;
}

header.main-header.navbar-scrolled .container.header-container {
	max-width: 100%;
	margin: unset;
	border: unset;
	background: unset;
	border-radius: unset;
	padding: 6px 20px;
}

header.main-header.navbar-scrolled .header-logo {
	display: none;
}

header.main-header.navbar-scrolled .header-secondary-logo {
	display: block;
}

header.main-header .header-drawer i,
.header-serch i {
	font-size: 20px;
}

header.main-header .header-drawer i {
	color: var(--white-color);
}

header.main-header .header-serch i {
	font-size: 20px;
	display: flex;
	justify-content: center;
	height: 45px;
	width: 45px;
	background: white;
	align-items: center;
	border-radius: 50%;
}

@media(max-width:767px) {
	header.main-header .container.header-container {
		max-width: 95% !important;
		margin-top: 10px;
	}

	header.main-header img {
		width: 84%;
	}

	section.banner {
		overflow: hidden;
		margin: 0px 0 40px 0 !important;
		border-radius: 0px !important;
	}
}

/* banner css */
section.banner {
	position: relative;
	overflow: hidden;
	min-height: 600px;
}

section.banner .carousel-item {
	transition: transform 0.6s ease-in-out;
	position: relative;
}

section.banner .carousel-item img {
	object-fit: cover;
	width: 100%;
	height: 100vh;
	min-height: 600px;
}

section.banner .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--linear-gradiant-banner);
	z-index: 5;
}

section.banner .carousel-caption {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	width: 46%;
	text-align: left;
	color: var(--white-color);
	z-index: 10;
	padding-left: 2rem;
}

section.banner .carousel-caption .main-heading {
	font-size: 62px;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.1;
	font-family: var(--heading-font);
}

section.banner .carousel-caption p {
	font-size: 18px;
	margin-bottom: 30px;
	color: var(--highlight-text);
}

section.banner .carousel-caption a.start-franchise {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	color: var(--dark-text);
	padding: 12px 30px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: var(--transition-5s);
	max-width: fit-content;
}

section.banner .carousel-caption a.start-franchise:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes zoomIn {
	from {
		transform: scale(1.1);
	}

	to {
		transform: scale(1);
	}
}

section.banner .carousel-item .main-heading,
section.banner .carousel-item p,
section.banner .carousel-item a.start-franchise {
	opacity: 0;
	transition: none;
}

section.banner .carousel-item.active img {
	animation: zoomIn 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

section.banner .carousel-item.active .main-heading {
	animation: slideInUp 0.8s ease-out forwards;
}

section.banner .carousel-item.active p {
	animation: slideInUp 0.8s ease-out forwards 0.2s;
}

section.banner .carousel-item.active a.start-franchise {
	animation: slideInUp 0.8s ease-out forwards 0.4s;
}

section.banner .carousel-item:not(.active) .main-heading,
section.banner .carousel-item:not(.active) p,
section.banner .carousel-item:not(.active) a.start-franchise {
	animation: none;
}

section.banner .carousel-control-next,
section.banner .carousel-control-prev {
	z-index: 12;
	width: 6%;
}

/* ========================================= */
/* MOBILE RESPONSIVENESS */
/* ========================================= */
@media (max-width: 768px) {

	section.banner {
		min-height: 450px;
	}

	section.banner .carousel-item img {
		height: 70vh;
		min-height: 450px;
	}

	section.banner .gradient-overlay {
		background: var(--linear-gradiant-banner);
	}

	section.banner .carousel-caption {
		width: 100%;
		text-align: left;
		padding: 10% 5%;
		background-color: transparent;
		justify-content: flex-end;
	}

	section.banner .carousel-caption .main-heading {
		font-size: 28px;
		margin-bottom: 10px;
	}

	section.banner .carousel-caption p {
		font-size: 14px;
		margin-bottom: 20px;
		width: 80%;
	}

	section.banner .carousel-caption a.start-franchise {
		padding: 10px 25px;
		margin: 0 auto 10px auto;
	}

	section.banner .carousel-control-prev,
	section.banner .carousel-control-next {
		opacity: 0.5;
	}

	.global_btn {
		font-size: 12px;
	}
}

@media (min-width:767px) and (max-width:1399px) {
	section.banner .carousel-caption .main-heading {
		font-size: 48px;
		line-height: 1.1;
	}
}

/* Feature card */
/* section.features-section .feature-card {
	padding: 30px;
	border-radius: 15px;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section.features-section .title-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}


section.features-section .card-icon {
	font-size: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	margin-right: 15px;
	flex-shrink: 0;
}

section.features-section .card-title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

section.features-section .card-text {
	font-size: 1rem;
	opacity: 0.85;
}

section.features-section .dark-card {
    background-color: #102143;
    color: var(--white-color);
}

section.features-section .dark-card .card-text {
    color: #ffffff;
}

section.features-section .primary-card {
    background-color: #ad3627;
    color: var(--dark-text);
}

section.features-section .primary-card .card-icon {
    background: #102143;
    color: var(--white-color);
}

section.features-section .primary-card .card-text {
    opacity: 0.8;
    color: #fff;
}

section.features-section .feature-card.dark-card .card-icon {
    background: #ad3627;
    color: var(--white-color);
}


section.features-section .highlight-card {
    background-color: #1b1d21;
    color: var(--white-color);
}

section.features-section .highlight-card .card-icon {
    color: var(--white-color);
    background: #ad3627;
}

section.features-section .highlight-card .card-text {
	color: var(--white-color);
}

section.features-section .dark-highlight-card {
    background-color: #ad3627;
    color: var(--white-color);
}

section.features-section .dark-highlight-card .card-icon {
    background: #142141;
    color: var(--white-color);
}

section.features-section .dark-highlight-card .card-text {
	color: var(--white-color);
}

@media (max-width: 767px) {
	section.features-section .feature-card {
		min-height: 180px;
		padding: 20px;
	}

	section.features-section .card-title {
		font-size: 1.25rem;
	}

	section.features-section .card-text {
		font-size: 0.9rem;
	}

	section.features-section .title-wrapper {
		margin-bottom: 15px;
	}

	section.features-section .card-icon {
		font-size: 16px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin-right: 10px;
	}
}
 */

/* About Us section */
/* .about-us-section .about-heading-content {
	padding-right: 20px;
}

.about-us-section .image-with-overlay {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}

.about-us-section .image-with-overlay img {
	width: 100%;
	display: block;
	height: 400px;
	object-fit: cover;
	border-radius: 15px;
}

.about-us-section .image-with-overlay .overlay-text {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #102143;
    color: var(--white-color);
    padding: 20px 30px;
    border-top-left-radius: 15px;
    text-align: center;
}

.about-us-section .overlay-text .experience-count {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.about-us-section .overlay-text .experience-label {
	font-size: 1rem;
	opacity: 0.9;
}

.about-us-section .about-description {
	font-size: 1rem;
	color: var(--text-color);
}

.about-us-section .bottom-image-block {
	position: relative;
	border-radius: 15px;
}

.about-us-section .bottom-image-block img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 15px;
	display: block;
}

.about-us-section .bottom-image-block .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ad3627;
    color: #ffffff;
    padding: 20px 30px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    text-align: center;
}

.about-us-section .bottom-image-block .portfolio-count {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.about-us-section .bottom-image-block .portfolio-label {
	font-size: 1rem;
	opacity: 0.9;
}

@media (max-width: 991.98px) {
	.about-us-section .about-heading-content {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.about-us-section .image-with-overlay .overlay-text,
	.about-us-section .bottom-image-block .overlay-text {
		padding: 15px 20px;
		text-align: center;
	}

	.about-us-section .overlay-text .experience-count,
	.about-us-section .bottom-image-block .portfolio-count {
		font-size: 2rem;
	}

	.about-us-section .overlay-text .experience-label,
	.about-us-section .bottom-image-block .portfolio-label {
		font-size: 0.9rem;
	}

	.about-us-section .bottom-image-block {
		margin-top: 30px;
		margin-left: 0;
		width: 100%;
		float: none;
	}
} */


.about-section {
	padding: 60px 0;
}

.about-badge {
	padding: 6px 14px;
	border-radius: 20px;
	background: #e9f0ff;
	font-size: 14px;
	font-weight: 500;
	width: fit-content;
}

.contact-info p {
	font-size: 15px;
	line-height: 1.5;
}

.about-heading {
	font-size: 48px;
	font-weight: 700;
}

.about-heading span {
	/*       font-family: "Georgia", serif;
      font-style: italic; */
	color: #1c335f;
}

.overlay-card {
	background: #e6f0ff;
	border-radius: 14px;
	padding: 20px;
	width: 260px;
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.overlay-card img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 8px;
}

.icon-text {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.btn-custom {
	background: #002f6c;
	color: #fff;
	padding: 12px 26px;
	border-radius: 30px;
}

.about-img-wrapper {
	position: relative;
}

.about-img-wrapper img {
	border-radius: 12px;
	width: 100%;
	height: auto;
}

.about-section {
	padding: 60px 0;
}

.about-badge {
	padding: 6px 14px;
	border-radius: 20px;
	background: #e9f0ff;
	font-size: 14px;
	font-weight: 500;
	width: fit-content;
}

.about-heading {
	font-size: 48px;
	font-weight: 700;
}

.about-heading span {
	/*       font-family: "Georgia", serif;
      font-style: italic; */
	color: #1c335f;
}

.overlay-card {
	background: #e6f0ff;
	border-radius: 14px;
	padding: 20px;
	width: 260px;
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.overlay-card img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 8px;
}

.icon-text {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.btn-custom {
	background: #002f6c;
	color: #fff;
	padding: 12px 26px;
	border-radius: 30px;
}

.about-img-wrapper {
	position: relative;
}

.about-img-wrapper img {
	border-radius: 12px;
	width: 100%;
	height: auto;
}

/* Marquee Section */
.marquee-section {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 200px;
	padding: 0;
	margin: 0;
}

.marquee-section .marquee-container-wrapper {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateY(-50%);
}

.marquee-section .marquee-track {
	position: absolute;
	top: 50%;
	left: -5px;
	width: 200%;
	height: var(--marquee-height);
	transform: translateY(-50%);
	white-space: nowrap;
	overflow: hidden;
}

.marquee-section .marquee-track-1 {
    background: #143970;
    transform: translateY(-50%) rotate(var(--marquee-angle));
    top: 80%;
    z-index: 2;
}

.marquee-section .marquee-track-2 {
	background: var(--marquee-gradient-light);
	transform: translateY(-50%) rotate(calc(-1 * var(--marquee-angle)));
	top: 40%;
	z-index: 3;
}

.marquee-section .marquee-content {
	display: inline-block;
	height: 100%;
	animation: marquee-scroll var(--marquee-speed) linear infinite;
	padding-right: 1px;
}

.marquee-section .marquee-text,
.marquee-section .marquee-content i {
	display: inline-block;
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: var(--marquee-height);
	vertical-align: middle;
	padding: 0 15px;
}

.marquee-section .marquee-track-1 .marquee-text {
	color: #ffffff;
}

.marquee-section .marquee-track-1 i {
	font-size: 1.8rem;
	color: #ffffff;
}

.marquee-section .marquee-track-2 .marquee-content {
	animation-direction: reverse;
}

.marquee-section .marquee-track-2 .marquee-text {
	color: var(--white-color);
}

.marquee-section .marquee-track-2 i {
	font-size: 1.8rem;
	color: var(--white-color);
}

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

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

@media (max-width: 768px) {

	.marquee-section .marquee-container-wrapper {
		top: 22%;
	}

	.marquee-section {
		height: 150px;
	}

	.marquee-section .marquee-track {
		height: 40px;
	}

	.marquee-section .marquee-track-1 {
		top: 55%;
	}

	.marquee-section .marquee-track-2 {
		top: 65%;
	}

	.marquee-section .marquee-text,
	.marquee-section .marquee-content i {
		font-size: 1.5rem;
		line-height: 40px;
		padding: 0 10px;
	}

	.marquee-section .marquee-track-1 i,
	.marquee-section .marquee-track-2 i {
		font-size: 1.2rem;
	}
}

/* Products Category Section */
section.product-categories-section .product-slider-wrapper {
	padding-bottom: 50px;
}

section.prod uct-categories-section .slick-track,
section.product-categories-section .slick-slide {
	transition: transform 0.4s ease-in-out;
}

section.product-categories-section .slick-slide {
	padding: 20px 10px;
	box-sizing: border-box;
	transition: all 0.4s ease-in-out;
}

section.product-categories-section .slick-prev,
section.product-categories-section .slick-prev,
section.product-categories-section .slick-next {
	width: 40px;
	height: 40px;
	z-index: 10;
	background-color: #ad3627;
	border-radius: 50%;
	transition: var(--transition-4s);
}

section.product-categories-section .slick-prev:hover,
section.product-categories-section .slick-next:hover {
	background-color: var(--primary-color);
}

section.product-categories-section .slick-prev:before,
section.product-categories-section .slick-next:before {
	content: '';
}

section.product-categories-section .slick-prev i,
section.product-categories-section .slick-next i {
	color: var(--white-color);
	font-size: 1rem;
}

section.product-categories-section .product-card {
	position: relative;
	height: auto;
	background-color: var(--light-bg);
	border-radius: 15px;
	padding: 25px;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
	overflow: hidden;
	color: var(--dark-text);
}

section.product-categories-section .card-content-area {
	position: relative;
	z-index: 3;
	padding-bottom: 20px;
}

section.product-categories-section .card-segment-title {
	font-family: var(--heading-font);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
	transition: color 0.4s;
}

section.product-categories-section .card-segment-description {
	font-size: 0.95rem;
	line-height: 1.4;
	color: var(--text-color);
	transition: color 0.4s;
}

section.product-categories-section .card-image {
	position: relative;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: auto;
	border-radius: 15px;
	z-index: 2;
	pointer-events: none;
}

section.product-categories-section .nav-arrow-button {
	position: absolute;
	bottom: 25px;
	right: 25px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--white-color);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-4s);
	z-index: 4;
	opacity: 0.9;
}

section.product-categories-section .nav-arrow-button:hover {
	opacity: 1;
}

section.product-categories-section .slick-slide:not(.slick-center) .product-card {
	transform: scale(0.95);
}

section.product-categories-section .slick-center .product-card {
	transform: scale(1.05);
	background: var(--linear-gradiant-210);
}

section.product-categories-section .slick-center .card-segment-title {
	color: var(--white-color) !important;
}

section.product-categories-section .slick-center .card-segment-description {
	color: var(--white-color) !important;
}

section.product-categories-section .product-card:hover {
	transform: translateY(-5px) scale(1);
}

section.product-categories-section .slick-slide:not(.slick-center) .product-card:hover {
	background: var(--linear-gradiant-210);
	transform: translateY(-5px) scale(1.0);
}

section.product-categories-section .slick-slide:not(.slick-center) .product-card:hover .card-segment-title,
section.product-categories-section .slick-slide:not(.slick-center) .product-card:hover .card-segment-description {
	color: var(--white-color);
}

section.product-categories-section .slick-dots {
	bottom: -30px;
}

section.product-categories-section .slick-dots li {
	margin: 0 5px;
}

section.product-categories-section .slick-dots li button:before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #ccc;
	border-radius: 50%;
	transition: all 0.3s;
	display: block;
}

section.product-categories-section .slick-dots li.slick-active button:before {
	background-color: #ad3627;
	width: 25px;
	border-radius: 5px;
}

@media (max-width: 1024px) {

	section.product-categories-section .slick-slide:not(.slick-center) .product-card {
		transform: scale(1);
	}

	section.product-categories-section .slick-center .product-card {
		transform: scale(1.02);
	}
}

@media (max-width: 768px) {
	.col-md-6.extra {
		padding: 0px 20px 0px 22px;
	}

	.about-heading {
		font-size: 1.8rem;
	}

	section.product-categories-section .slick-slide {
		padding: 10px 0px;
	}

	section.product-categories-section .product-card {
		height: 420px;
	}

	section.product-categories-section .slick-center .product-card {
		transform: scale(1.0);
	}

	section.product-categories-section .product-card:hover {
		transform: translateY(0);
	}
}

/* Feature card second why */
.features-section-5 {
    padding: 80px 0;
    background-color: #143970;
}

.features-section-5 .section-header {
	text-align: center;
	margin-bottom: 60px;
}

section.features-section-5 h2.section-title {
	color: #fff !important;
}

.features-section-5 .subtitle-tag {
	background: var(--light-secondary-bg);
}

.features-section-5 .feature-card-5 {
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	border: 1px solid var(--light-bg);
	height: 100%;
	transition: all 0.3s ease;
}

.features-section-5 .feature-card-5:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.features-section-5 .card-icon-wrapper {
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: var(--light-bg);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.features-section-5 .card-icon-wrapper i {
	font-size: 1.8rem;
	color: var(--ancient-color);
}

.features-section-5 .card-title-5 {
	font-family: var(--heading-font);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--dark-text);
}

.features-section-5 .card-description-5 {
	font-size: 0.95rem;
	color: var(--text-color);
	margin-bottom: 25px;
	min-height: 4em;
}

.features-section-5 .learn-more-link {
	display: inline-block;
	font-weight: 700;
	color: var(--ancient-color);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.features-section-5 .learn-more-link:hover {
	color: var(--primary-color);
}


@media (max-width: 991px) {
	.features-section-5 {
		padding: 60px 0 40px;
	}

	.features-section-5 .feature-card-5 {
		margin-bottom: 20px;
	}
}

/* counter section */
section.counter {
	padding: 60px 0;
}

section.counter .counter-div {
	background: var(--linear-gradiant-82);
	border-radius: 45px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding: 40px 0 0;
}

section.counter .counter-head {
	font-size: 62px;
	font-family: var(--heading-font);
	margin-bottom: 0;
}

section.counter .counter-description {
	font-size: 22px;
}

section.counter .description-partner {
	font-size: 28px;
	margin-bottom: 0;
}

section.counter .description-partner .highlight {
	color: var(--primary-color);
	font-weight: inherit;
	font-size: inherit;
}

section.counter .certification-div {
	background-color: var(--white-color);
	border-top-left-radius: 40px;
}

section.counter img.certification-logo.img-fluid {
	width: 60%;
}

section.counter .certification-carousel {
	padding: 25px 0;
}

@media (max-width:767px) {
	section.counter {
		padding: 30px 0;
	}

	section.counter .description-partner {
		margin-bottom: 15px;
	}
}

/* Product Portfolio Section */
.product-portfolio {
	background-color: var(--ancient-color);
	color: var(--white-color);
	padding: 80px 0;
}

.product-portfolio .section-title {
	color: var(--white-color);
}

.product-portfolio .product-card {
	padding: 16px 0;
	transition: var(--transition-4s);
}

.product-portfolio .product-card-inner {
	overflow: hidden;
}

.product-portfolio .product-card-inner img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-portfolio .product-img {
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.09);
	padding: 20px;

}

.product-portfolio .product-info,
.product-portfolio .product-info .product-card-inner-head {
	color: var(--white-color);
}

.product-portfolio .product-info {
	padding: 20px;
}

.product-portfolio .product-info h5 {
	font-weight: 600;
	margin-bottom: 2px;
}

.product-portfolio .product-info p {
	font-size: 0.95rem;
	color: var(--highlight-text);
	margin-bottom: 0;
}

.product-portfolio .product-info .category-link {
	margin-top: 10px;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.09);
	border-radius: 15px;
	color: var(--white-color);
}

.product-portfolio .custom-owl-nav {
	display: flex;
	gap: 15px;
}

.product-portfolio .custom-owl-nav button {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: transparent;
	color: var(--white-color);
	transition: var(--transition-4s);
	cursor: pointer;
	outline: none;
	border: 1px solid;
}

.product-portfolio .custom-owl-nav button:hover {
	background-color: var(--primary-color);
	color: var(--ancient-color);
}

.product-portfolio .custom-owl-nav button:focus {
	box-shadow: 0 0 0 0.25rem rgba(161, 198, 51, 0.5);
}

.product-portfolio .owl-carousel .owl-nav,
.product-portfolio .owl-carousel .owl-dots {
	display: none !important;
}

@media (max-width: 991.98px) {
	.product-portfolio {
		padding: 60px 0;
	}
}

@media (max-width: 575.98px) {
	.product-portfolio {
		padding: 40px 0;
	}
}

/* Pharma Franchise Section */
.partnership-section {
	padding: 80px 0;
	background: url('assets/images/background-pharma-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--light-bg);
	border-radius: 12px;
}

.partnership-section .subtitle-tag {
	color: var(--ancient-color);
	background-color: var(--white-color);
}

.partnership-section .section-title {
	color: var(--ancient-color);
}

.partnership-section .section-title .text-highlight {
	color: var(--highlight-text);
	font-weight: inherit;
	font-size: inherit;
}

.partnership-section .step-col {
	position: relative;
}

.partnership-section .step-card {
	background-color: var(--white-color);
	border-radius: 12px;
	padding: 25px;
	height: 100%;
}

.partnership-section .step-number {
	font-family: var(--heading-font);
	font-size: 110px;
	font-weight: 700;
	line-height: 1;
	background: var(--linear-gradiant-secondary-180);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin-bottom: 25px;
}

.partnership-section .step-title {
	font-size: 25px;
	font-weight: 600;
	color: var(--ancient-color);
	margin: 0;
	line-height: 1.3;
}

.partnership-section .step-arrow-btn {
	position: absolute;
	top: 50%;
	right: -24px;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--white-color);
	border: 1px solid var(--light-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	cursor: pointer;
	overflow: visible;
}

.partnership-section .step-arrow-btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 5px solid var(--ripple-bg);
	transform: translate(-50%, -50%) scale(1);
	opacity: 0.8;
	animation: outer-ripple 2s infinite ease-out;
	z-index: 0;
}

@keyframes outer-ripple {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.8;
	}

	70% {
		transform: translate(-50%, -50%) scale(2);
		opacity: 0;
	}

	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0;
	}
}

.partnership-section .step-arrow-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 5px solid var(--ripple-bg);
	transform: translate(-50%, -50%) scale(1);
	opacity: 0.8;
	animation: outer-ripple 2s infinite ease-out 1s;
	z-index: 0;
}


.partnership-section .step-col:nth-child(-n+2) .step-arrow-btn {
	display: flex;
}

.partnership-section .step-col:last-child .step-arrow-btn {
	display: none;
}

.partnership-section .step-arrow-btn svg {
	width: 18px;
	height: 18px;
	color: var(--ancient-color);
	transition: var(--transition-4s);
}

.partnership-section .step-arrow-btn:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.partnership-section .step-arrow-btn:hover svg {
	color: var(--white-color);
	transform: translateX(3px);
}

.partnership-section .step-card p {
	color: var(--text-color);
}

.partnership-section .step-arrow-btn {
	display: none;
}

@media (min-width: 992px) {
	.partnership-section .step-col:nth-child(-n+2) .step-arrow-btn {
		display: flex;
	}
}


@media (max-width: 991.98px) {
	.partnership-section .product-portfolio {
		padding: 60px 0;
	}

	.partnership-section .section-title {
		margin-bottom: 10px;
	}

	.partnership-section .step-card {
		padding: 20px;
		margin-bottom: 20px;
	}

	.partnership-section .step-arrow-btn {
		position: relative;
		top: 0;
		right: 0;
		transform: none;
		margin-top: 15px;
		align-self: flex-start;
	}

	.partnership-section .step-col:nth-child(-n+2) .step-arrow-btn {
		display: none;
	}
}

/* Contact Section Css */
.contact-section {
	padding: 80px 0;
}

.contact-section .contact-section-inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #1e386c;
    margin: 10px;
    padding: 80px 0;
    color: var(--white-color);
    border-radius: 12px;
}

.contact-section .subtitle-tag {
	background: unset;
	color: var(--white-color);
	border: 2px solid var(--white-color);
	border-style: dashed;
}

.contact-section .contact-form .form-label {
	color: var(--highlight-text);
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.contact-section .contact-form .form-control {
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--white-color);
	border-radius: 8px;
	padding: 15px 20px;
	font-size: 1rem;
	transition: var(--transition-4s);
}

.contact-section .contact-form .form-control:focus {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(161, 198, 51, 0.3);
	color: var(--white-color);
}

.contact-section .contact-form textarea.form-control {
	min-height: 150px;
	resize: none;
}

.contact-section .testimonial-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 50px;
	padding-bottom: 0;
	height: 100%;
	overflow: hidden;
}

.contact-section .testimonial-card h3 {
	color: var(--white-color);
	font-size: 32px;
}

.contact-section .testimonial-card .highlight {
	color: var(--highlight-text);
}

.contact-section .testimonial-quote-icon {
	color: var(--testimonials-quote);
	font-size: 92px;
	font-weight: 900;
	line-height: 1;
	font-family: serif;
}

.contact-section .testimonial-text {
	font-size: 20px;
	line-height: 1.5;
}

.contact-section .author-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section .author-details img {
	width: 50px !important;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
}

.contact-section .author-details h5 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.contact-section .author-details p {
	font-size: 0.85rem;
	color: var(--highlight-text);
	margin: 0;
	line-height: 1.2;
}

.contact-section .testimonial-nav {
	display: flex;
	gap: 10px;
}

.contact-section .testimonial-nav button {
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: transparent;
	color: var(--white-color);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: var(--transition-4s);
	cursor: pointer;
}

.contact-section .testimonial-nav button:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--ancient-color);
}

@media (max-width: 991.98px) {
	.contact-section {
		padding: 30px 0;
	}

	.contact-section .row {
		padding: 0 15px;
	}

	.contact-section .testimonial-text {
		font-size: 16px;
	}

	.contact-section .testimonial-card {
		/* margin-top: 40px; */
		padding: 30px;
	}

	.contact-section .testimonial-quote-icon {
		font-size: 6rem;
		margin-bottom: 10px;
	}

	.contact-section .contact-section-inner {
		padding: 40px 0;
	}
}

/* --- BLOG SECTION STYLES --- */
.blog-section {
    padding: 0px 0 60px 0;
    background-color: var(--white-color);
}

.blog-section .section-title {
	font-weight: 600;
	text-align: center;
	margin-bottom: 50px;
}

.blog-section .blog-card {
	border-radius: 12px;
	background-color: var(--light-bg);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-section .blog-card>a {
	color: inherit;
	text-decoration: none;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-section .featured-blog {
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.blog-section .featured-blog .blog-img-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 16/9;
}

.blog-section .featured-blog img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-section .featured-blog:hover img {
	transform: scale(1.05);
}

.blog-section .featured-blog .blog-date-overlay .day {
	font-size: 32px;
	font-weight: 700;
}

.blog-section .blog-content .subtitle-tag {
	background-color: var(--light-bg);
	border: 1px solid var(--dark-text);
	color: var(--dark-text);
	margin-bottom: 5px;
}

.blog-section .featured-blog .blog-content {
	padding: 25px 15px 0;
}

.blog-section .featured-blog h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.3;
	color: var(--ancient-color);
}

.blog-section .featured-blog p.blog-description {
	font-size: 1rem;
	color: var(--text-color);
	margin-bottom: 20px;
}

.blog-section .sidebar-blog-wrapper {
	display: flex;
	flex-direction: column;
	gap: 25px;
	height: 100%;
}

.blog-section .sidebar-blog-card {
	display: flex;
	padding: 20px;
	background-color: var(--light-bg);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	flex: 1 1 auto;
}

.blog-section .sidebar-blog-card a {
	display: flex;
	width: 100%;
}

.blog-section .sidebar-blog-card .blog-img-wrapper {
	position: relative;
	flex-shrink: 0;
	width: 250px;
	border-radius: 12px;
	height: 100%;
	overflow: hidden;
}

.blog-section .sidebar-blog-card .blog-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-section .sidebar-blog-card:hover img {
	transform: scale(1.1);
}

.blog-section .featured-blog .blog-date-overlay,
.blog-section .sidebar-blog-card .blog-date-overlay {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background-color: rgba(255, 255, 255, 0.25);
	color: var(--white-color);
	padding: 10px 8px;
	border-radius: 8px;
	text-align: center;
	line-height: 1;
	z-index: 10;
}

.blog-section .sidebar-blog-card .blog-date-overlay .day {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
}

.blog-section .sidebar-blog-card .blog-date-overlay .month {
	font-size: 0.7rem;
	display: block;
}

.blog-section .featured-blog .blog-date-overlay {
	bottom: 20px;
	right: 20px;
	padding: 15px 12px;
	border-radius: 10px;
}

.blog-section .featured-blog .blog-date-overlay .month {
	font-size: 0.9rem;
}

.blog-section .sidebar-blog-card .blog-content {
	padding: 20px;
	flex-grow: 1;
}

.blog-section .sidebar-blog-card h5 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 28px;
	line-height: 1.3;
	color: var(--ancient-color);
}

.blog-section .global_btn {
	background-color: transparent;
}

.blog-section .global_btn .text {
	color: var(--dark-text);
	font-size: 16px;
}

@media (max-width: 1199.98px) {
	.blog-section .sidebar-blog-card .blog-img-wrapper {
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 991.98px) {
	.blog-section {
		padding: 30px 0;
	}

	.blog-section .sidebar-blog-card {
		display: block;
	}

	.blog-section .featured-blog .blog-img-wrapper {
		aspect-ratio: 4/3;
	}

	.blog-section .sidebar-blog-wrapper {
		gap: 15px;
	}
}

@media (max-width: 575.98px) {
	.blog-section .featured-blog h4 {
		font-size: 1.3rem;
	}

	.blog-section .sidebar-blog-card .blog-img-wrapper {
		width: 100%;
		height: 100%;
	}

	.blog-section .sidebar-blog-card .blog-content {
		padding: 15px;
	}

	.blog-section .sidebar-blog-card h5 {
		font-size: 1rem;
	}
}

/* Footer Changes */
.main-footer {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #1e386c;
    color: var(--highlight-text);
    padding-top: 80px;
    width: 100%;
    margin-top: auto;
}

.main-footer .footer-heading-lg {
	font-family: var(--heading-font);
	color: var(--white-color);
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 25px;
	display: block;
}

.main-footer .footer-logo-section p {
	color: var(--highlight-text);
}

.main-footer .footer-social-links a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--white-color);
	margin-right: 10px;
	transition: var(--transition-4s);
}

.main-footer .footer-social-links a:hover {
	background-color: #ad3627;
	color: var(--ancient-color);
}

.main-footer .footer-links ul,
.main-footer .footer-products ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.container {
	max-width: 94% !important;
	height: auto !important;
}

.main-footer .footer-links li,
.main-footer .footer-products li {
	margin-bottom: 12px;
}

.main-footer .footer-links a,
.main-footer .footer-products a {
	color: var(--highlight-text);
	font-size: 0.95rem;
	transition: var(--transition-4s);
	display: inline-block;
}

.main-footer .footer-links a:hover,
.main-footer .footer-products a:hover {
	color: #ad3627;
	transform: translateX(5px);
}

.main-footer .footer-bottom-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 30px 0;
}

.main-footer .contact-info-block {
	padding: 5px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer .contact-inner {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.main-footer .contact-item i {
	width: 24px;
	height: 24px;
	color: var(--white-color);
	flex-shrink: 0;
	margin-right: 15px;
	margin-top: 4px;
}

.main-footer .contact-item-title {
	font-size: 15px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 4px;
	font-family: var(--text-font);
	display: block;
}

.main-footer .contact-item p {
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 0;
	line-height: 1.3;
}

.main-footer .footer-copyright {
	font-size: 15px;
	color: var(--highlight-text);
}

.main-footer .footer-copyright a {
	color: var(--highlight-text);
	transition: var(--transition-4s);
}

.main-footer .footer-copyright a:hover {
	color: var(--primary-color);
}

.main-footer .footer-logo {
	width: 240px;
	height: auto;
	margin-bottom: 15px;
}

@media (max-width: 991.98px) {
	.main-footer {
		padding: 60px 0 30px;
	}

	.main-footer .footer-logo-section {
		margin-bottom: 40px;
	}

	.main-footer .footer-links,
	.main-footer .footer-products {
		margin-bottom: 40px;
	}

	.main-footer .contact-info-block {
		padding: 10px 0;
	}

	.main-footer .contact-item {
		margin-bottom: 20px;
	}
}


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

.img-border-primary {
	border: 4px solid #ad3627;
}

.stat-card-base {
	background-color: var(--light-secondary-bg);
	text-align: center;
}

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

.stat-number-primary {
	color: #ad3627;
}

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

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

.lead {
	font-size: 16px !important;
	font-weight: 300;
}

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

.lead-quote {
	border-left: 5px solid var(--primary-color);
	background-color: var(--light-secondary-bg);
}

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

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

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

.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: var(--light-secondary-bg);
	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(--highlight-bg);
}

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

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

.value-card-title {
	color: var(--ancient-color);
	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 #ad3627;
}

.feature-title-primary {
	color: #ad3627;
	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(--ancient-color);
}

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

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

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

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

/* ------------------------------------------------------------------
   CONTACT US PAGE SPECIFIC STYLES
------------------------------------------------------------------ */

.border-primary-thick {
	border: 2px solid #ad3627;
}

.contact-info-card {
	background-color: var(--ancient-color);
	color: var(--white-color);
}

.contact-card-title {
	font-size: 1.6rem;
	margin-bottom: 30px;
	color: var(--primary-color);
}

.contact-detail-text {
	font-size: 1.1rem;
	margin: 0;
}

.font-normal-style {
	font-style: normal;
}

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

.map-embed {
	height: 400px;
	background-color: var(--ripple-bg);
	border-radius: 6px;
	overflow: hidden;
}

.map-text-placeholder {
	line-height: 400px;
	/* Vertically centers the text */
	margin: 0;
}

.map-embed iframe {
	width: 100% !important;
	height: 500px !important;
}

/* Breadcrumb css */
.breadcrumb-section {
    background: url('http://hivends.org/healthcard/wp-content/uploads/2025/12/bredcum.avif') rgba(0,0,0,0.5);
    background-color: #001a48;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 160px 0px 80px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-bottom: 40px;
    border-bottom: 3px solid #ad3627;
    background-blend-mode: multiply;
}

.breadcrumb-section .page-header-title {
	font-family: var(--heading-font);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--white-color);
	margin: 0;
	line-height: 1.2;
}

.simple-breadcrumb-nav {
	font-family: var(--text-font);
	font-size: 1rem;
	white-space: nowrap;
}

.simple-breadcrumb-nav a {
	color: var(--light-bg);
	font-weight: 500;
	transition: var(--transition-4s);
}

.simple-breadcrumb-nav a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.simple-breadcrumb-nav .separator {
	margin: 0 8px;
	color: var(--highlight-text);
	opacity: 0.8;
}

.simple-breadcrumb-nav .current-page-title {
	color: #ad3627;
	font-weight: 600;
}

.why-heading {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.2;
	color: #152238;
}

.why-highlight {
	color: #376aa6;
}

.why-box .why-num {
	font-size: 18px;
	font-weight: 600;
	margin-right: 25px;
	color: #808ea4;
}

.why-text {
	font-size: 18px;
	font-weight: 500;
	color: #0d1b2a;
	flex: 1;
}

.why-arrow {
	background: #f1f4f9;
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 18px;
	font-weight: bold;
	transition: .3s;
	cursor: pointer;
}

.why-arrow:hover {
	background: #376aa6;
	color: #fff;
}

/* image */
.why-img-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
}

.why-img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

@media (max-width: 767.98px) {
	.container {
		max-width: 100% !important;
		height: auto !important;
	}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #ffffff !important;
}

	body,
	section,
	footer {
		overflow-x: hidden !important;
	}

	.breadcrumb-section {
		padding: 140px 0 50px;
	}

	section.banner.position-relative {
		height: 475px !important;
	}

	.breadcrumb-section .page-header-title {
		font-size: 1.8rem;
		text-align: center;
		margin-bottom: 10px;
	}

	video.banner-video {
		width: unset !important;
	}

	section.banner .gradient-overlay {
		background: linear-gradient(to right, rgb(16 33 67 / 90%) 35%, rgb(16 32 73 / 85%) 100%) !important;
	}

	.col-md-4.text-end {
		text-align: center !important;
	}
}

/* mobile quick menu */

#sequence {
	width: 100%;
	float: left;
	background: var(--linear-gradiant-82);
	position: fixed;
	bottom: 0px;
	z-index: 100;
	padding: 0;
	color: var(--white-color) !important;
	margin: 0 !important;
}

#sequence a {
	width: 33.3333%;
	float: left;
	text-align: center;
	padding: 8px 0;
	font-size: 15px;
	color: var(--white-color) !important;
	font-weight: 600;
	text-decoration: none !important;
	border-right: 1px solid;
}

/* Form  submit button */
.contact-form input.wpcf7-form-control.wpcf7-submit {
	font-size: 14px;
	font-weight: 600;
	border: none;
	background-color: #ad3627;
	padding: 15px 24px 15px 24px;
	display: inline-block;
	align-items: center;
	border-radius: 99px;
	position: relative;
	transition: all .5s cubic-bezier(.77, 0, .175, 1);
}

.contact-form .form-control::placeholder {
	color: var(--highlight-text);
}

@media (min-width: 767px) and (max-width: 1399px) {
	.header-right-bar {
		gap: 4px;
	}

	.global_btn {
		font-size: 12px;
	}
}


/* New cta section css */
.cta-banner-section {
	position: relative;
	padding: 100px 0;
	min-height: 400px;
	background: url('./images/imaginerrr.webp') center center / cover no-repeat;
	background-attachment: fixed;
	overflow: hidden;
}

.cta-banner-section .cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgb(32 32 32 / 90%) 35%, rgb(55 56 58 / 60%) 70%, rgba(16, 33, 67, 0.3) 100%);
	z-index: 1;
}

.cta-banner-section .cta-content {
	position: relative;
	z-index: 2;
	color: var(--white-color);
	max-width: 650px;
}

.cta-banner-section .cta-content .section-title {
	color: var(--white-color);
	margin-bottom: 25px;
}

.cta-banner-section .cta-content p {
	color: var(--highlight-text);
	margin-bottom: 40px;
}

@media (max-width: 991.98px) {
	.cta-banner-section {
		padding: 60px 0;
	}

	.cta-banner-section .cta-overlay {
		background: linear-gradient(to right, rgb(32 32 32 / 90%) 35%, rgb(55 56 58 / 60%) 70%, rgba(16, 33, 67, 0.3) 100%);
	}

	.cta-banner-section .cta-content {
		max-width: 100%;
		text-align: center;
	}
}

/* Testimonials section */
.testimonials-section {
    background-color: var(--white-color);
	padding:0 0 60px 0;
}

.testimonials-intro {
	margin-bottom: 50px;
}

.testimonials-intro .subtitle-tag {
	background-color: var(--primary-color);
	color: var(--ancient-color);
}

.testimonials-intro .section-title {
	color: var(--ancient-color);
	margin-bottom: 20px;
}

.testimonials-intro p {
	color: var(--text-color);
	margin-bottom: 30px;
}

.testimonial-card {
	background-color: var(--light-bg);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	/* margin-bottom: 30px; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.testimonial-card .stars {
	color: #FFC107;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.testimonial-card p {
	color: var(--dark-text);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.testimonial-card .author-info {
	border-top: 1px solid var(--ripple-bg);
	padding-top: 15px;
	display: flex;
	align-items: center;
}

.testimonial-card .author-image {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	background-color: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.testimonial-card .author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.testimonial-card .author-name {
	font-family: var(--heading-font);
	font-weight: 700;
	color: var(--ancient-color);
	margin-bottom: 2px;
}

.testimonial-card .author-title {
	font-size: 0.85rem;
	color: var(--text-color);
}

@media (max-width: 767.98px) {
	.testimonials-section {
		padding: 40px 0;
	}

	.testimonials-intro {
		text-align: center;
	}

	.testimonials-intro .section-title,
	.testimonials-intro p {
		margin-left: auto;
		margin-right: auto;
	}

	.testimonials-intro .global_btn {
		margin: 0 auto;
	}
}

/* contact page css */
.contact-page.row.py-5 {
    background: var(--light-bg);
    background: linear-gradient(rgb(3 3 3 / 58%), rgb(0 0 0)), url(assets/images/contact-page-bg.webp) center / cover no-repeat;
    padding: 40px;
}
.contact-form label {
    color: #fff;
}
.contact-page.row.py-5 p {
    color: #fff !important;
}