/*
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.40
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: #d23327;
	--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: #d23327 !important;
}

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

.header-logo {
    width: 45%;
}
@media(max-width:767px){
	.header-logo {
    width: 80%;
}
header.amzor-header .logo-head{
	padding: 0 !important;
}
}

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

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;
    background: var(--clr-white);
    z-index: 99;
    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: #a43648;
    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: #d23327;
    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: #000000;
    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: #d4d4d4;
    color: var(--clr-primary-dark);
}

.btn-custom-pill .btn-icon-circle-s2 {
    background-color: #d23327;
    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 #a43648;
}
/* Our services section css */
.our-services {
    background-color: #000000;
    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: rgb(118 9 27);
    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(max-width:767px){
	.our-services .service-list .accordion-li.active .accordion-title-icon, 
	.our-services .service-list .accordion-li.active .accordion-title {
    display: none;
}
.our-services .service-list {
    padding: 20px;
}
.our-services .service-list .accordion-li.active .accordion-content {
    padding: 0;
}
.our-services .service-list .accordion-li .fa-plus-circle-mobile {
    display: none;
}
.our-services .service-list .accordion-li .icon {
	display: none;
}
}

@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;
	}
}

/* --- 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: #c14132;
    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: #0e0d0e !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-icon i {
    font-size: 42px;
}

.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;
	}
}

/* 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;
	color: var(--clr-white);
}

.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);
}
#contactModal .modal-content {
background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.contact-section-s3 .contact-form-card .form-header .text-16, #contactModal .form-header .text-16 {
	margin-top: 10px;
	opacity: 0.7;
}

.contact-section-s3 .contact-form-card .form-control, #contactModal .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, #contactModal .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,#contactModal .form-control::placeholder{
	color: var(--clr-grey);
	opacity: 1;
}

.contact-section-s3 .contact-form-card .btn-primary-dark, #contactModal .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, #contactModal .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);
}

#contactModal button.btn-close {
    filter: invert(1);
}

@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, #contactModal .btn-primary-dark{
		width: 100%;
	}

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

	.contact-section-s3 .contact-form-card .btn-primary-dark, #contactModal .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;
	}

}

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

.footer-brand img.footer-logo {
    width: 190px !important;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social .social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--clr-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: var(--clr-accent-gold);
    color: var(--clr-primary-dark);
    transform: translateY(-4px);
}

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

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

.footer-links li {
    font-size: 15px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--clr-accent-gold);
    margin-top: 4px;
}

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

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

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 18px;
    text-decoration: none;
}

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

@media (max-width: 991px) {
    .footer-social {
        justify-content: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-heading,
    .footer-links {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-desc {
        font-size: 14px;
    }

    .footer-brand img.footer-logo {
        width: 160px !important;
    }
}


/* Breadcrumb Css */
.page-breadcrumb {
    background: linear-gradient(135deg, var(--clr-accent-gold) 0%, var(--clr-primary-dark) 100%);
    padding: 50px 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) {
	header.amzor-header{
		padding: 10px 0;
	}
header.amzor-header.navbar-scrolled {
    position: unset !important;
    /* top: 0; */
    padding: 10px 0;
}
.main-footer img.footer-logo {
    width: 0% !important;
    margin-bottom: 20px !important;
}
.page-breadcrumb {
    padding: 55px 0 40px 0 !important;
}
	.page-breadcrumb .extraa {
		margin: 15px 0;
	}
}


/* 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);
	}
}
@media(max-width:426px) {
	.hero-section {
		height: 100%;
    min-height: 450px;
	}
.hero-section .banner-description{
	margin-bottom: 0 !important;
}
	.hero-section .hero-swiper,
	.hero-section .swiper-slide {
		height: 450px !important;
	}
}

@media(max-width:376px) {
	.hero-section {
		height: 100%;
    min-height: 520px;
	}

	.hero-section .hero-swiper,
	.hero-section .swiper-slide {
		height: 520px !important;
	}
}

@media(max-width:320px) {
	.hero-section {
		height: 100%;
		min-height: 530px;
	}

	.hero-section .hero-swiper,
	.hero-section .swiper-slide {
		height: 530px !important;
	}
}


.thank-you {
    padding: 30px 0;
}

.thank-you-box {
    background: linear-gradient(135deg, var(--clr-accent-gold) 0%, var(--clr-primary-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 48px 36px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.thank-you-icon i {
    font-size: var(--fa-icon-size);
    color: var(--clr-white);
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--clr-white);
    font-weight: 600;
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 24px;
}

.thank-you-btn {
    font-family: var(--font-button--family);
    font-weight: var(--font-button--weight);
    color: var(--color-primary-button-text);
    border: 1px solid var(--color-primary-button-border);
    background: var(--color-primary-button-background);
    padding: 12px 32px;
    border-radius: 50px;
    transition: var(--transition-speed);
}

.thank-you-btn:hover {
    background: var(--clr-white);
    color: #000;
}
