/*
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.499
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;
}

:root {
	--clr-white: #ffffff;
	--clr-black: #000000;
	--clr-accent-gold: #E7BF5D;
	--clr-primary-dark: #151a2e;
	--clr-bg-overlay: rgba(0, 0, 0, 0.65);
	--clr-grey: #5D666F;
	--clr-border-light: rgba(255, 255, 255, 0.2);
	--clr-light-gray: #f7f9fc;
	--color-foreground: var(--clr-white);
	--color-border: rgba(255, 255, 255, 0.15);
	--grey-border: rgb(106 106 106 / 15%);
	--style-border-width: 1px;
	--style-border-width-buttons-primary: 1px;
	--style-border-radius-buttons-primary: 4px;
	--style-button-height: 44px;
	--font-button-size: 16px;
	--font-button--weight: 600;
	--font-button--family: 'Inter', sans-serif;
	--color-primary-button-text: var(--clr-white);
	--color-background: rgba(62, 72, 78, 1);
	--color-primary-button-background: rgb(255, 255, 255, 0);
	--color-primary-button-border: rgba(255, 255, 255, 1);
	--container-width: 90%;
	--nav-height: 80px;
	--font-body: 'Inter', sans-serif;
	--font-heading: 'Urbanist', sans-serif;
	--font-script: 'Marck Script', cursive;
	--fs-body: 16px;
	--fs-banner-title: 4.5rem;
	--fs-banner-script: 5.5rem;
	--width: 150px;
	--expanded-min-width: 420px;
	--transition-speed: 0.4s;
	--padding-content: 36px;
	--icon-size: 44px;
	--fa-icon-size: 70px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-body);
	font-size: var(--fs-body);
	color: var(--clr-primary-dark);
	background-color: var(--clr-white);
	overflow-x: hidden;
	line-height: 1.5;
}

.container {
	max-width: var(--container-width);
}

.text-accent {
	color: var(--clr-accent-gold) !important;
}

/* header css */
header.amzor-header {
	position: absolute;
	z-index: 2;
	width: 100%;
	padding: 0px 20px;
	transition: all 0.3s ease;
	border-bottom: 1px solid var(--clr-border-light);
}

header.amzor-header .border-right {
	transition: all 0.3s ease;
	border-right: 1px solid var(--clr-border-light);
}

header.amzor-header .border-left {
	transition: all 0.3s ease;
	border-left: 1px solid var(--clr-border-light);
}

header.amzor-header .contact-head {
	transition: all 0.3s ease;
	text-align: end;
	padding: 15px 0;
}

header.amzor-header .logo-head {
	transition: all 0.3s ease;
	padding: 15px 0;
}

header.amzor-header.navbar-scrolled {
	position: fixed;
	top: 0;
	background: var(--clr-white);
	z-index: 1024;
	padding: 0 10px;
	border-bottom: 1px solid var(--grey-border);
}

header.amzor-header.navbar-scrolled .border-right {
	border-right: 1px solid var(--grey-border);
}

header.amzor-header .border-left {
	border-left: 1px solid var(--grey-border);
}

header.amzor-header.navbar-scrolled .contact-head {
	text-align: end;
	padding: 10px 0;
}

header.amzor-header.navbar-scrolled .logo-head {
	padding: 10px 0;
}

@media (max-width:767px) {

	header.amzor-header .border-right,
	header.amzor-header.navbar-scrolled .border-right {
		border-right: none;
	}

	header.amzor-header .border-left,
	header.amzor-header.navbar-scrolled .border-left {
		border-left: none;
	}
}

/* Hero section */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 700px;
	width: 100%;
	background-color: #1a1a1a;
	color: var(--clr-white);
}

.hero-section h1 {
	font-family: var(--font-heading);
}

.hero-section .hero-swiper,
.hero-section .swiper-slide {
	width: 100%;
	height: 100%;
}

.hero-section .slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.hero-section .slide-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-section .bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--clr-bg-overlay);
	z-index: 1;
}

.hero-section .slide-content-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
	/* padding-bottom: var(--nav-height); */
	position: relative;
	max-width: 90%;
	margin: 0 auto;
	z-index: 2;
}

.mt-80 {
	margin-top: 80px;
}

.hero-section .banner-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translateY(20px);
}

.hero-section .subheading-bg {
	background-color: rgb(247 249 252 / 10%);
	border: none;
}

.hero-section .banner-title {
	font-family: var(--font-heading);
	font-size: var(--fs-banner-title);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(30px);
}

.hero-section .hero-text-script {
	font-family: var(--font-script);
	font-weight: 400;
	font-size: var(--fs-banner-script);
	line-height: 0.8;
	display: inline-block;
	margin-right: 10px;
}

.hero-section .banner-description {
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	max-width: 700px;
	opacity: 0;
	transform: translateY(30px);
}

.hero-section .btn-wrapper {
	opacity: 0;
	transform: translateY(30px);
}

.btn-pill {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: var(--clr-white);
	color: var(--clr-black);
	padding: 0.6rem 0.6rem 0.6rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-pill:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-black);
}

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

.hero-section .hero-nav-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: var(--nav-height);
	z-index: 10;
	display: flex;
	border-top: 1px solid var(--clr-border-light);
}

.hero-section .hero-arrow {
	position: relative;
	margin: 0;
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;

	color: var(--clr-white);
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

.hero-arrow:last-child {
	border-right: none;
}

.hero-arrow:after {
	display: none;
}

.hero-arrow:hover {
	color: rgba(255, 255, 255, 1);
	background-color: rgba(255, 255, 255, 0.15);
	border-top: rgba(93, 102, 111, 0.5);
}

.hero-arrow svg {
	width: 32px;
	height: 32px;
}

.hero-section .swiper-slide-active .banner-badge {
	animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-section .swiper-slide-active .banner-title {
	animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-section .swiper-slide-active .banner-description {
	animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-section .swiper-slide-active .btn-wrapper {
	animation: fadeUp 0.8s ease forwards 0.8s;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

@media (max-width:767px) {
	.hero-section .banner-description {
		font-size: 14px;
	}

	.hero-section .subheading span {
		font-size: 11px;
	}

	.hero-section .hero-nav-container {
		height: 50px;
	}

	.hero-section .slide-content-wrapper {
		padding-bottom: 40px;
	}

	.btn-pill {
		font-size: 14px !important;
		padding: 5px 5px 5px 15px;
	}

	.btn-icon-circle-hero {
		width: 35px;
		height: 35px;
	}

}

.section-headline-s2 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 3rem;
	line-height: 1.1;
	/* margin-bottom: 2.5rem; */
	color: var(--clr-primary-dark);
}

.text-script-accent-s2 {
	font-family: var(--font-script);
	color: var(--clr-accent-gold);
	font-size: 3.5rem;
	font-weight: 400;
	display: inline;
}

.about-content p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 1.5rem;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-custom-pill {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	font-family: var(--font-body);
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-custom-pill:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

.btn-custom-pill .btn-icon-circle-s2 {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-custom-pill:hover .btn-icon-circle-s2 {
	transform: translateX(3px);
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
}

.stats-bar {
	background-color: #F2F2F2;
	border-radius: 12px;
	padding: 3rem 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1;
}

.stat-number.text-accent {
	color: var(--clr-primary-dark) !important;
}

.stat-label {
	font-size: 1rem;
	font-weight: 500;
	color: #777;
	margin-top: 0.5rem;
}

@media (max-width: 991px) {
	:root {
		--fs-banner-title: 3.5rem;
		--fs-banner-script: 4rem;
	}
}

@media (max-width: 768px) {
	:root {
		--fs-banner-title: 2.5rem;
		--fs-banner-script: 3rem;
	}

	.hero-text-script {
		display: block;
		margin-bottom: 0.5rem;
	}

	.hero-nav-container {
		height: 60px;
	}

	.hero-arrow svg {
		width: 24px;
		height: 24px;
	}

	.slide-content-wrapper {
		align-items: center;
		padding-top: 40px;
	}

	.section-headline-s2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.text-script-accent-s2 {
		font-size: 2.5rem;
		display: block;
	}

	.stats-bar {
		padding: 2rem 0;
	}

	.stat-number {
		font-size: 2rem;
	}

	.stat-label {
		font-size: 0.9rem;
	}

	.about-content p {
		font-size: 16px;
	}
}

.subheading {
	color: var(--color-foreground);
	font-weight: 500;
	font-family: var(--font-heading);
	font-style: normal;
	letter-spacing: normal;
}

.subheading-bg {
	background-color: var(--clr-light-gray);
	letter-spacing: normal;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 7px 20px;
	border-radius: 40px;
	border: 1px solid var(--clr-border-light);
	gap: 5px;
}


#product-category-section .btn-custom-pill {
	background: var(--clr-white);
	color: var(--clr-primary-dark);
}

#product-category-section .btn-custom-pill .btn-icon-circle-s2 {
	background-color: var(--clr-primary-dark);
	/* background-color: var(--clr-accent-gold); */
	color: var(--clr-white);
}

#product-category-section .btn-custom-pill:hover {
	background: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

#product-category-section .subheading-bg {
	background-color: unset;
	border: 1px solid var(--clr-accent-gold);
}

/* Our services section css */
.our-services {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	padding: 80px 0;
	font-family: var(--font-body);
}

.our-services .service-accordion {
	background-color: #3E484E;
	border-radius: 8px;
	overflow: hidden;
	padding: 0;
}

.our-services .service-list {
	background: var(--color-background);
	padding: 40px var(--padding-content);
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
}

.our-services .service-list .accordion-li {
	position: relative;
	display: flex;
	overflow: hidden;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
	border-bottom: var(--style-border-width) solid var(--color-border);
	padding: 20px 0;
}

.our-services .service-list .accordion-li:last-child {
	border-bottom: none;
}

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

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

.our-services .service-list .accordion-li .icon {
	color: var(--color-foreground);
	width: var(--icon-size);
	min-width: var(--icon-size);
	height: var(--icon-size);
	stroke-width: 1;
}

.our-services .service-list .accordion-li .icon+.icon {
	display: none;
}

.our-services .fa-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--fa-icon-size);
	min-width: var(--fa-icon-size);
	height: var(--fa-icon-size);
	border-radius: 10px;
	color: var(--clr-primary-dark);
}

.our-services .fa-icon-box .fa-solid {
	font-size: 32px;
}

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

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

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

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

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

.our-services .service-list .accordion-content {
	padding: 0 var(--padding-content);
}

.our-services .service-list .accordion-li.active .accordion-content {
	max-height: 800px;
	opacity: 1;
	padding: 15px var(--padding-content) 0 var(--padding-content);
}

.our-services .service-content-inner .heading {
	margin-block-start: 20px;
}

.our-services .text-24 {
	font-size: 24px;
	line-height: 1.25;
	font-family: var(--font-heading, 'Urbanist', sans-serif);
}

.button {
	width: fit-content;
	min-height: var(--style-button-height);
	font-size: var(--font-button-size);
	font-weight: var(--font-button--weight);
	font-family: var(--font-button--family);
	line-height: 1.4;
	padding: 10px 15px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	text-decoration: none;
	border: none;
	outline: none;
	box-shadow: none;
	transition: all 0.3s;
	border-radius: var(--style-border-radius-buttons-primary);
}

.button--primary {
	color: var(--color-primary-button-text);
	background-color: var(--color-primary-button-background);
	border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-border);
}

.button--primary:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
	border-color: var(--clr-accent-gold);
}

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

.our-services .image-box {
	margin-top: 20px;
	max-width: 100%;
	overflow: hidden;
	border-radius: 4px;
}

.our-services .image-box img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

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

	.our-services .service-list .accordion-li {
		min-width: var(--width);
		width: var(--width);
		flex-direction: row;
		border-right: var(--style-border-width) solid var(--color-border);
		border-bottom: none;
		padding: 0;
		position: relative;
	}

	.our-services .service-list .accordion-li:last-child {
		border-right: none;
	}

	.our-services .service-list .accordion-li:not(:first-child) {
		border-left: var(--style-border-width) solid var(--color-border);
	}

	.our-services .accordion-horizontal .accordion-li.active {
		width: 100%;
		min-width: var(--expanded-min-width);
	}

	.our-services .accordion-title {
		padding: 0;
		width: var(--width);
		height: 100%;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		gap: 0;
	}

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

	.our-services .service-list .accordion-li .accordion-title-icon .fa-icon-box {
		margin-bottom: 20px;
	}

	.our-services .service-list .accordion-li .fa-plus-circle-mobile,
	.our-services .service-list .accordion-li .fa-minus-circle-mobile {
		display: none !important;
	}

	.our-services .service-list .accordion-li .icon {
		display: none !important;
	}

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

	.our-services .service-list .accordion-li.active .accordion-title {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 20;
		display: none;
		width: var(--width);
		background-color: #363E42;
		transition: all 0.3s ease;
	}

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

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

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

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

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

	.our-services .service-list .accordion-li.active .accordion-content {
		opacity: 1;
		left: 0;
		/* width: calc(100% - var(--width)); */
		width: 100%;
		pointer-events: auto;
		padding: 0;
		transform: all 0.3s ease;
	}

	.our-services .service-content-inner {
		max-width: 100%;
		min-width: 360px;
		height: auto;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 20px var(--padding-content);
	}

	.our-services .service-content-inner .heading {
		margin-block-start: 50px;
	}

	.our-services .image-box {
		margin-top: auto;
		height: 250px;
	}
}
@media(max-width:767px) {
	.accordion-li.active .accordion-title {
		display: none !important;
	}

	.our-services .service-list .accordion-title-icon .icon {
		display: none !important;
	}

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

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

	.our-services .service-list .accordion-li .icon {
		color: var(--color-foreground);
		width: var(--icon-size);
		min-width: var(--icon-size);
		height: unset;
		stroke-width: 1;
	}
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
	background-color: var(--clr-white);
}

.why-choose-us-section .subheading-bg {
	background: unset;
	border: 1px solid var(--clr-primary-dark);
}

.why-choose-us-section .subheading {
	color: var(--clr-primary-dark);
}

.why-choose-us-section .badge-s3 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 0.3rem 0.8rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--clr-primary-dark);
}

.why-choose-us-section .badge-s3 span {
	color: var(--clr-accent-gold);
	font-weight: 700;
	font-size: 1.1em;
}

.why-choose-us-section .section-headline-s3 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 1.1;
	color: var(--clr-primary-dark);
}

.why-choose-us-section .text-script-accent-s3 {
	font-family: var(--font-script);
	color: var(--clr-accent-gold);
	font-size: 3.8rem;
	font-weight: 400;
	display: inline;
}

.why-choose-us-section .section-description-s3 {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #555;
	max-width: 550px;
}

.why-choose-us-section .feature-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--clr-primary-dark);
	margin-bottom: 0.5rem;
}

.why-choose-us-section .feature-divider {
	border: none;
	height: 1px;
	width: 100%;
	background-color: #e0e0e0;
	margin: 0.5rem 0 1.5rem 0;
	opacity: 1;
}

.why-choose-us-section .feature-divider.down {
	height: 0.9px;
	margin: 1rem 0 0.5rem 0;
}

.why-choose-us-section .feature-content-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.why-choose-us-section .feature-icon-s3 svg {
	stroke: var(--clr-primary-dark);
	width: 30px;
	height: 30px;
}

.why-choose-us-section .feature-icon-s3 {
	flex-shrink: 0;
	padding-top: 2px;
}

.why-choose-us-section .feature-description {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.why-choose-us-section .feature-grid-wrapper .col-lg-4:nth-child(n+4) {
		padding-top: 20px !important;
	}
}

@media (max-width: 991px) {
	.why-choose-us-section .section-headline-s3 {
		font-size: 2.5rem;
	}

	.why-choose-us-section .text-script-accent-s3 {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	.why-choose-us-section .section-headline-s3 {
		font-size: 2rem;
	}

	.why-choose-us-section .text-script-accent-s3 {
		font-size: 2.5rem;
	}

	.why-choose-us-section .section-description-s3 {
		font-size: 1rem;
	}
}

/* --- Product Section - Dark Theme --- */
.products-section {
	background-color: var(--clr-primary-dark) !important;
	overflow: hidden;
}

.products-section .subheading-bg {
	background-color: unset;
}

.products-section .badge-s4 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 0.3rem 0.8rem;
	border: 1px solid var(--clr-border-light);
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--clr-white);
}

.products-section .badge-s4 span {
	color: var(--clr-accent-gold);
	font-weight: 700;
	font-size: 1.1em;
}

.products-section .section-headline-s4 {
	font-family: var(--font-heading);
	font-weight: 500;
	padding-top: 15px;
	font-size: 3.2rem;
	line-height: 1.1;
	color: var(--clr-white) !important;
	margin-bottom: 0;
}

.products-section .btn-pill-explore {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: var(--clr-white);
	color: var(--clr-primary-dark);
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.products-section .btn-icon-circle-explore {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.products-section .btn-pill-explore:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

.products-section .btn-pill-explore:hover .btn-icon-circle-explore {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	transform: translateX(3px);
}

.products-section .products-swiper {
	padding: 10px 0 80px 0;
}

.products-section .product-slide {
	padding: 10px;
	height: auto;
}

.products-section .product-card {
	background-color: var(--clr-white);
	border-radius: 15px;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.products-section .product-image-container {
	background-color: var(--clr-light-gray);
	padding: 20px;
	text-align: center;
	position: relative;
	z-index: 1;
	border-radius: 15px;
}

.products-section .product-image-container img {
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	border-radius: 15px;
}

.products-section .product-info {
	padding: 15px;
	text-align: left;
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	background: white;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(6.9px);
	-webkit-backdrop-filter: blur(6.9px);
	width: 90%;
	border-radius: 15px;
}


.products-section .product-name {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--clr-primary-dark);
	margin-bottom: 0.2rem;
	line-height: 1.3;
}

.products-section .product-details {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 0;
	line-height: 1.4;
}

.products-section .product-pagination.swiper-pagination-bullets {
	bottom: 0;
	text-align: center;
	padding-left: 10px;
}

.products-section .product-pagination .swiper-pagination-bullet {
	background-color: var(--clr-white);
	width: 13px;
	background: var(--clr-white);
	border-radius: 5px;
	height: 10px;
	margin: 0 5px;
	opacity: 0.5;
	transition: background-color 0.3s, opacity 0.3s;
}

.products-section .product-pagination .swiper-pagination-bullet-active {
	background-color: var(--clr-accent-gold);
	width: 25px;
	border-radius: 5px;
	opacity: 1;
}

@media (max-width: 991px) {
	.products-section .section-headline-s4 {
		font-size: 2.5rem;
		padding: 20px 0;
	}
}

@media (max-width: 768px) {
	.products-section .section-headline-s4 {
		font-size: 2rem;
	}

	.products-section .btn-pill-explore {
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}

	.products-section .btn-icon-circle-explore {
		width: 25px;
		height: 25px;
	}

	.products-section .product-info {
		padding: 10px;
	}

	.products-section .product-name {
		font-size: 1rem;
	}

	.products-section .product-slide {
		padding: 0;
	}
}

/* marquee section css */
.marquee-section {
	background-color: var(--clr-light-gray);
	padding: 20px 0;
	overflow: hidden;
}

.marquee-section .marquee-content-wrapper {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	width: 100%;
}

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

.marquee-section .marquee-item {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--clr-primary-dark);
	text-transform: uppercase;
	padding: 0 20px;
}

.marquee-section .marquee-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

.marquee-section .favicon-placeholder {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

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

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

@media (max-width: 991px) {
	.marquee-section .marquee-item {
		font-size: 2.2rem;
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.marquee-section {
		padding: 20px 0;
	}

	.marquee-section .marquee-item {
		font-size: 1.5rem;
		padding: 0 20px;
	}

	.marquee-section .favicon-placeholder {
		width: 30px;
		height: 30px;
	}

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

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

/* --- Pharma Franchise Section --- */
.pharma-franchise-section {
	background-color: var(--clr-primary-dark) !important;
	overflow: hidden;
	padding: 80px 0;
}

.pharma-franchise-section .subheading-bg {
	background-color: unset;
}

.pharma-franchise-section .badge-s5 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 0.3rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--clr-white);
}

.pharma-franchise-section .badge-s5 span {
	color: var(--clr-accent-gold);
	font-weight: 700;
	font-size: 1.1em;
}

.pharma-franchise-section .section-headline-s5 {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 3.5rem;
	line-height: 1.1;
	color: var(--clr-white);
	margin-bottom: 0;
}

.pharma-franchise-section .text-accent-gold {
	color: var(--clr-accent-gold);
}

.pharma-franchise-section .section-description-s5 {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	max-width: 550px;
}

.pharma-franchise-section .feature-badges-group {
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 25px;
}

.pharma-franchise-section .feature-badge-s5 {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	width: 45%;
}

.pharma-franchise-section .feature-badge-s5 .badge-icon {
	flex-shrink: 0;
	background-color: var(--clr-accent-gold);
	width: 45px;
	height: 45px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

.pharma-franchise-section .feature-badge-s5 .badge-icon img {
	filter: invert(1);
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pharma-franchise-section .feature-badge-s5 .badge-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--clr-accent-gold);
	margin-bottom: 0.1rem;
}

.pharma-franchise-section .feature-badge-s5 .badge-text {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0;
	line-height: 1.3;
}

.pharma-franchise-section .btn-discover-more {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: var(--clr-white);
	color: var(--clr-primary-dark);
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pharma-franchise-section .btn-icon-circle-discover {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.pharma-franchise-section .btn-discover-more:hover {
	background-color: var(--clr-accent-gold);
}

.pharma-franchise-section .btn-discover-more:hover .btn-icon-circle-discover {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	transform: translateX(3px);
}

.pharma-franchise-section .image-stats-container {
	position: relative;
	padding-right: 35%;
}

.pharma-franchise-section .main-image-placeholder img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.pharma-franchise-section .stats-circles-overlay {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pharma-franchise-section .stat-circle {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background-color: #263346;
	color: var(--clr-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	padding: 10px;
}

.pharma-franchise-section #stat-circle-1 {
	z-index: 2;
	margin-bottom: -20px;
}

.pharma-franchise-section #stat-circle-2 {
	z-index: 1;
	margin-bottom: -20px;
}

.pharma-franchise-section .stat-circle-light {
	background-color: var(--clr-white);
	color: var(--clr-primary-dark);
}

.pharma-franchise-section .stat-number-circle {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 56px;
	line-height: 1;
	margin-bottom: 5px;
}

.pharma-franchise-section #stat-circle-1 .stat-number-circle,
.pharma-franchise-section #stat-circle-3 .stat-number-circle {
	color: var(--clr-accent-gold);
}

.pharma-franchise-section .stat-label-circle {
	font-size: 0.95rem;
	font-weight: 500;
}

@media (max-width: 1200px) {
	.pharma-franchise-section .image-stats-container {
		padding-right: 120px;
	}

	.pharma-franchise-section .stat-circle {
		width: 130px;
		height: 130px;
	}

	.pharma-franchise-section #stat-circle-1,
	.pharma-franchise-section #stat-circle-2 {
		margin-bottom: -15px;
	}
}

@media (max-width: 991px) {
	.pharma-franchise-section .section-headline-s5 {
		font-size: 2.8rem;
	}

	.pharma-franchise-section .feature-badges-group {
		padding: 20px;
	}

	.pharma-franchise-section .feature-badge-s5 {
		width: 100%;
	}

	.pharma-franchise-section .image-stats-container {
		padding-right: 0;
		padding-top: 150px;
		margin-left: 10px;
		margin-right: 10px;
	}

	.pharma-franchise-section .stats-circles-overlay {
		top: 0;
		left: 30%;
		right: 0;
		transform: translateX(-50%);
		/* flex-direction: row; */
		width: 100%;
		justify-content: space-around;
		padding: 0 20px;
		/* background-color: var(--clr-primary-dark); */
		gap: 14px;
	}

	.pharma-franchise-section .stat-label-circle {
		font-size: 12px;
	}

	.pharma-franchise-section .stat-circle {
		width: 100px;
		height: 100px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	}

	.pharma-franchise-section .stat-number-circle {
		font-size: 1.6rem;
	}

	.pharma-franchise-section #stat-circle-1,
	.pharma-franchise-section #stat-circle-2 {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	.pharma-franchise-section .section-headline-s5 {
		font-size: 2rem;
	}

	.pharma-franchise-section .section-description-s5 {
		font-size: 1rem;
	}

	.pharma-franchise-section .feature-badge-s5 {
		gap: 10px;
	}
}

/* achievements-section */
.achievements-section {
	background-color: var(--clr-white);
}

.achievements-section .section-headline-achieve {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 3.5rem;
	line-height: 1.1;
	color: var(--clr-primary-dark);
}

.achievements-section .section-description-achieve {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #555;
}

.achievements-section .text-accent-gold {
	color: var(--clr-accent-gold);
}

.achievements-section .achievements-sticky-wrapper {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
}

.achievements-section .achievement-card {
	position: sticky;
	padding: 60px 40px;
	border-radius: 18px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
}

.achievements-section .achievement-card .subheading-bg {
	background-color: unset;
	border: 1px solid var(--clr-grey);
}

.achievements-section .achievement-card .subheading {
	color: var(--clr-grey);
}

.achievements-section .achievement-card .card-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 0.3rem 0.8rem;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--clr-primary-dark);
	margin-bottom: 1.5rem;
}

.achievements-section .achievement-card .card-badge span {
	color: var(--clr-primary-dark);
	font-weight: 700;
	font-size: 1.1em;
}

.achievements-section .achievement-card .card-headline {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 52px;
	line-height: 1.2;
	color: var(--clr-primary-dark);
	margin: 1rem 0;
}

.achievements-section .achievement-card .card-description {
	font-size: 1rem;
	color: #333;
	margin-bottom: 0;
}

.achievements-section .achievement-card .card-image img {
	border-radius: 18px;
	max-height: 400px;
	width: 100%;
	object-fit: cover;
}

.achievements-section .btn-learn-more {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.achievements-section .btn-icon-circle-more {
	background-color: var(--clr-white);
	color: var(--clr-primary-dark);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.achievements-section .btn-learn-more:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

.achievements-section .btn-learn-more:hover .btn-icon-circle-more {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	transform: translateX(3px);
}

.achievements-section #card-innovation {
	background-color: rgba(239, 238, 251, 1);
	top: 40px;
	z-index: 1;
}

.achievements-section #card-support {
	background-color: rgba(235, 250, 165, 1);
	top: 40px;
	z-index: 2;
}

.achievements-section #card-growth {
	background-color: rgba(212, 230, 233, 1);
	top: 40px;
	z-index: 3;
}

@media (max-width: 991px) {
	.achievements-section .section-headline-achieve {
		font-size: 2rem;
	}

	.achievements-section .section-description-achieve {
		margin-top: 20px;
	}

	.achievements-section .achievement-card {
		padding: 40px 20px;
		position: static;
		margin-bottom: 30px;
	}

	.achievements-section .achievements-sticky-wrapper {
		padding-top: 0;
		padding-bottom: 0;
	}

	.achievements-section .achievement-card .card-headline {
		font-size: 2rem;
	}

	.achievements-section .achievement-card .card-image {
		margin-top: 30px;
	}

	.achievements-section #card-innovation,
	.achievements-section #card-support,
	.achievements-section #card-growth {
		top: auto;
		z-index: auto;
	}

	.achievements-section .achievement-card .row>div:nth-child(1) {
		order: 0;
	}

	.achievements-section .achievement-card .row>div:nth-child(2) {
		order: 1;
	}
}

/* --- CTA Section S1 --- */
.cta-section-s1 {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
}

.cta-section-s1 .subheading-bg {
	background-color: unset;
}

.cta-section-s1 .cta-content-wrapper {
	margin: 0 auto;
	text-align: left;
}

.cta-section-s1 .cta-badge {
	display: inline-block;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 0.3rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--clr-white);
}

.cta-section-s1 .cta-headline {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 72px;
	line-height: 1.1;
	color: var(--clr-white);
	margin-bottom: 0;
}

.cta-section-s1 .text-accent-gold-s2 {
	color: var(--clr-accent-gold);
}

.cta-section-s1 .cta-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	max-width: 750px;
}

.cta-section-s1 .btn-learn-more-cta {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: var(--clr-white);
	color: var(--clr-primary-dark);
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section-s1 .btn-icon-circle-cta {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.cta-section-s1 .btn-learn-more-cta:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

.cta-section-s1 .btn-learn-more-cta:hover .btn-icon-circle-cta {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	transform: translateX(3px);
}

@media (max-width: 991px) {
	.cta-section-s1 .cta-headline {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	.cta-section-s1 .cta-headline {
		font-size: 2.2rem;
	}

	.cta-section-s1 .cta-description {
		font-size: 1rem;
	}

	.cta-section-s1 .btn-learn-more-cta {
		padding: 0.7rem 1.1rem;
		font-size: 0.95rem;
	}
}

/* testimonial section css */
.testimonial-section-s2 {
	background-color: #f7f9fb;
	background: url('assets/images/secondary-amzor-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 50px;
	padding-bottom: 80px;
}

.testimonial-section-s2 .subheading-bg {
	background-color: unset;
	border: 1px solid var(--clr-accent-gold)
}

.testimonial-section-s2 .subheading {
	color: var(--clr-primary-dark);
}

.testimonial-section-s2 .testimonial-2 {
	position: relative;
}

.testimonial-section-s2 .testimonial-main-img-s2 {
	position: relative;
	height: 550px;
	/* overflow: hidden; */
	border-radius: 18px;
}

.testimonial-section-s2 .testimonial-main-img-s2 img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 15px;
}

.testimonial-section-s2 .subheading-group .subheading {
	border: 1px solid #e7bf5d;
	border-radius: 50px;
	color: #e7bf5d;
	font-weight: 500;
	font-size: 1.25rem;
}

.testimonial-section-s2 .section-headings .heading {
	color: #333333;
	font-size: 3.125rem;
}

.testimonial-section-s2 .thumb-content p.text {
	font-size: 20px;
	color: #6c757d;
}

.testimonial-section-s2 .thumb-content .user-name {
	font-weight: 700;
	color: #333333;
}

.testimonial-section-s2 .thumb-content .user-desig {
	color: #6c757d;
	font-size: 0.95rem;
}

.testimonial-section-s2 .icon-quote {
	fill: #333333;
	opacity: 0.1;
}

.thumbnail-pagination-group.swiper-pagination-bullets {
	position: absolute;
	right: -50px;
	/* top: 50%;
        transform: translateY(-50%); */
	width: auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
	z-index: 10;
	left: auto;
}

.testimonial-section-s2 .custom-bullet {
	width: 100px !important;
	height: 100px !important;
	display: flex;
	border-radius: 50% !important;
	overflow: hidden !important;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	background: transparent;
	transition: all 0.2s ease-in-out;
	opacity: 0.7;
}

.testimonial-section-s2 .custom-bullet img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block;
}

.testimonial-section-s2 .custom-bullet.swiper-pagination-bullet-active {
	width: 100px !important;
	height: 100px !important;
	opacity: 1;
	border: 4px solid #e7bf5d !important;
	outline: none;
	box-shadow: 0 0 0 6px rgba(231, 191, 93, 0.2) !important;
}

.testimonial-section-s2 .thumb-content-wrapper {
	padding-inline-start: 50px;
}

@media (max-width: 1199px) {
	.testimonial-section-s2 .thumbnail-pagination-group.swiper-pagination-bullets {
		right: -60px;
	}

	.testimonial-section-s2 .custom-bullet,
	.testimonial-section-s2 .custom-bullet.swiper-pagination-bullet-active {
		width: 100px !important;
		height: 100px !important;
	}

	.testimonial-section-s2 .section-headings .heading {
		font-size: 2rem;
	}

	.testimonial-section-s2 .thumb-content p.text {
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.testimonial-section-s2 .testimonial-main-img-s2 {
		height: 350px;
	}

	.testimonial-section-s2 .thumb-content-wrapper {
		padding-inline-start: 0;
		padding-inline-end: 0;
		text-align: center;
	}

	.testimonial-section-s2 .section-headings {
		text-align: center;
	}

	.testimonial-section-s2 .subheading-group {
		justify-content: center;
	}

	.testimonial-section-s2 .thumbnail-pagination-group.swiper-pagination-bullets {
		position: static;
		transform: none;
		flex-direction: row;
		justify-content: center;
		margin-top: 30px;
		gap: 15px;
	}

	.testimonial-section-s2 .custom-bullet,
	.testimonial-section-s2 .custom-bullet.swiper-pagination-bullet-active {
		width: 60px !important;
		height: 60px !important;
		border: 2px solid transparent;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.testimonial-section-s2 .custom-bullet.swiper-pagination-bullet-active {
		border: 3px solid #e7bf5d !important;
		box-shadow: 0 0 0 4px rgba(231, 191, 93, 0.2) !important;
	}

	.testimonial-section-s2 .icon-quote {
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.testimonial-section-s2 .testimonial-main-img-s2 {
		height: 300px;
	}

	.testimonial-section-s2 .custom-bullet,
	.testimonial-section-s2 .custom-bullet.swiper-pagination-bullet-active {
		width: 50px !important;
		height: 50px !important;
	}
}

/* Contact section css */
.contact-section-s3 {
	padding: 80px 0;
}

.contact-section-s3 .subheading-bg {
	background-color: unset;
	border: 1px solid var(--clr-grey);
}

.contact-section-s3 .subheading {
	color: var(--clr-grey);
}

.contact-section-s3 .contact-content-left {
	padding-inline-end: 60px;
}

.contact-section-s3 .contact-content-left .heading {
	font-family: var(--font-heading);
	font-size: 44px;
	padding: 30px 0;
}

.contact-section-s3 .contact-content-left .text-gold {
	color: var(--clr-accent-gold);
}

.contact-section-s3 .feature-list {
	padding-top: 40px;
}

.contact-section-s3 .feature-list .feature-item .icon-wrap-sm {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 12px;
	overflow: hidden;
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-section-s3 .feature-list .feature-item .icon-wrap-sm .fas {
	font-size: 24px;
}

.contact-section-s3 .feature-list .feature-item.mb-30 {
	margin-bottom: 30px;
}

.contact-section-s3 .feature-list .feature-item .text {
	font-size: 16px;
	margin-top: 5px;
	opacity: 0.75;
}

.contact-section-s3 .feature-item {
	width: 60%;
}

.contact-section-s3 .contact-form-card {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	padding: 50px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-section-s3 .contact-form-card .form-header .text-16 {
	margin-top: 10px;
	opacity: 0.7;
}

.contact-section-s3 .contact-form-card .form-control {
	background-color: var(--clr-white);
	border: var(--style-border-width) solid var(--clr-border-light);
	color: var(--clr-grey);
	padding: 12px 15px;
	height: auto;
	border-radius: 12px;
	font-size: var(--fs-body);
	font-family: var(--font-body);
	-webkit-transition: border-color 0.3s, background-color 0.3s;
	-o-transition: border-color 0.3s, background-color 0.3s;
	transition: border-color 0.3s, background-color 0.3s;
	resize: none;
}

.contact-section-s3 .contact-form-card .form-control:focus {
	background-color: var(--clr-white);
	border-color: var(--clr-accent-gold);
	color: var(--clr-grey);
	box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.contact-section-s3 .contact-form-card .form-control::placeholder {
	color: var(--clr-grey);
	opacity: 1;
}

.contact-section-s3 .contact-form-card .btn-primary-dark {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--clr-white);
	color: var(--clr-primary-dark);
	font-weight: var(--font-button--weight);
	font-size: var(--font-button-size);
	font-family: var(--font-button--family);
	padding: 15px 30px;
	border-radius: 50px;
	border: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}

.contact-section-s3 .contact-form-card .btn-primary-dark:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

.contact-section-s3 .contact-form-card .btn-primary-dark svg {
	margin-inline-start: 10px;
	width: 20px;
	height: 20px;
}

.contact-section-s3 .contact-form-card .btn-primary-dark svg path {
	stroke: var(--clr-primary-dark);
}

.contact-section-s3 .contact-form-card .btn-primary-dark:hover svg path {
	stroke: var(--clr-primary-dark);
}

@media (max-width: 991px) {
	.contact-section-s3 {
		padding: 80px 0;
	}

	.contact-section-s3 .contact-content-left {
		padding-inline-end: 0;
		margin-bottom: 40px;
	}

	.contact-section-s3 .contact-form-card {
		padding: 40px;
	}

	.contact-section-s3 .contact-form-card .btn-primary-dark {
		width: 100%;
	}

	.contact-section-s3 .feature-item {
		width: 100%;
	}

	.contact-section-s3 .contact-form-card .btn-primary-dark {
		padding: 10px 25px;
	}
}

@media (max-width: 575px) {
	.contact-section-s3 {
		padding: 60px 0;
	}

	.contact-section-s3 .contact-form-card {
		padding: 30px;
	}

	.contact-section-s3 .contact-content-left .heading {
		font-size: 32px;
	}

	.contact-section-s3 .contact-content-left .text-20 {
		font-size: 16px;
	}

}

/* blog section css */
.blog-section-s2 {
	padding: 100px 0;
	background-color: var(--clr-light-gray);
	background: url('assets/images/secondary-amzor-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.blog-section-s2 .section-heading-center {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.blog-section-s2 .section-heading-center .subheading {
	display: inline-block;
	border: 1px solid var(--clr-primary-dark);
	padding: 5px 15px;
	color: var(--clr-primary-dark);
	font-weight: 500;
	background-color: var(--clr-light-gray);
}

.blog-section-s2 .section-heading-center .heading {
	margin: 20px 0;
	font-family: var(--font-heading);
	color: var(--clr-primary-dark);
}

.blog-section-s2 .section-heading-center .text-gold {
	color: var(--clr-accent-gold);
}

.blog-section-s2 .blog-card-lg {
	background-color: var(--clr-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-section-s2 .blog-card-lg .blog-image {
	width: 100%;
	height: 350px;
	overflow: hidden;
}

.blog-section-s2 .blog-card-lg .blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
}

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

.blog-section-s2 .blog-card-lg .blog-content {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.blog-section-s2 .blog-card-lg .blog-meta {
	color: #6c757d;
	font-size: 14px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.blog-section-s2 .blog-card-lg .blog-meta .meta-item .fas {
	color: var(--clr-accent-gold);
}

.blog-section-s2 .blog-card-lg .heading-sm {
	font-family: var(--font-heading);
	color: var(--clr-primary-dark);
	line-height: 1.3;
}

.blog-section-s2 .blog-card-sm {
	background-color: var(--clr-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	padding: 20px;
	align-items: center;
}

.blog-section-s2 .blog-card-sm .blog-image-sm {
	width: 150px;
	height: 100px;
	border-radius: 8px;
	overflow: hidden;
}

.blog-section-s2 .blog-card-sm .blog-image-sm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-section-s2 .blog-card-sm .blog-content-sm {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.blog-section-s2 .blog-card-sm .blog-meta {
	color: #6c757d;
	font-size: 13px;
}

.blog-section-s2 .blog-card-sm .blog-meta .meta-item .fas {
	color: var(--clr-accent-gold);
}

.blog-section-s2 .blog-card-sm .heading-sm {
	font-family: var(--font-heading);
	color: var(--clr-primary-dark);
	line-height: 1.4;
	font-weight: 600;
}

.blog-section-s2 .blog-card-sm .read-more,
.blog-section-s2 .blog-content .read-more {
	color: var(--clr-primary-dark);
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	margin-top: 5px;
	transition: color 0.3s ease;
}

.blog-section-s2 .blog-card-sm .read-more:hover,
.blog-section-s2 .blog-content .read-more:hover {
	color: var(--clr-accent-gold);
}

.blog-section-s2 .blog-card-sm .read-more i,
.blog-section-s2 .blog-content .read-more i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.blog-section-s2 .blog-card-sm .read-more:hover i,
.blog-section-s2 .blog-content .read-more:hover i {
	transform: translateX(5px);
}

.blog-section-s2 .btn-primary-dark-outline {
	background-color: transparent;
	border: 2px solid var(--clr-primary-dark);
	color: var(--clr-primary-dark);
	font-weight: var(--font-button--weight);
	font-size: var(--font-button-size);
	font-family: var(--font-button--family);
	padding: 12px 30px;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.blog-section-s2 .btn-primary-dark-outline:hover {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	border-color: var(--clr-primary-dark);
}

.blog-section-s2 .btn-primary-dark-outline .fas {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.blog-section-s2 .btn-primary-dark-outline:hover .fas {
	transform: translateX(5px);
}

@media (max-width: 991px) {
	.blog-section-s2 {
		padding: 80px 0;
	}

	.blog-section-s2 .section-heading-center .heading {
		font-size: 40px;
	}

	.blog-section-s2 .blog-grid-container {
		margin-top: 40px;
	}

	.blog-section-s2 .blog-card-lg .blog-image {
		height: 300px;
	}

	.blog-section-s2 .blog-card-lg .heading-sm {
		font-size: 24px;
	}

	.blog-section-s2 .blog-card-sm {
		padding: 15px;
	}

	.blog-section-s2 .blog-card-sm .blog-image-sm {
		width: 120px;
		height: 80px;
	}

	.blog-section-s2 .blog-card-sm .heading-sm {
		font-size: 18px;
	}

	.blog-section-s2 .mt-80 {
		margin-top: 60px;
	}

	.blog-section-s2 .blog-card-lg .blog-meta {
		font-size: 12px;
	}

}

@media (max-width: 767px) {
	.blog-section-s2 {
		padding: 60px 0;
	}

	.blog-section-s2 .section-heading-center .heading {
		font-size: 36px;
	}

	.blog-section-s2 .blog-card-lg .blog-image {
		height: 250px;
	}

	.blog-section-s2 .blog-card-sm {
		flex-direction: column;
		align-items: flex-start;
	}

	.blog-section-s2 .blog-card-sm .blog-image-sm {
		width: 100%;
		height: 180px;
		margin-bottom: 15px;
		margin-inline-end: 0 !important;
	}

	.blog-section-s2 .blog-card-sm .blog-content-sm {
		width: 100%;
	}

	.blog-section-s2 .mt-80 {
		margin-top: 40px;
	}
}

@media (max-width: 575px) {
	.blog-section-s2 .section-heading-center .heading {
		font-size: 30px;
	}

	.blog-section-s2 .blog-card-lg .blog-image {
		height: 200px;
	}

	.blog-section-s2 .blog-card-lg .blog-content {
		padding: 20px;
	}

	.blog-section-s2 .blog-card-lg .heading-sm {
		font-size: 20px;
	}

	.blog-section-s2 .blog-card-sm .blog-image-sm {
		height: 150px;
	}

	.blog-section-s2 .blog-card-sm .heading-sm {
		font-size: 16px;
	}

	.blog-section-s2 .blog-card-sm .blog-meta {
		font-size: 12px;
	}
}

/* footer css */
.main-footer {
	background-color: var(--clr-primary-dark);
	background: url('assets/images/amzor-footer-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: var(--clr-white);
	padding-top: 60px;
}

.main-footer .footer-top {
	padding-bottom: 40px;
}

.main-footer .footer-top .footer-logo .heading-sm {
	color: var(--clr-white);
	font-size: 24px;
	font-family: var(--font-heading);
	font-weight: 700;
}

.main-footer img.footer-logo {
	width: 50%;
	margin-bottom: 20px;
}

.main-footer iframe {
	width: 100%;
	border-radius: 15px;
}

.main-footer .social-icons .social-link {
	display: inline-flex;
	width: 40px;
	text-decoration: none;
	height: 40px;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--clr-white);
	border-radius: 50%;
	font-size: 18px;
	margin-inline-end: 10px;
	transition: background-color 0.3s, color 0.3s;
}

.main-footer .social-icons .social-link:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

.main-footer .footer-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 40px;
}

.main-footer .footer-middle {
	padding-bottom: 60px;
}

.main-footer .footer-heading {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--clr-white);
}

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

.main-footer .footer-links li {
	margin-bottom: 12px;
	font-size: var(--fs-body);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.main-footer .footer-links li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
}

.main-footer .footer-links li a:hover {
	color: var(--clr-accent-gold);
}

.main-footer .footer-bottom {
	background-color: var(--clr-black);
	padding: 20px 0;
	font-size: 14px;
}

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

.main-footer .copyright-text .heart {
	color: #e74c3c;
}

.main-footer .footer-legal-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	margin-inline-start: 20px;
	transition: color 0.3s;
}

.main-footer .footer-legal-links a:hover {
	color: var(--clr-white);
}

@media (max-width: 991px) {
	.main-footer {
		padding-top: 50px;
	}

	.main-footer .footer-top {
		padding-bottom: 0px;
	}

	.main-footer .footer-top .row>div {
		text-align: center;
	}

	.main-footer .footer-middle {
		padding-bottom: 40px;
	}

	.main-footer .footer-bottom .d-flex {
		flex-direction: column;
		text-align: center;
	}

	.main-footer .footer-legal-links {
		margin-top: 10px;
	}

	.main-footer .footer-legal-links a {
		margin: 0 10px;
	}

	.main-footer img.footer-logo {
		width: 100%;
	}

	.main-footer .footer-bottom {
		padding: 20px 0 80px;
	}
}

@media (max-width: 575px) {
	.main-footer .footer-top .footer-logo {
		justify-content: center;
	}

	.main-footer .social-icons {
		margin-inline-end: 0 !important;
		margin-bottom: 15px;
	}

	.main-footer .social-icons .social-link {
		margin: 0 5px;
	}

	.main-footer .footer-links li {
		font-size: 15px;
	}
}

/* Breadcrumb Css */
.page-breadcrumb {
	background: linear-gradient(135deg, var(--clr-accent-gold) 0%, var(--clr-primary-dark) 100%);
	padding: 120px 0 40px 0;
	color: var(--clr-white);
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	position: relative;
	overflow: hidden;
}

.page-breadcrumb::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

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

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

.page-breadcrumb span.breadcrumb_new a {
	color: var(--clr-white);
	background: var(--clr-accent-gold);
	padding: 5px;
	border-radius: 7px;
	text-decoration: none;
}

.page-breadcrumb span.breadcrumb_new {
	color: var(--clr-white);
}

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

@media(max-width:767px) {
	.page-breadcrumb {
		padding: 80px 0 40px 0;
	}

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

/* =========================================
   1. General Page Styling
   ========================================= */

.amzor-inner-page {
	padding: 80px 0;
	background-color: var(--clr-white);
}

@media (min-width: 992px) {
	.amzor-inner-page {
		padding: 100px 0;
	}
}

.section-title {
	font-family: var(--font-heading);
	font-weight: 500;
	color: var(--clr-primary-dark);
	margin-bottom: 2rem;
	position: relative;
	font-size: 2.5rem;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 3rem;
	}
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--clr-accent-gold);
	margin-top: 10px;
}

.text-center .section-title::after {
	margin: 10px auto 0;
}

.lead {
	font-size: 1.15rem;
	color: var(--clr-grey);
}

.text-primary-dark {
	color: var(--clr-primary-dark) !important;
}

.text-grey {
	color: var(--clr-grey) !important;
}

.btn-warning {
	background-color: var(--clr-accent-gold);
	border-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
	font-weight: var(--font-button--weight);
	height: var(--style-button-height);
	transition: all var(--transition-speed) ease-in-out;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	border-radius: var(--style-border-radius-buttons-primary);
}

.btn-warning:hover {
	background-color: #d1a54d;
	border-color: #d1a54d;
	color: var(--clr-primary-dark);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* =========================================
   2. Director's Message Styling
   ========================================= */

.directors-message .image-box img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	min-height: 400px;
	border-radius: var(--style-border-radius-buttons-primary) !important;
}

.directors-message .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--clr-bg-overlay);
	padding: 1.5rem !important;
	border-bottom-left-radius: var(--style-border-radius-buttons-primary);
	border-bottom-right-radius: var(--style-border-radius-buttons-primary);
}

.directors-message .signature h4 {
	font-family: var(--font-script);
	font-size: 2.8rem;
	line-height: 1;
	color: var(--clr-primary-dark);
}

.directors-message .lead {
	font-style: italic;
	border-left: 4px solid var(--clr-accent-gold);
	padding-left: 15px;
}

/* =========================================
   3. About Amzor Styling
   ========================================= */

.about-amzor .list-group-item {
	border-color: var(--grey-border);
	color: var(--clr-primary-dark);
	font-weight: 500;
}

.about-amzor .list-group-item i {
	font-size: 1.2rem;
}

.about-amzor .accordion-button {
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--clr-primary-dark);
	background-color: var(--clr-light-gray);
	border: none;
	border-bottom: 1px solid var(--grey-border);
}

.about-amzor .accordion-button:not(.collapsed) {
	color: var(--clr-white);
	background-color: var(--clr-primary-dark);
	box-shadow: none;
}

.about-amzor .accordion-body {
	background-color: var(--clr-white);
	color: var(--clr-grey);
	border: 1px solid var(--grey-border);
	border-top: none;
}

/* Leadership Cards */
.about-amzor .card-img-top {
	height: 250px;
	object-fit: cover;
}

.about-amzor .card {
	transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.about-amzor .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.about-amzor .card-body {
	text-align: center;
}

.about-amzor .card-title {
	font-family: var(--font-heading);
	margin-bottom: 5px;
}


/* =========================================
   4. Mission, Vision, Values Styling
   ========================================= */

.mission-vision-values .card {
	transition: transform var(--transition-speed), box-shadow var(--transition-speed);
	border: 1px solid var(--grey-border) !important;
	border-radius: var(--style-border-radius-buttons-primary);
}

.mission-vision-values .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.mission-vision-values i {
	color: var(--clr-accent-gold) !important;
	font-size: var(--fa-icon-size);
}

.mission-vision-values .list-unstyled i {
	font-size: 1rem;
	color: var(--clr-accent-gold) !important;
}

/* =========================================
   5. R&D Styling
   ========================================= */

.research-development .accordion-button {
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--clr-primary-dark);
	background-color: var(--clr-light-gray);
	border: none;
	border-bottom: 1px solid var(--grey-border);
}

.research-development .accordion-button:not(.collapsed) {
	color: var(--clr-white);
	background-color: var(--clr-primary-dark);
	box-shadow: none;
}

.research-development .accordion-body {
	background-color: var(--clr-white);
	color: var(--clr-grey);
	border: 1px solid var(--grey-border);
	border-top: none;
}

.research-development i.fa-vials,
.research-development i.fa-microscope,
.research-development i.fa-balance-scale-left {
	font-size: 1.5rem;
}

/* =========================================
   6. Contact Amzor Styling
   ========================================= */

.contact-amzor address {
	font-style: normal;
	color: var(--clr-grey);
	line-height: 2;
}

.contact-amzor i {
	width: 25px;
	text-align: center;
}

.contact-amzor a {
	color: var(--clr-primary-dark);
	text-decoration: none;
}

.contact-amzor a:hover {
	color: var(--clr-accent-gold);
}

.contact-form-placeholder,
.contact-amzor .map-placeholder {
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed var(--grey-border);
	color: var(--clr-grey);
	border-radius: var(--style-border-radius-buttons-primary);
}

.contact-amzor iframe {
	width: 100%;
	height: 300px;
}

.contact-amzor .form-header .text-16 {
	margin-top: 10px;
	opacity: 0.7;
}

.contact-amzor .form-control,
#amzorContactModal .form-control {
	background-color: var(--clr-white);
	border: var(--style-border-width) solid var(--clr-border-light);
	color: var(--clr-grey);
	padding: 12px 15px;
	height: auto;
	border-radius: 12px;
	font-size: var(--fs-body);
	font-family: var(--font-body);
	-webkit-transition: border-color 0.3s, background-color 0.3s;
	-o-transition: border-color 0.3s, background-color 0.3s;
	transition: border-color 0.3s, background-color 0.3s;
	resize: none;
}

.contact-amzor .form-control:focus,
#amzorContactModal .form-control:focus {
	background-color: var(--clr-white);
	border-color: var(--clr-accent-gold);
	color: var(--clr-grey);
	box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.contact-amzor .form-control::placeholder,
#amzorContactModal .form-control::placeholder {
	color: var(--clr-grey);
	opacity: 1;
}

.contact-amzor .btn-primary-dark,
#amzorContactModal .btn-primary-dark {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	font-weight: var(--font-button--weight);
	font-size: var(--font-button-size);
	font-family: var(--font-button--family);
	padding: 15px 30px;
	border-radius: 50px;
	border: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}

.contact-amzor .btn-primary-dark:hover,
#amzorContactModal .btn-primary-dark:hover {
	background-color: var(--clr-accent-gold);
	color: var(--clr-primary-dark);
}

.contact-amzor .btn-primary-dark svg {
	margin-inline-start: 10px;
	width: 20px;
	height: 20px;
}

.contact-amzor .btn-primary-dark svg path {
	stroke: var(--clr-primary-dark);
}

.contact-amzor .btn-primary-dark:hover svg path {
	stroke: var(--clr-primary-dark);
}

/* =========================================
   7. Pharma Franchise Styling
   ========================================= */

.pharma-franchise .franchise-benefits .list-group-item {
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	border-left: 5px solid var(--clr-accent-gold);
	margin-bottom: 15px;
	padding-left: 20px;
	color: var(--clr-primary-dark);
	border-radius: 0;
	background-color: var(--clr-light-gray);
	transition: all var(--transition-speed) ease-in-out;
}

.pharma-franchise .franchise-benefits .list-group-item:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transform: translateX(5px);
}

.pharma-franchise .franchise-benefits i {
	color: var(--clr-accent-gold) !important;
}

.pharma-franchise .card {
	background-color: var(--clr-primary-dark) !important;
}

.pharma-franchise .card-title {
	color: var(--clr-accent-gold) !important;
}

.pharma-franchise .badge {
	background-color: var(--clr-accent-gold) !important;
	color: var(--clr-primary-dark) !important;
	font-weight: 700;
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

/* Testimonial Carousel */
.pharma-franchise .carousel-item {
	padding: 20px;
	text-align: center;
}

.pharma-franchise .carousel-control-prev-icon,
.pharma-franchise .carousel-control-next-icon {
	background-color: var(--clr-primary-dark);
	border-radius: 50%;
	padding: 15px;
}

.pharma-franchise .carousel-control-prev,
.pharma-franchise .carousel-control-next {
	width: 5%;
}

/* Product Cards */
.pharma-franchise .product-card {
	border: 1px solid var(--grey-border) !important;
	border-radius: var(--style-border-radius-buttons-primary) !important;
	transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.pharma-franchise .product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pharma-franchise .product-card img {
	height: 200px;
	object-fit: cover;
	border-top-left-radius: var(--style-border-radius-buttons-primary);
	border-top-right-radius: var(--style-border-radius-buttons-primary);
}

.pharma-franchise .product-card .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.pharma-franchise .product-card .card-title {
	font-size: 1.15rem;
	margin-bottom: 5px;
}

.pharma-franchise .product-card .btn {
	margin-top: 10px;
}

.pharma-franchise .btn-outline-primary-dark {
	border-color: var(--clr-primary-dark);
	color: var(--clr-primary-dark);
}

.pharma-franchise .btn-outline-primary-dark:hover {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
}

/* =========================================
   8. What Makes Us Different Styling
   ========================================= */

.difference-page .difference-banner {
	background-color: var(--clr-primary-dark);
	background-image: url('assets/images/what-make-amzor-different.avif');
	background-size: cover;
	background-position: center;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.difference-page .difference-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: -1;
	border-radius: inherit;
}

.difference-page .difference-banner h2 {
	color: var(--clr-white) !important;
	font-size: 3rem;
	font-family: var(--font-heading);
	position: relative;
}

.difference-page .difference-banner p {
	color: rgba(255, 255, 255, 0.9) !important;
	font-weight: 400;
}

.difference-page .difference-card {
	border: 1px solid var(--grey-border) !important;
	border-top: 5px solid var(--clr-accent-gold) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: var(--style-border-radius-buttons-primary);
}

.difference-page .difference-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.difference-page .difference-card i {
	color: var(--clr-accent-gold) !important;
	font-size: var(--fa-icon-size);
}

.difference-page .difference-card .card-title {
	font-family: var(--font-heading);
	font-weight: 600;
	margin-top: 15px;
}

/* --- amzor archive page css --- */
.amzor-archive-page {
	padding: 60px 0;
	background-color: var(--clr-light-gray);
}

.amzor-archive-page .amzor-product-card {
	background-color: var(--clr-white);
	border: none;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.amzor-archive-page .amzor-product-card:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transform: translateY(-8px);
}

.amzor-archive-page .product-image-link {
	display: block;
	overflow: hidden;
	position: relative;
	height: 250px;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--clr-white);
	border-bottom: 1px solid var(--grey-border);
}

.amzor-archive-page .product-main-image {
	width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
	padding: 15px;
}

.amzor-archive-page .product-cat-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
	background-color: var(--clr-primary-dark);
	color: var(--clr-accent-gold) !important;
	font-weight: 700;
	padding: 7px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	line-height: 1;
	text-transform: uppercase;
}

.amzor-archive-page .amzor-product-card:hover .product-main-image {
	transform: scale(1.1);
}

.amzor-archive-page .product-card-details {
	padding: 20px;
	text-align: center;
	background-color: var(--clr-white);
	flex-shrink: 0;
}

.amzor-archive-page .product-card-details .product-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.2;
	color: var(--clr-primary-dark);
}

.amzor-archive-page .product-card-details .product-composition {
	font-size: 0.9rem;
	font-style: italic;
	color: var(--clr-grey);
	margin-bottom: 20px;
	min-height: 25px;
	line-height: 1.4;
}

.amzor-archive-page .view-details-btn {
	padding: 10px 25px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--style-border-radius-buttons-primary);
	transition: background-color 0.3s ease, transform 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.amzor-archive-page .view-details-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* amzor single prodcut css */
.amzor-single-product {
	padding: 50px 0;
}

.amzor-single-product .product-image-box {
	position: relative;
	overflow: hidden;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--clr-light-gray);
	border-radius: var(--style-border-radius-buttons-primary);
	transition: box-shadow 0.3s ease;
}

.amzor-single-product .product-image-box:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amzor-related-products .section-title::after {
	display: none;
}

.amzor-single-product .product-image-box .product-main-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.4s ease, transform 0.4s ease;
	padding: 20px;
}

.amzor-single-product .product-image-box:hover .product-main-image {
	transform: scale(1.05);
}

.amzor-single-product .product-brand-name {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
}

.amzor-single-product .product-cat-tag {
	background-color: var(--clr-accent-gold) !important;
	color: var(--clr-primary-dark) !important;
	font-size: 0.9rem;
	padding: 5px 10px;
}

.amzor-single-product .product-specs-table {
	display: grid;
	gap: 10px;
	padding: 15px;
	border: 1px solid var(--grey-border);
	border-radius: var(--style-border-radius-buttons-primary);
	background-color: var(--clr-light-gray);
}

.amzor-single-product .spec-row {
	display: flex;
	justify-content: space-between;
	padding-bottom: 5px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.amzor-single-product .spec-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.amzor-single-product .spec-label {
	font-weight: 500;
	color: var(--clr-grey);
}

.amzor-single-product .query-btn {
	position: relative;
	overflow: hidden;
}

.amzor-single-product .query-btn::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(45deg);
	opacity: 0;
	animation: pulse-shine 2s infinite ease-out;
	border-radius: 50%;
}

@keyframes pulse-shine {
	0% {
		opacity: 0;
		transform: scale(0.1) translate(0, 0) rotate(45deg);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.5) translate(10%, 10%) rotate(45deg);
	}

	100% {
		opacity: 0;
		transform: scale(2.5) translate(20%, 20%) rotate(45deg);
	}
}

.amzor-related-products .section-title {
	font-size: 2rem;
}

.amzor-related-products .related-products-grid .amzor-product-card {
	height: 350px !important;
}

.amzor-related-products .related-product-overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.amzor-related-products .related-products-grid .amzor-product-card:hover .related-product-overlay-content {
	opacity: 1;
	visibility: visible;
}

@media(max-width:767px) {
	.amzor-single-product .spec-row {
		display: block;
	}
}

/* amzor mobile quick menu css */
#amzor-mobile-quick-menu {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	background: var(--clr-white);
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9999;
	padding: 0;
	margin: 0 !important;
	height: 65px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--clr-accent-gold);
}

#amzor-mobile-quick-menu a {
	flex-grow: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5px 0;
	font-size: 12px;
	color: var(--clr-primary-dark) !important;
	font-weight: 600;
	text-decoration: none !important;
	border-right: 1px solid rgba(0, 0, 0, 0.05);
	transition: background-color 0.3s ease, color 0.3s ease;
}

#amzor-mobile-quick-menu a:last-child {
	border-right: none;
}

#amzor-mobile-quick-menu a:hover {
	background-color: rgba(0, 0, 0, 0.03);
	color: var(--clr-accent-gold) !important;
}

#amzor-mobile-quick-menu a i {
	font-size: 24px;
	margin-bottom: 2px;
	color: var(--clr-primary-dark);
	transition: color 0.3s ease;
	transform-origin: center;
}

#amzor-mobile-quick-menu a:hover i {
	color: var(--clr-accent-gold);
}

#amzor-mobile-quick-menu #callll i {
	animation: phone-pulse 2s infinite ease-out;
}

@keyframes phone-pulse {
	0% {
		transform: scale(1);
	}

	5% {
		transform: scale(1.1);
		color: var(--clr-accent-gold);
	}

	10% {
		transform: scale(1);
	}

	20% {
		transform: rotate(5deg);
	}

	25% {
		transform: rotate(-5deg);
	}

	30% {
		transform: rotate(5deg);
	}

	35% {
		transform: rotate(0deg);
	}

	100% {
		transform: scale(1);
	}
}

#amzor-mobile-quick-menu #whatsappp i {
	animation: whatsapp-glow 3s infinite ease-in-out;
}

@keyframes whatsapp-glow {

	0%,
	100% {
		text-shadow: 0 0 5px var(--clr-accent-gold), 0 0 10px rgba(0, 0, 0, 0.1);
		transform: scale(1);
	}

	50% {
		text-shadow: 0 0 15px var(--clr-accent-gold), 0 0 20px var(--clr-accent-gold);
		transform: scale(1.05);
	}
}

#amzor-mobile-quick-menu .custom-primary i {
	animation: send-bounce 2.5s infinite;
}

@keyframes send-bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-5px);
	}

	60% {
		transform: translateY(-3px);
	}
}

#amzorContactModal .modal-body {
	background: var(--clr-light-gray);
}

#amzorContactModal .modal-header {
	background: var(--clr-black);
	color: var(--clr-white);
}

#amzorContactModal .modal-header .btn-close {
	filter: invert(1);
	opacity: 1;
}

#amzorContactModal .modal-header .btn-close:hover {
	filter: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E7BF5D'%3E%3Cpath d='M2.146 2.854a.5.5 0 011-.708L8 6.293l4.854-4.147a.5.5 0 11.708.708L9.707 7l4.147 4.854a.5.5 0 01-.708.708L8 7.707l-4.854 4.147a.5.5 0 01-.708-.708L6.293 7 2.146 2.854z'/%3E%3C/svg%3E");
}

 /* Amzor all prodcuts page */
.amzor-category-product-page {
	min-height: 80vh;
}

.amzor-category-product-page .category-sidebar-nav {
	top: 100px;
	background-color: var(--clr-light-gray);
	border-radius: var(--style-border-radius-buttons-primary);
}

.amzor-category-product-page .category-nav-list {
	margin: 0;
	padding: 0;
}

.amzor-category-product-page .category-link {
	text-decoration: none !important;
	color: var(--clr-grey) !important;
	font-weight: 500;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.amzor-category-product-page .category-link:hover,
.amzor-category-product-page .category-link.active {
	background-color: var(--clr-white);
	color: var(--clr-primary-dark) !important;
	border-color: var(--grey-border);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.amzor-category-product-page .category-link:hover i,
.amzor-category-product-page .category-link.active i {
	color: var(--clr-accent-gold) !important;
}

/* .amzor-category-product-page .category-section {
	scroll-margin-top: 100px;
} */

.amzor-category-product-page .category-title {
	font-family: var(--font-heading);
}

.amzor-category-product-page .border-accent {
	border-color: var(--clr-accent-gold) !important;
}

.amzor-category-product-page .amzor-product-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: var(--clr-white);
	border-radius: var(--style-border-radius-buttons-primary);
}

.amzor-category-product-page .amzor-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.amzor-category-product-page .product-image-link {
	background-color: var(--clr-light-gray);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 250px;
	overflow: hidden;
	border-top-left-radius: var(--style-border-radius-buttons-primary);
	border-top-right-radius: var(--style-border-radius-buttons-primary);
}

.amzor-category-product-page .product-main-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.4s ease, transform 0.4s ease;
	padding: 10px;
}

.amzor-category-product-page .amzor-product-card:hover .product-main-image {
	transform: scale(1.05);
}

.amzor-category-product-page .product-cat-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10;
	background-color: var(--clr-accent-gold) !important;
	color: var(--clr-primary-dark) !important;
	padding: 5px 10px;
	border-radius: var(--style-border-radius-buttons-primary);
	font-size: 0.8rem;
}

.amzor-category-product-page .product-title {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.amzor-category-product-page .view-details-btn {
	background-color: var(--clr-accent-gold) !important;
	color: var(--clr-primary-dark) !important;
	font-weight: 600;
}