.elevatezoom_box {
	margin-bottom: 15px;
}

.sp-slides-container:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 9999;
}

.background-image-landing {
	position: relative;
	background-image: url("https://vlive.demo.com.my/Uploads/MediaFiles/b/1761185314-19.jpg");
	background-size: cover;
	background-position: center;
}

.background-image-landing::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.9);
}

/* --- MAIN LAYOUT --- */
.oxy-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
	gap: 40px;
}

.oxy-container-last {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	padding: 20px 20px 0;
}

/* --- LEFT SIDE: TEXT AREA --- */
.oxy-flex-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 2rem;
	/* spacing between text elements */
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.oxy-flex-item-background,
.oxy-item-subtitle,
.oxy-item-title,
.oxy-item-text,
.image-container,
.oxy-btn-container,
.video-container-oxy,
.sub-title,
.card-container,
.video-container-oxy,
.oxy-container-last,
.banner {
	opacity: 0;
	/* start hidden */
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.3s;
}

/* --- Red background text --- */
.oxy-flex-item-background {
	display: inline-block;
	/* makes background wrap text only */
	background-color: #b72126;
	color: #fff;
	font-size: 2.5rem;
	padding: 8px 16px;
	margin-bottom: 1rem;
	line-height: normal;
	text-align: center;
	font-weight: 900;
}

/* --- Subtext, title, etc. --- */
.oxy-item-subtitle {
	font-size: 2.5rem;
	color: #EE3E70;
	margin-bottom: 0.8rem;
	animation-delay: 0.3s;
	font-weight: 900;
	line-height: normal;
}

.oxy-item-title {
	font-size: 4rem;
	font-weight: 900;
	color: #EE3E70;
	margin-bottom: 0.8rem;
	animation-delay: 0.8s;
	font-weight: 900;
	line-height: normal;
}

.oxy-item-text {
	font-size: 2.5rem;
	color: #555;
	margin-bottom: 0.8rem;
	animation-delay: 1.3s;
	font-weight: 900;
	line-height: normal;
}

/* --- RIGHT SIDE: IMAGE --- */
.image-container {
	flex: 1;
	text-align: right;
}

.image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

/* --- BUTTON BELOW CONTENT --- */
.oxy-item-btn {
	display: inline-block;
	background-color: #b72126;
	color: #fff;
	padding: 14px 45px;
	border: none;
	border-radius: 8px;
	font-size: 1.2rem;
	font-weight: 900;
	cursor: pointer;
	text-align: center;
	margin: 30px auto;
	transition: all 0.3s ease;
}

.oxy-item-btn:hover {
	transform: scale(1.05);
}

.oxy-btn-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {

	.oxy-container,
	.oxy-container-last {
		flex-direction: column;
		text-align: center;
	}

	.oxy-flex-container {
		align-items: center;
	}

	.image-container {
		text-align: center;
	}

	.oxy-item-title {
		font-size: 3rem;
	}

	.oxy-item-text,
	.oxy-item-subtitle {
		font-size: 2rem;
	}

	.oxy-flex-item-background {
		font-size: 2rem;
	}
}

.video-container-oxy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}

.background-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 23rem;
	font-weight: 900;
	color: rgba(238, 62, 112, 0.3);
	white-space: nowrap;
	z-index: 0;
	pointer-events: none;
	user-select: none;
	line-height: 1;
	max-width: 100vw;
	overflow: hidden;
}

.oxy-main-title {
	font-size: 3rem;
	font-weight: 900;
	color: #a01824;
	margin: 30px 0 20px;
	padding-bottom: 20px;
}

.video-box {
	width: 80%;
	margin: 0 auto 40px;
	aspect-ratio: 16/9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* --- Subsection Title --- */
.sub-title {
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 20px;
	text-align: center;
	line-height: normal;
}

/* --- 3 Info Cards --- */
.card-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.card img {
	width: 100%;
	object-fit: cover;
}

.card:hover {
	transform: scale(1.05);
}

.card-title {
	background-color: #EE3E70;
	color: white;
	padding: 10px;
	font-weight: 900;
	font-size: 1.1rem;
	text-align: center;
}

/* --- Bottom Text --- */
.bottom-text {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 50px;
	color: #b72126;
	line-height: normal;
	text-align: center;
}

.bottom-text .bottom-text-span {
	display: inline;
	color: #EE3E70;
	font-size: 3.5rem;
	padding: 0 8px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.main-title {
		font-size: 1.6rem;
	}

	.card {
		width: 90%;
	}

	.video-box {
		width: 100%;
	}

	.bottom-text {
		font-size: 2rem;
	}

	.bottom-text .bottom-text-span {
		font-size: 2.5rem;
	}

	.oxy-main-title {
		font-size: 2rem;
	}

	.sub-title {
		font-size: 1.5rem;
	}
}

.info-row {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	flex: 1;
	gap: 20px;
	margin-top: 20px;
	width: 100%;
}

/* --- EACH TEXT ITEM --- */
.info-item {
	display: inline-block;
	background-color: #b72126;
	color: #fff;
	font-weight: 900;
	padding: 15px 20px;
	transition: 0.3s ease;
	flex-grow: 1;
	text-align: center;
	font-size: 1.1rem;
}

.info-item:hover {
	transform: scale(1.05);
}

.left-container,
.right-container {
	width: 48%;
}

.left-container img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

@media (max-width: 768px) {

	.left-container,
	.right-container {
		width: 100%;
	}

	.oxy-container-last {
		flex-direction: column-reverse;
	}
}

.custom-form-input {
	border: 1px solid #ddd;
	background-color: #fafafa;
	color: #666;
	border-radius: 20px;
	margin-top: 5px;
}

.custom-form-input-area {
	width: 100%;
	padding: 12px 20px;
	margin-top: 5px;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 1rem;
	color: #666;
	background-color: #fafafa;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
	font-family: inherit;
	outline: none;
	resize: vertical;
	resize: none;
}

.custom-form-input::placeholder,
.custom-form-input-area::placeholder {
	color: #A9A9AC;
}

.custom-btn {
	width: 100%;
	background-color: #b72126;
	color: white;
	font-weight: 900;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: inherit;
	margin: 20px 0 0 0;
}

.form-text-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 10px;
	margin-bottom: 10px;
}

.form-container label {
	display: none;
}

.form-text-text {
	font-size: 1.2rem;
	line-height: normal;
	color: #000;
}

.form-text-title {
	font-size: 4rem;
	color: #EE3E70;
	font-weight: 900;
	line-height: normal;
}

.form-text-subtitle {
	font-size: 2em;
	color: #b72126;
	font-weight: 900;
	line-height: normal;
}

@media (max-width: 768px) {

	.form-text-title {
		font-size: 3rem;
	}

	.form-text-subtitle {
		font-size: 1.5rem;
	}
}

.banner-container {
	margin: 3rem 0;
}

.banner {
	width: 80%;
	aspect-ratio: 16/9;
	margin: 2rem auto;
}

.banner img {
	width: 100%;
}

@media (max-width: 768px) {
	.banner {
		width: 100%;
	}
}


/*About US*/
.about-us-banner-container {
	background-image: url("https://vlive.demo.com.my/Uploads/MediaFiles/b/1761540201-42.jpg	");
	background-size: cover;
	background-position: center;
	height: 80vh;
}

.about-us-banner-title {
	font-size: 1.5rem;
	background-color: white;
	line-height: normal;
	color: #D9B87B;
	font-style: italic;
	padding: 5px 10px;
}

.about-us-banner-content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	width: 50%;
	margin: auto 2rem;
	height: 100%;
	gap: 20px;
}

.about-us-banner-content h1 {
	color: #fff;
	text-transform: uppercase;
}

.about-us-banner-content .product-title {
	color: #fff;
	font-weight: 900 !important;
}

.product-title a {
	color: #fff;
}

.about-us-second-container {
	height: 100%;
	margin: auto 1rem;
}

.about-us-second-container-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.about-us-second-container-content-title {
	font-size: 2.5rem;
	line-height: normal;
	text-align: left;
	font-weight: 900;
	margin-bottom: 20px;
}

.about-us-second-container-content-text {
	font-size: 1.125rem;
	text-align: justify;
	line-height: 1.7rem;
	margin-bottom: 30px;
}

.red-page-color {
	color: #B72126;
}

.yellow-page-color {
	color: #FFD700;
}

@media (max-width: 768px) {
	.about-us-banner-content {
		width: 90%;
	}

	.about-us-banner-container {
		height: 55vh;
	}
}

.passion-container {
	margin-top: 40px;
}

.common-flex-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}

.common-flex-reverse-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	text-align: center;
}

.common-flex-col-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.common-flex-col-left-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	margin: 20px;
}

.common-left-container,
.common-right-container {
	width: 48%;
}

.common-left-container .common-image-container {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.common-title-h3 {
	font-size: 3rem;
	line-height: normal;
	font-weight: 900;
	margin-bottom: 20px;
}

.common-text {
	text-align: justify;
	font-size: 1.2rem;
	line-height: 1.5rem;
}

@media (max-width: 768px) {
	.common-flex-container {
		flex-direction: column-reverse;
		justify-content: center;
	}

	.common-flex-reverse-container {
		flex-direction: column-reverse;
		justify-content: center;
	}

	.common-left-container,
	.common-right-container {
		width: 100%;
	}

}

.vision-container {
	margin: 40px 0;
}

.intro {
	margin: 40px 20px;
}

.intro p {
	font-size: 1.3rem;
}

.two-columns-about-us {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 20px;
}

.column-about-us {
	flex: 1;
	min-width: 250px;
}

.column-about-us h4 {
	font-size: 1.2rem;
}

.health-list ul {
	list-style-type: disc;
	padding-left: 20px;
	color: #333;
	font-size: 1.2rem;
}

/* Health Codes Section */
.health-codes {
	margin: 40px 20px;
}

.codes {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.code-box {
	background-color: #B72126;
	color: white;
	border-radius: 10px;
	padding: 25px;
	flex: 1;
	min-width: 250px;
}

.code-box p {
	color: #fff !important;
	font-size: 1.2rem;
}

.code-box strong {
	font-weight: 900 !important;
}

/* Responsive Design */
@media (max-width: 768px) {

	.two-columns-about-us,
	.codes {
		flex-direction: column;
	}
}

.intro-section {
	margin: 40px 20px;
}

.intro-section h4 {
	font-size: 2.5rem;
}

.intro-section h1 {
	color: #B72126;
	font-size: 4rem;
	font-weight: 800;
}

.tech-area {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.tech-area-left {
	width: 30%;
}

.tech-area-left img {
	width: 100%;
}

.tech-area-right {
	width: 70%;
}

.technology {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}

.tech-text {
	flex: 1;
	min-width: 280px;
	text-align: left;
	font-size: 1.2rem;
}

.tech-text ul {
	list-style-type: disc;
	margin-left: 20px;
}

.tech-text strong {
	font-weight: 900 !important;
}

@media (max-width: 768px) {
	.tech-area {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-bottom: 40px;
	}

	.tech-area-left {
		width: 100%;
	}

	.tech-area-right {
		width: 100%;
	}

	.technology {
		flex-direction: column;
		align-items: center;
	}
}


.lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 250px;
	height: 250px;
}

.lines line {
	stroke: #B72126;
	stroke-width: 2;
}

.tech-descriptions {
	margin-top: 40px;
	text-align: left;
	color: #4b2d0e;
	font-size: 1.2rem;
}

.tech-descriptions p {
	margin-bottom: 20px;
}

.tech-descriptions strong {
	font-weight: 900 !important;
	line-height: 1.8rem;
}

.certifications {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.certifications img {
	width: 100%;
	object-fit: cover;
}

/* Section 2 */
.mission-section {
	background-color: #fff;
	text-align: center;
	padding: 60px 10%;
}

.mission-section h2 {
	color: #B72126;
	font-size: 3.5rem !important;
	font-weight: 700;
	margin-bottom: 50px;
}

.values {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 40px;
	width: 100%;
}

.value-box {
	width: 33%;
}

.value-box img {
	width: 70%;
	margin-bottom: 10px;
}

.value-box h3 {
	color: #B72126;
	margin-bottom: 5px;
}

.value-box p {
	color: #444;
	font-size: 1.2rem;
}

.flags {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 10px;
}

.flags img {
	width: 100%;
}

@media (max-width: 768px) {
	.values {
		flex-direction: column;
		align-items: center;
	}

	.value-box {
		width: 100%;
	}

	.flags {
		grid-template-columns: 1fr;
	}
}

/* Home Page */
.home-banner-scroll-con {
	width: 100%;
	overflow: hidden;
	background: #B72126;
	white-space: nowrap;
	box-sizing: border-box;
}

.scroll-text {
	display: inline-block;
	padding-left: 100%;
	animation: scroll-left 12s linear infinite;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 900;
	margin: 10px 0;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

.home-nutrients-section {
	position: relative;
	background-color: #E9E9E9;
	text-align: center;
	padding: 120px 10%;
	overflow: hidden;
}

/* Large transparent background text */
.home-nutrients-section-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 22vw;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.5);
	user-select: none;
	pointer-events: none;
	white-space: nowrap;
}

/* Main content */
.home-nutrients-section-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

.home-nutrients-section-content h4 {
	font-size: 3rem;
	font-weight: 900 !important;
	color: #000;
	margin-bottom: 15px;
}

.home-nutrients-section-content p {
	font-size: 1.2rem;
	line-height: 1.7;
	color: #000;
	font-weight: 900 !important;
	max-width: 80%;
	margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.home-nutrients-section {
		padding: 80px 5%;
	}

	.background-text {
		font-size: 45vw;
	}

	.home-nutrients-section-content h4 {
		font-size: 2.5em;
	}

	.home-nutrients-section-content p {
		font-size: 0.95em;
	}
}

.claim-btn {
	background: #B72126;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 900;
	padding: 14px 30px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 1px;
	margin: 20px auto;
	text-align: center;
	width: fit-content;
}

.claim-btn:hover {
	background: #B72126;
	transform: scale(1.05);
}

.shape-flex-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	position: relative;
}

.shape-flex-container-reverse {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	position: relative;
}

.shape-left-con,
.shape-right-con {
	width: 50%;
	position: relative;
}

.shape-container {
	position: relative;
	width: 100%;
	height: 900px;
}

@media (min-width: 1025px) {
	.shape-container {
		height: 900px;
	}
}

@media (max-width: 1024px) {
	.shape-container {
		height: 600px;
		width: 100%;
	}

	.shape-flex-container {
		flex-direction: column;
	}

	.shape-flex-container-reverse {
		flex-direction: column-reverse;
	}

	.shape-left-con,
	.shape-right-con {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.shape-container {
		height: 300px;
		width: 100%;
	}
}

.shape-text-cont {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row;
	gap: 20px;
	padding: 20px;
	position: relative;
	z-index: 999;
}

.shape-text-left,
.shape-text-right {
	width: 50%;
}

.shape-text-left h2 {
	font-size: 4rem;
	text-align: right;
	font-weight: 900;
}

.shape-text-right {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 768px) {
	.shape-text-cont {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.shape-text-left,
	.shape-text-right {
		width: 100%;
	}

	.shape-text-right {
		align-items: center;
	}

	.shape-text-left h2 {
		text-align: center;
	}
}

.see-more-btn {
	background-color: #b72126;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 900;
}

.see-more-btn:hover {
	background-color: #dc3a3f;
	color: #fff;
}

.see-more-btn a{
	color: #fff;
}

.shape-background-text {
	position: absolute;
	top: 50%;
	left: 5px;
	color: #fff;
	font-size: 13rem;
	font-weight: 900;
	width: fit-content;
	z-index: 1;
	opacity: 0.6;
	line-height: normal;
}

.shape-background-text-right {
	position: absolute;
	top: 50%;
	right: 5px;
	color: #fff;
	font-size: 13rem;
	font-weight: 900;
	width: fit-content;
	z-index: 1;
	opacity: 0.6;
	line-height: normal;
}

.shape-background {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	width: 100%;
	flex-wrap: wrap;
	align-content: flex-start;
	height: 100%;
}

.shape-overlay {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

.t-shape {
	background-image: url("https://vlive.demo.com.my/Uploads/MediaFiles/b/1761551285-43.png	");
}

.t-shape-bg {
	background-image: url('https://vlive.demo.com.my/Uploads/MediaFiles/b/1761551291-44.jpg	');
}

.o-shape-bg {
	background-image: url('https://vlive.demo.com.my/Uploads/MediaFiles/b/1761616325-45.jpg	');
}

.o-shape {
	background-image: url("https://vlive.demo.com.my/Uploads/MediaFiles/b/1761616330-46.png");
}

.n-shape-bg {
	background-image: url('https://vlive.demo.com.my/Uploads/MediaFiles/b/1761616336-47.jpg	');
}

.n-shape {
	background-image: url("https://vlive.demo.com.my/Uploads/MediaFiles/b/1761616340-48.png	");
}

.v-shape-bg {
	background-image: url('https://vlive.demo.com.my/Uploads/MediaFiles/b/1761616352-49.jpg	');

}

.v-shape {
	background-image: url("https://vlive.demo.com.my/Uploads/MediaFiles/b/1761616357-50.png	");
}

@media (max-width: 1024px) {

	.shape-background-text,
	.shape-background-text-right {
		font-size: 6.5rem;
		top: 10%;
	}

	.shape-background-text-right {
		left: 5px;
	}
}

@media (max-width: 768px) {

	.shape-background-text,
	.shape-background-text-right {
		bottom: 10%;
		top: unset;
		font-size: 5rem;
	}
}

.faq-container {
	background: white;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
	margin: 20px;
}

.faq-item {
	border-bottom: 1px solid #eee;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	background: #fff;
	color: #222;
	padding: 18px 22px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-size: 1.2rem;
	line-height: normal;
}

.faq-question:hover {
	background-color: #f5f5f5;
}

.faq-item.open .faq-question {
	color: #c62828;
	background-color: #fff;
}


.faq-answer {
	background-color: #f9f9f9;
	padding: 15px 22px;
	line-height: normal;
	color: #444;
	display: none;
	font-size: 1.2rem;
}

.faq-question::after {
	content: "▾";
	font-size: 16px;
	transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
	transform: rotate(180deg);
}

.faq-list ul {
	list-style-type: disc;
	padding-left: 20px;
}

.faq-title {
	font-size: 4rem;
	text-align: center;
	line-height: normal;
	margin: 30px 0;
}

.faq-p-title {
	font-size: 3rem;
	font-weight: 900;
	text-align: center;
	padding: 20px;
	line-height: normal;
}

.faq-contact-title {
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	padding: 20px;
	line-height: normal;
}

.number-list ul {
	list-style-type: decimal;
	padding-left: 20px;
}

.faq-contact-title,
.faq-p-title {
	color: #000;
}

.faq-contact-title a {
	text-decoration: underline;
	color: #000;
}


.products-section {
	text-align: center;
	padding: 60px 20px;
}

.products-section h1 {
	font-size: 2.5rem;
	font-weight: 900;
	color: #333333;
}

.products-grid {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

@media (max-width: 1024px) {
	.products-grid {
		flex-direction: column;
	}
}

.product-card-home {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 33%;
}

@media (max-width: 1024px) {
	.product-card-home {
		width: 100%;
	}
}

.product-divider {
	width: 50px;
	height: 4px;
	background-color: #d32f2f;
	border-radius: 2px;
	margin-bottom: 15px;
}

.product-card-home-left,
.product-card-home-right {
	width: 50%;
}

.product-card-home-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.product-card-home-left img {
	width: 75%;
	max-width: 250px;
	height: auto;
	margin-bottom: 15px;
}

.product-card-home-right h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #111;
	text-align: left;
}

.product-card-home-right p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
	text-align: left;
}

@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {

	.product-card-home-left,
	.product-card-home-right {
		width: 100%;
	}

	.product-card-home-right {
		align-items: center;
	}

	.product-card-home {
		flex-direction: column;
	}

	.product-card-home-right h2,
	.product-card-home-right p {
		text-align: center;
	}

	.product-divider {
		margin: 10px auto;
	}
}


.testimonials-section {
	text-align: center;
	padding: 60px 20px;
	background-color: #150F1D;
}

.testimonials-section h1 {
	color: #fff;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

.testimonials-grid-home {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin: 0 auto;
}

.testimonial iframe {
	width: 100%;
	min-height: 250px;
	border-radius: 8px;
	border: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
	background-color: #000;
}

.testimonial-btn-container {
	margin-top: 40px;
}

@media (max-width: 768px) {
	.testimonials-grid-home {
		grid-template-columns: 1fr;
	}
}

.tower-img {
	min-height: 120px;
	width: 100%;
	object-position: center;
	object-fit: cover;
	margin-bottom: -5px;
}

/* GLOBAL CONSULTANT */
.global-consultant {
	padding: 50px 20px;
}

.consultant-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	align-items: flex-start;
}

.consultant-img-con {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.consultant-img-con h3 {
	margin: 5px 0;
	font-size: 1.4rem !important;
}

.consultant-img-con p {
	font-size: 1rem !important;
	font-style: italic;
	color: #000
}

.consultant-photo {
	width: 50%;
	border-radius: 5px;
	margin: 20px;
}

.consultant-img-con {
	width: 45%;
}

.consultant-info {
	width: 55%;
}

.consultant-info h2 {
	color: #000;
	font-size: 2rem;
	margin-bottom: 15px;
	font-weight: 900 !important;
}

.consultant-info p {
	margin-bottom: 10px;
	text-align: justify;
	font-size: 1.2rem;
	color: #000;
}

@media (max-width: 768px) {
	.consultant-card {
		flex-direction: column;
	}

	.consultant-info,
	.consultant-img-con {
		width: 100%;
	}

	.consultant-photo {
		width: 80%;
	}
}

/* OUR TEAM */
.our-team {
	padding: 50px 20px;
	text-align: center;
}

.our-team h2 {
	margin-bottom: 30px;
	font-size: 2.5rem;
	color: #000;
}

.team-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.team-member-con {
	width: 33%;
}

.team-member-con img {
	width: 100%;
	border-radius: 5px;
}

.team-member-con h4 {
	margin-top: 10px;
	font-size: 1.5rem;
	color: #000;
	font-weight: 900 !important;
}

.team-member-con p {
	color: #000;
	font-size: 1rem;
	font-style: italic;
}

/* OUR SPEAKERS */
.our-speakers {
	padding: 50px 20px;
	text-align: center;
	color: #fff;
}

.our-speakers h2 {
	margin-bottom: 30px;
	font-size: 2.5rem;
	color: #B72126;
}

.speaker-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	justify-items: center;
}


.speaker img {
	width: 100%;
	border-radius: 5px;
}

.speaker h4 {
	margin-top: 15px;
	font-size: 1.5rem;
	font-weight: 900 !important;
	color: #B72126;
}

.speaker p {
	font-size: 1rem;
	color: #B72126;
	font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
	.consultant-card {
		flex-direction: column;
		text-align: center;
	}

	.speaker-container {
		grid-template-columns: 1fr;
	}

	.team-container {
		flex-direction: column;
	}

	.team-member-con {
		width: 100%;
	}

}

.certification-con {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	margin: 20px;

}

.cert-section {
	width: 30%;
	padding: 10px 20px;
}

.cert-section ul {
	list-style-type: none;
	padding-left: 0;
}

.cert-section li {
	font-size: 14px;
	line-height: 1.8;
	color: #333;
	font-weight: 900;
}

.cert-section li:hover {
	color: #b72126;
	cursor: pointer;
}

.cert-section ul li::before {
	content: ">";
	margin-right: 10px;
}

/* Link styles */
.cert-section a {
	text-decoration: none;
	color: #333;
}

.cert-section a:hover {
	text-decoration: underline;
	color: #b72126;
}

.cert-title-con {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	margin: 30px 0;
}

.cert-title-con img {
	width: 100%;
}

.cert-title {
	margin: 40px 20px;
	font-size: 3rem;
	color: #000;
	font-weight: 900;
}

@media (max-width: 768px) {
	.certification-con {
		flex-direction: column;
	}

	.cert-section {
		width: 100%;
	}
}

.testimonials-bg {
	background-color: #E9E9E9;
}

.testimonials-title {
	color: #000;
	text-align: center;
	text-transform: uppercase;
	margin: 40px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	;
}

.testimonials-item {
	width: 100%;
}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

.testimonials-paragraph {
	line-height: normal;
	color: #000;
	margin: 40px auto;
	text-align: center;
	font-size: 2rem;
}

.business-section-container {
	display: flex;
	padding: 40px 20px;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
}

.business-card-left,
.business-card-right {
	width: 50%;
}

.business-card-right img {
	width: 100%;
	padding: 20px;
}

.business-card-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 20px;
}

.business-title {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #fff;
	font-weight: 900;
	line-height: normal;
}

.business-subtitle {
	margin-bottom: 5px;
	color: #fff;
	font-weight: 900;
	font-size: 1.4rem;

}

.business-card-title {
	font-size: 1.6rem;
	margin-top: 20px;
	color: #91144A;
	font-weight: 900;
}

.business-card-para {
	font-size: 1.2rem;
	margin: 20px 0;
	color: #fff;
	line-height: normal;
	text-align: justify;
}

@media (max-width: 768px) {
	.business-card-left {
		width: 100%;
	}

	.business-card-right {
		width: 100%;
	}

	.business-section-container {
		flex-direction: column;
	}
}

.steps-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row;
	margin: 40px 20px;
}

.steps-container-left,
.steps-container-right {
	width: 50%;
	padding: 20px;
}

.steps-container-right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.steps-container-left img {
	width: 100%;
}

.steps-card-title {
	font-size: 3rem;
	line-height: normal;
	font-weight: 900;
	margin-bottom: 30px;
	color: #000
}

.steps-card-subtitle {
	font-size: 1.4rem;
	font-weight: 900;
	color: #D9E587;
	margin: 20px 0;
}

.steps-card-para {
	font-size: 1.2rem;
	line-height: normal;
	color: #000;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.steps-container {
		flex-direction: column-reverse;
	}

	.steps-container-left,
	.steps-container-right {
		width: 100%;
	}
}

.bsr-section-1 {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	padding: 100px 20px 80px 20px;
}

.bsr-1-subtitle {
	font-size: 1.3rem;
	font-weight: 900;
	color: #fff;
}

.bsr-1-title {
	font-size: 2.5rem;
	font-weight: 900;
	color: #fff;
	line-height: 1.3em;
}

.slide_scrollable {
	height: 42vw !important;
}

.bs-flex-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 50px 20px;
}

.bs-flex-container-title {
	font-size: 3rem;
	font-weight: 900;
	color: #fff;
	line-height: normal;
	margin: 30px 0 10px 0;
}

.bs-flex-container-para {
	margin-top: 1rem;
	font-size: 1.1rem;
	color: #fff;
	line-height: normal;
}

.bs-flex-container ul {
	list-style-type: decimal;
	margin-left: 3em;
}

.bs-flex-container li {
	padding-bottom: 0.8rem;
}

.bs-flex-container li strong {
	line-height: 20px;
}


.bs-flex-container strong {
	line-height: 20px;
	font-weight: 700 !important;
}

.bs-flex-row-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px;
	margin: 40px 0;
}

.bs-flex-row-reverse-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px;
	margin: 40px 0;
}

.bs-flex-row-container-left,
.bs-flex-row-container-right {
	width: 48%;
}

.bs-flex-row-reverse-container-left,
.bs-flex-row-reverse-container-right {
	width: 48%;
}

.bs-flex-row-container-right img,
.bs-flex-row-reverse-container-left img {
	width: 100%;
}

.bs-title {
	font-size: 2.8rem;
	line-height: normal;
	font-weight: 900;
	color: #5380C0;
	margin-bottom: 1em;
}

.bs-subtitle {
	font-size: 1.6rem;
	line-height: normal;
	font-weight: 900;
	color: #5380C0;
	margin-bottom: 1em;
}

.bs-para {
	font-size: 1.1rem;
	color: #fff;
	margin: 0.5em 0 1.6em 0;
}

.bs-title-2 {
	font-size: 2rem;
	color: #B72126;
	line-height: normal;
	font-weight: 900;
	line-height: 1.6em;
	margin-bottom: 1em;
}

.bs-para-2 {
	font-size: 1.1rem;
	color: #333333;
	line-height: 1.6em;
	margin: 0.8em 0 1em 0;
}

.bs-subtitle-2 {
	color: #b72126;
	font-weight: 700;
	margin-bottom: 1rem;
}

.bs-para-3 {
	font-size: 1.1rem;
	color: #333333;
	line-height: 1.6em;
}


@media (max-width: 768px) {
	.bs-flex-row-container {
		flex-direction: column;
	}

	.bs-flex-row-container-left,
	.bs-flex-row-container-right {
		width: 100%;
	}

	.bs-flex-row-reverse-container {
		flex-direction: column-reverse;
	}

	.bs-flex-row-reverse-container-left,
	.bs-flex-row-reverse-container-right {
		width: 100%;
	}
}

.contact-title {
	color: #b72126 !important;
	font-weight: 900;
}

.contact-submit-btn {
	background-color: #b72126 !important;
	color: white;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	cursor: pointer;
	font-family: inherit;
	margin-right: auto !important;
	padding: 12px 30px !important;
}

.contact-input {
	border: 0 !important;
	border-radius: 50px !important;
	margin-bottom: 5px;
}

.contact-input-area {
	border: 0 !important;
	border-radius: 20px !important;
}

.social-container {
	display: flex;
	gap: 15px;
	margin: 10px 0;
}

.social-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white !important;
	font-size: 22px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.social-icon:hover {
	transform: scale(1.1);
}

.facebook {
	background-color: #3b5998;
}

.instagram {
	background-color: #1a1a1a;
}

.youtube {
	background-color: #ff0000;
}

.news_description {
	border: 1px solid #ccc;
	padding: 20px;
	margin: 20px 0;
}

.spread-love {
	font-weight: bold;
	margin-bottom: 10px;
}

.social-icons {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 18px;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.social-icon:hover {
	transform: scale(1.1);
}

/* Brand colors */
.facebook {
	background: #1877f2;
}

.instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.twitter {
	background: #1da1f2;
}

.linkedin {
	background: #0077b5;
}

.pinterest {
	background: #bd081c;
}

.telegram {
	background: #0088cc;
}

.line {
	background: #00c300;
}

.whatsapp {
	background: #25d366;
}

.email {
	background: #7bc950;
}

.plus {
	background: #f7941e;
	font-weight: bold;
	font-size: 20px;
}

.claim-btn a {
	color: #fff;
}

.content-title {
	text-align: center;
	margin: 20px;
}

/*product page*/
.single-item {
	width: 90%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	padding: 8px 0;
}

.single-item:last-child {
	border-bottom: none;
}

.new-product-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin-top: 5vw;
}

.single-item img {
	height: 4em;
}

.single-item .item_details .txtover {
	text-align: left;
	margin: 0 3px;
}

.new-product-title,
.recent-view-title,
.product-search-title {
	font-size: 1.625rem;
	margin-bottom: 0.7em;
	margin-right: 0.5em;
	line-height: normal;
}

.recent-view-list {
	margin: 30px 0;
}

.product-search-container {
	width: 100%;
	margin: 30px 0;
}

.product-search-form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-bottom: 20px;
}

.search-product-input {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 3px 0 0 3px;
	outline: none;
	font-size: 14px;
	width: 65%;
}

.search-product-input::placeholder {
	color: #999;
}

.search-form-button {
	background-color: #b72126;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	width: 35%;
}

.search-form-button:hover {
	background-color: #dc3a3f;
}

.border-product {
	position: relative;
}

.border-product::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5vw;
	height: 100%;
	border-left: 1px solid #ddd;
}

@media only screen and (max-width: 767px) {
	.border-product::before {
		display: none;
	}
}

.sort_filter_title{
	padding-left: 30px;
}

@media (max-width: 768px) {
	.woot-widget-bubble  {
    	left: 20px !important;
  	}
}