/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Sellsmart - Single Product Landing page HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Why Choose us css
08. Our Products css
09. Our Key Points css
10. What We Do css
11. Intro Video css
12. Our Best Seller css
13. CTA Box css
14. Our FAQs css
15. Premium Products css
16. Our Testimonials css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Blog Archive css
21. Blog Single css
22. Features Page css
23. Testimonials Page css
24. FAQs Page css
25. Contact Us Page css
26. 404 Error Page css
27. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #022a55;
	--secondary-color			: #EDF5EA;
	--text-color				: #747975;
	    --primary-gradient: linear-gradient(135deg, #043B77 0%, #010308 100%);
	--accent-color				: #043B77;
	--white-color				: #FFFFFF;
	--divider-color				: #11341C0D;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Poppins", sans-serif;

			--search-ink: #011e58;
			--search-surface: #ffffff;
			--search-surface-muted: #f4f5f7;
			--search-border: #e7e8ec;
			--search-accent: rgb(30, 8, 109);
			--search-accent-soft: rgba(209, 212, 232, 0.14);
			--search-accent-softer: rgba(185, 134, 46, 0.08);
			--search-text-muted: #6e7280;
			--search-radius-lg: 18px;
			--search-radius-md: 12px;
			--search-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--white-color);
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p{
	line-height: 1.7em;
	margin-bottom: 1.57em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
	z-index: 1;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
	border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 52px 17px 25px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default::before{
	content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 24px;
	line-height: normal;
    color: white!important;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted:hover,
.btn-default.btn-highlighted:hover::before{
	color: var(--white-color);
}

.btn-default.btn-highlighted::after{
	background: var(--primary-gradient);
	color:white
}

.btn-default.border-btn{
	background: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	padding: 16px 51px 16px 24px;
}

.btn-default.border-btn::before{
	color: var(--accent-color);
}

.btn-default.border-btn:hover,
.btn-default.border-btn:hover::before{
	color: var(--white-color);
}

.btn-default.border-btn::after{
	background: var(--accent-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 38px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-3px, -50%);
    font-size: 24px;
	line-height: normal;
    color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	color: var(--primary-color);
	transform: translate(0, -50%);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	font-size: 16px;
    font-weight: 700;
	line-height: 1em;
	letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
	border-left: 4px solid var(--accent-color);
	padding-left: 14px;
    margin-bottom: 15px;
}

.section-title h1{
	font-size: 80px;
	font-weight: 700;
	line-height: 1.1em;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 30px;
}
.title-bg-sec  h2,.title-bg-sec h3{
	color:white!important;
}
.dark-section{
	position: relative;
	background: var(--primary-gradient);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title-content p,
.dark-section .section-title p{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
	background-color: white;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 10px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
	max-width: 150px;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1em;
	padding: 15px 20px !important;
	color: BLACK;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--white-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 6px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 6px 20px 6px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	padding: 220px 0 105px;
}



/* .hero::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 20%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 1;
} */

.hero .container{
	position: relative;
	z-index: 3;
}

.hero.hero-video{
	padding: 290px 0 175px;
}

.hero.hero-video .hero-bg-video::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--primary-color);
    opacity: 90%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-video.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout{
	overflow: hidden;
	position: relative;

	
}

.hero.hero-slider-layout .swiper,
.hero.hero-slider-layout .swiper-wrapper,
.hero.hero-slider-layout .swiper-slide{
	height: 100%;
}



.hero.hero-slider-layout .hero-slide{
	position: relative;

    height: 100%;

    display: flex;
    align-items: center;
    overflow: hidden;
}



.hero.hero-slider-layout .hero-slide .hero-slider-image{
 min-height:fit-content;

	width: 100%;
	
	overflow: hidden;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}





.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero.hero-video .hero-content{
	text-align: center;
}

.hero.hero-video .hero-content .section-title p{
	width: 100%;
	max-width: 800px;
	margin: 20px auto 0;
}

.hero.hero-video .hero-content .hero-list ul,
.hero.hero-video .hero-content .hero-btn{
	justify-content: center;
}

.hero-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.hero-list ul li{
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--white-color);
	text-align: left;
	padding-left: 30px;
}

.hero-list ul li:last-child{
	margin-bottom: 0;
}

.hero-list ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.hero-btn{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.hero-image figure{
	display: block;
}

.hero-image img{
	width: 100%;
	aspect-ratio: 1 / 0.825;
	object-fit: cover;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	background-color: var(--accent-color);
	padding: 25px 0;
}

.scrolling-ticker-box{
	--gap: 15px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 40s linear infinite;
}

.scrolling-content span{
	display: inline-block;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
	color: var(--white-color);
}

.scrolling-content span img{
	width: 26px;
	margin-right: 15px;
}

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

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-images{
	margin-right: 25px;
}

.about-images figure{
	display: block;
}

.about-images img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.about-us-body{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about-us-list{
    width: calc(50% - 15px);
}

.about-us-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.about-us-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-list ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.about-body-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	border: 1px solid var(--divider-color);
    box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 20px;
	padding: 20px;
}

.about-body-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.about-body-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-body-item:hover .icon-box::before{
	transform: scale(1);
}

.about-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 35px;
	z-index: 1;
}

.about-body-item-title{
	position: relative;
	width: calc(100% - 75px);
	z-index: 1;
}

.about-body-item-title h3{
	font-size: 20px;
	line-height: 1.3em;
}

.about-us-footer{
    display: flex;
	align-items: center;
    flex-wrap: wrap;
    gap: 30px 60px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.about-contact-box{
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.about-contact-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-contact-box:hover .icon-box::before{
	transform: scale(1);
}

.about-contact-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 26px;
	z-index: 1;
}

.about-contact-box-content p{
    margin-bottom: 3px;
}

.about-contact-box-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-box-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.about-contact-box-content h3 a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	 07. Why Choose us css 	  ***/
/************************************/

.why-choose-us{
	position: relative;
	background-color: var(--secondary-color);
	padding: 100px 0;
}





.why-choose-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.why-choose-item-box-1,
.why-choose-item-box-2{
	width: calc(31% - 20px);
}

.why-choose-item{
	position: relative;
	text-align: center;
	padding-right: 80px;
	margin-bottom: 120px;
}

.why-choose-item:last-child{
	margin-bottom: 0;
}

.why-choose-item-box-2 .why-choose-item{
	padding: 0 0 0 80px;
}

.why-choose-item::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background: url('../images/why-choose-arrow.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 76px;
	height: 50px;
	transform: translateY(-50%);
}

.why-choose-item-box-1 .why-choose-item:nth-child(even)::before{
	transform: rotateX(180deg) translateY(50%);
}

.why-choose-item-box-2 .why-choose-item::before{
	right: auto;
	left: 0;
	transform: rotateY(180deg) translateY(-50%);
}

.why-choose-item-box-2 .why-choose-item:nth-child(even)::before{
	transform: rotateX(180deg) rotateY(180deg) translateY(50%);
}

.why-choose-item .icon-box{
	width: 150px;
	height: 150px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
}

.why-choose-item .icon-box img{
	width: 100%;
	max-width: 100px;
}

.why-choose-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--accent-color);
}

.why-choose-item-content p{
	margin-bottom: 0;
}

.why-choose-image{
	width: calc(38% - 20px);
}

.why-choose-image figure{
	display: block;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/************************************/
/*** 	 08. Our Products css 	  ***/
/************************************/

.our-products{
	padding: 100px 0;
	background: var(--primary-gradient);
}

.products-listing-section{
	padding: 90px 0;
	background: #f7f8fb;
}

.products-listing-section .section-title h2,
.products-listing-section .section-title h3{
	color: var(--primary-color);
}

.products-listing-grid .product-item{
	height: 100%;
	background: var(--white-color);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease-in-out;
}

.products-listing-grid .product-item:hover{
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.products-listing-grid .product-title h3{
	color: var(--primary-color);
	  display: -webkit-box;
  -webkit-line-clamp: 1; /* Show only 1 line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products-listing-grid .product-price p{
	color: var(--accent-color);
	font-weight: 600;
}

.col-lg-2-4{
	flex: 0 0 20%;
	max-width: 20%;
}

@media (max-width: 991px){
	.col-lg-2-4{
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}

@media (max-width: 767px){
	.col-lg-2-4{
		flex: 0 0 50%;
		max-width: 50%;
		padding-left: 0.35rem;
		padding-right: 0.35rem;
	}
}

@media (max-width: 575px){
	.col-lg-2-4{
		flex: 0 0 50%;
		max-width: 50%;
		padding-left: 0.25rem;
		padding-right: 0.25rem;
	}
}

.product-item{
	text-align: center;
	border: 1px solid var(--divider-color);
	border-radius: 5px;

}

.product-image{
	margin-bottom: 20px;
}
.prd-price .old-price{
	color: rgb(222, 222, 222)!important;

}
.prd-price .new-price{
	color: var(--white-color)!important;
}
.product-image figure{
	display: block;
	border-radius: 5px;
}

.product-image img{
	width: 100%;
	aspect-ratio: 1 / 1.186;
	object-fit: cover;
	
}

.product-title{
	margin-bottom: 10px;
}
.product-price{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
	justify-content: center;
	padding-bottom: 10px;
	color:white;
}

.product-price .old-price{
    font-size: 16px;
    color: #ffffff;
    text-decoration: line-through;

}

.product-price .new-price{

    color: var(--whi-color); /* or #e63946 */
    font-weight: 700;
}
.product-title h3{
	font-size: 20px;
	color:white;
}

.product-item-body{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.product-rating{
	display: flex;
	gap: 1px;
}

.product-rating i{
	font-size: 14px;
	color: var(--accent-color);
}

.product-price p{
	color: var(--white-color);
	margin-bottom: 0;
}

.product-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}

.product-slider .product-button-next,
.product-slider .product-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.product-slider .product-button-next{
	margin-left: 20px;
}

.product-slider .product-button-next:hover,
.product-slider .product-button-prev:hover{
	background: var(--accent-color);
}

.product-slider .product-button-next::before,
.product-slider .product-button-prev::before{
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 20px;
	color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.product-slider .product-button-prev::before{
	transform: rotate(180deg);
}

.product-slider .product-button-next:hover:before,
.product-slider .product-button-prev:hover:before{
	color: var(--white-color);
}

.our-product-benefits{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 100px;
}

.product-benefit-item{
    width: calc(25% - 22.5px);
    display: flex;
    align-items: center;
}

.product-benefit-item .icon-box{
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: 0px 0px 60px 0px #00000012;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.product-benefit-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.product-benefit-item:hover .icon-box::before{
    transform: scale(1);
}

.product-benefit-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 45px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.product-benefit-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.product-benefit-content{
    width: calc(100% - 100px);
}

.product-benefit-content h3{
    font-size: 20px;
    line-height: 1.4em;
}

/************************************/
/*** 	09. Our Key Points css	  ***/
/************************************/

.product-detail-section{
	padding: 90px 0 70px;
}

.product-detail-gallery{
	padding: 24px;
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
	.product-detail-section .row {
		align-items: flex-start;
	}

	.product-detail-gallery {
		position: sticky;
		top: 120px;
		z-index: 10;
		align-self: flex-start;
	}
}

.product-gallery-main {
    border-radius: 24px;
    overflow: hidden;
    background: var(--white-color);
    position: relative;
    margin-bottom: 20px;
}

.product-gallery-main .swiper-slide figure {
    display: block;
    margin: 0;
    width: 100%;
}

.product-gallery-main .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    display: block;
}

/* Custom Swiper arrows styling */
.product-gallery-prev,
.product-gallery-next {
    width: 44px;
    height: 44px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-top: 0;
    transform: translateY(-50%);
}

.product-gallery-prev {
    left: 15px;
}

.product-gallery-next {
    right: 15px;
}

.product-gallery-prev::after,
.product-gallery-next::after {
    font-size: 16px;
    font-weight: 900;
}

.product-gallery-prev:hover,
.product-gallery-next:hover {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.05);
}

.product-gallery-thumbs {
    padding: 2px 0;
}

.product-gallery-thumbs .product-thumb {
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-gallery-thumbs .product-thumb img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.product-gallery-thumbs .swiper-slide-thumb-active .product-thumb {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-detail-content{
	padding-left: 30px;
}

.product-meta-badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.product-badge{
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(242, 95, 61, 0.12);
	color: var(--accent-color);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 42, 85, 0.05);
    padding: 6px 12px;
    border-radius: 99px;
}

.product-rating-badge .rating-stars {
    color: #FFC107;
    font-size: 13px;
}

.product-rating-badge .rating-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-detail-content h2{
	font-size: clamp(28px, 3vw, 42px);
	margin-bottom: 16px;
	color: var(--primary-color);
}

.product-short-desc{
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8em;
	color: var(--text-color);
}

.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    border: 1px solid rgba(2, 42, 85, 0.06);
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(2, 42, 85, 0.05);
}

.trust-badge i {
    color: var(--accent-color);
    font-size: 16px;
}

.trust-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-detail-list{
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;
	gap: 10px;
}

.product-detail-list li{
	position: relative;
	padding-left: 24px;
	color: var(--text-color);
}

.product-detail-list li::before{
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--accent-color);
}

.product-price-section {
    background: rgba(2, 42, 85, 0.02);
    border: 1px solid var(--divider-color);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.price-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.price-header-row .original-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #a0a6a1;
    font-weight: 500;
}

.price-header-row .save-badge {
    background: #E85A4F;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    text-transform: uppercase;
}

.product-price-display {
    display: flex;
    align-items: baseline;
    color: var(--primary-color);
}

.product-price-display .price-symbol {
    font-size: 20px;
    font-weight: 700;
    margin-right: 2px;
}

.product-price-display .product-price {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.product-quantity-row-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--divider-color);
}

.quantity-label, 
.total-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-quantity{
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1.5px solid var(--divider-color);
	border-radius: 999px;
	background: var(--white-color);
}

.qty-btn{
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: var(--secondary-color);
	color: var(--accent-color);
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.qty-input{
	width: 38px;
	border: 0;
	background: transparent;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
}

.qty-input:focus{
	outline: none;
}

.product-total-row-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 24px;
}

.product-total-row-new .product-total {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
}

.product-actions-full {
    margin-top: 8px;
}

.product-order-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #25D366;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 99px;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    animation: buttonPulse 2s infinite ease-in-out;
}

.product-order-btn-full i {
    font-size: 22px;
}

.product-order-btn-full:hover {
    background: #128C7E;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: var(--white-color);
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    }
}

.product-badges-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
}

.badge-footer-item {
    font-size: 13px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.badge-footer-item i {
    color: var(--primary-color);
    font-size: 14px;
}

@media (max-width: 991px){
	.product-detail-content{
		padding-left: 0;
		margin-top: 30px;
	}
}

@media (max-width: 767px){
	.product-detail-section{
		padding: 70px 0 50px;
	}

	.product-detail-gallery{
		padding: 16px;
	}
}

.our-key-points{
	position: relative;
	padding: 100px 0;
}





.key-points-step-item{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.key-points-step-item:last-child{
	margin-bottom: 0;
}

.key-points-steo-no{
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 30px;
}

.key-points-steo-no::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 0;
	left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.key-points-step-item:hover .key-points-steo-no::before{
	transform: scale(1);
}

.key-points-steo-no::after{
	content: "";
	display: block;
	position: absolute;
	left: 30px;
	bottom: -20px;
	transform: translateY(100%);
	border-left: 1px solid var(--dark-divider-color);
	width: 1px;
	height: 90%;
	z-index: -1;
}

.key-points-step-item:last-child .key-points-steo-no::after{
	display: none;
}

.key-points-steo-no h3{
	position: relative;
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.key-points-step-item:hover .key-points-steo-no h3{
	color: var(--primary-color);
}

.key-points-step-content{
	width: calc(100% - 90px);
}

.key-points-step-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.key-points-step-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.key-points-image{
    margin: 0 40px;
}

.key-points-image figure{
	display: block;
}

.key-points-image img{
	width: 100%;
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
}

/************************************/
/*** 	  10. What We Do css 	  ***/
/************************************/

.what-we-do{
	padding: 100px 0;

}

.what-we-do .section-title{
	margin-bottom: 0;
}

.what-we-do-image figure{
	display: block;
}

.what-we-do-image img{
	width: 100%;
	aspect-ratio: 1 / 0.967;
	object-fit: cover;
}

.what-we-do-header{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.what-we-do-header p{
	margin-bottom: 0;
}

.what-do-counter-item{
	margin-bottom: 40px;
}

.what-do-counter-item:last-child{
	margin-bottom: 0;
}

.what-do-counter-item h2{
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
}

.what-do-counter-item p{
	margin-bottom: 0;
}

.section-footer-text{
	margin-top: 60px;
	text-align: center;
}

.section-footer-text p{
	margin-bottom: 0;
}

.section-footer-text span{
	font-weight: 500;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 2px 10px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/*** 	  11. Intro Video css 	  ***/
/************************************/

.intro-video{
    position: relative;
    background: url('../images/intro-video-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 220px 0 60px;
}

.intro-video::before{
    content: '';
    position: absolute;
    top: 0; 
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
}

.intro-video-box{
    position: relative;
    z-index: 1;
}

.intro-video-box .video-play-button{
    margin-bottom: 220px;
}

.video-play-button a{
	position: relative;
	background: var(--accent-color);
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	background: var(--white-color);
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--dark-divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--dark-divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
    font-size: 30px;
	color: var(--white-color);
    margin-left: 4px;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover i{
    color: var(--primary-color);
}

.intro-video-item-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 60px;
}

.intro-video-item{
    width: calc(25% - 22.5px);
    display: flex;
    align-items: center;
}

.intro-video-item img{
    max-width: 30px;
    margin-right: 10px;
}

.intro-video-item h3{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white-color);
}

/************************************/
/*** 	12. Our Best Seller css	  ***/
/************************************/

.our-best-seller{
	padding: 100px 0;
}

.best-seller-image{
	position: relative;
	margin-right: 20px;
}

.best-seller-image figure{
	display: block;
}

.best-seller-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
}

.seller-counter-box{
	position: absolute;
	top: 110px;
	right: 45px;
	width: 100%;
	max-width: 200px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	z-index: 1;
}

.seller-counter-box::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.seller-counter-box:hover::before{
	height: 100%;
	border-radius: 0;
}

.seller-counter-box h2,
.seller-counter-box ul,
.seller-counter-box p{
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.seller-counter-box h2{
	font-size: 48px;
	margin-bottom: 20px;
}

.seller-counter-box ul{
	display: flex;
	gap: 2px;
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.seller-counter-box ul li i{
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.seller-counter-box p{
	margin-bottom: 0;
}

.seller-counter-box:hover h2,
.seller-counter-box:hover ul li i,
.seller-counter-box:hover p{
	color: var(--white-color);
}

.best-seller-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.best-seller-body ul li{
	position: relative;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.best-seller-body ul li:last-child{
	margin-bottom: 0;
}

.best-seller-body ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.best-seller-footer{
	display: flex;
	gap: 30px 40px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.best-seller-price{
	display: flex;
	align-items: center;
	gap: 20px;
}

.best-seller-price h2{
	font-size: 30px;
}

.best-seller-price h3{
	font-size: 18px;
	color: var(--accent-color);
	text-decoration: line-through;
}

/************************************/
/*** 	    13. CTA Box css		  ***/
/************************************/

.cta-box{
    position: relative;
	background: url('../images/cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.cta-box::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 90%;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.cta-btn{
	position: relative;
    display: inline-block;
}

.cta-btn::before{
	content: '';
    position: absolute;
    bottom: 5px;
    right: -30px;
    transform: translateX(100%);
    background: url('../images/cta-box-arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	width: 100px;
    height: 55px;
    animation: ctaarrowmove 2s infinite linear alternate;
}

@keyframes ctaarrowmove{
	50%{
		right: -55px;
	}
}

.cta-image{
    margin: 0 125px;
}

.cta-image figure{
    display: block;
}

.cta-image img{
    width: 100%;
    aspect-ratio: 1 / 0.924;
    object-fit: cover;
}

/************************************/
/*** 	   14. Our FAQs css 	  ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.faq-accordion .accordion-item{
	position: relative;
	border: 1px solid var(--divider-color);
    background: var(--white-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 16px;
	margin-bottom: 25px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 18px 55px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f0ab';
	font-family: 'FontAwesome';
	position: absolute;
	right: 20px;
	top: 18px;
	font-size: 24px;
	color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4S ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body{
	border-top: 1px solid var(--divider-color);
	padding: 20px 55px 20px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
	margin: 0;
}

.faq-image{
	margin-left: 55px;
}

.faq-image figure{
	display: block;
}

.faq-image img{
	width: 100%;
	aspect-ratio: 1 / 0.797;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***   15. Premium Products css	  ***/
/************************************/

.premium-products{
	position: relative;
	background: var(--secondary-color);
	padding: 100px 0 0;
}

.premium-products::before{
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 250px;
    height: 300px;
	z-index: 0;
}

.premium-products::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 5%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 0;
}

.premium-product-content{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.premium-benefits{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 60px;
	margin: 0 80px;
}

.premium-benefit-item{
	width: calc(50% - 30px);
	display: flex;
	align-items: center;
}

.premium-benefit-item .icon-box{
	position: relative;
	width: 80px;
	height: 80px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.premium-benefit-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.premium-benefit-item:hover .icon-box::before{
	transform: scale(1);
}

.premium-benefit-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 45px;
	z-index: 1;
}

.premium-benefit-item-content{
	width: calc(100% - 100px);
	text-align: left;
}

.premium-benefit-item-content h3{
	font-size: 20px;
	line-height: 1.3em;
}

.premium-product-image{
	background: url('../images/premium-product-arrow.svg') no-repeat;
	background-position: top  center;
	background-size: 100% auto;
	overflow: hidden;
	padding-top: 100px;
}

.premium-product-image figure{
	display: block;
}

.premium-product-image img{
	width: 100%;
	max-width: 645px;
	aspect-ratio: 1 / 0.824;
	object-fit: cover;
	margin-bottom: -190px;
}

/************************************/
/***   16. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	background: var(--primary-gradient) ;
	background-size: cover;
	padding: 100px 0;
}
.testi-sec-title h2{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.review-image-box{
	display: inline-flex;
	align-items: center;
	gap: 30px;
}

.customer-img{
	position: relative;
	display: inline-block;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    margin-left: -20px;
	width: 62px;
	height: 62px;
	z-index: 1;
}

.customer-img:first-child{
    margin: 0;
}

.customer-img figure{
    display: block;
	border-radius: 50%;
}

.customer-img img{
    max-width: 100%;
    border-radius: 50%;
}

.review-content ul{
	display: flex;
	gap: 2px;
	margin-bottom: 5px;
	padding: 0;
	list-style: none;
}

.review-content ul li{
	color: var(--accent-color);
}

.review-content ul li span{
	margin-right: 10px;
}

.review-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.testimonial-slider .swiper-wrapper{
    cursor: none;
}

.testimonial-item{
	position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px;
	overflow: hidden;
}

.testimonial-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: white;
	border-radius: 999px 999px 0 0;
    transition: all 0.4s ease-in-out;
    height: 100%;
    z-index: 0;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item::before{
    top: 0;
	border-radius: 0;
}

.testimonial-author,
.testimonial-content{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.testimonial-author{
	display: flex;
	align-items: center;
}

.author-image{
    display: inline-block;
    margin-right: 15px;
}

.author-image figure{
    border-radius: 50%;
    display: block;
}

.author-image img{
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.author-content{
	width: calc(100% - 65px);
}

.author-content h3{
    font-size: 20px;
    text-transform: capitalize;
	color: var(--primary-color);
    margin-bottom: 5px;
}

.author-content p,
.testimonial-content p{
	color: var(--primary-color);
    margin-bottom: 0;
}

.testimonial-body{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

.testimonial-rating i{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-rating i{
	color: var(--primary-color);
}

.testimonial-quote img{
	width: 100%;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}



.testimonial-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 20px;
	color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	color: var(--white-color);
}

/************************************/
/*** 	   17. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.blog-slider{
	position: relative;
}

.blog-slider .swiper{
	padding-bottom: 30px;
}

.blog-slider .swiper-slide{
	height: auto;
}

.blog-slider .post-item{
	height: 100%;
	margin-bottom: 0;
}

.blog-slider-btn{
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 10px;
}

.blog-button-prev,
.blog-button-next{
	position: relative;
	width: 48px;
	height: 48px;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	background: var(--white-color);
}

.blog-button-prev::before,
.blog-button-next::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--accent-color);
	border-left: 2px solid var(--accent-color);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.blog-button-next::before{
	transform: translate(-50%, -50%) rotate(135deg);
	left: 46%;
}

.blog-button-prev:hover,
.blog-button-next:hover{
	background: var(--accent-color);
}

.blog-button-prev:hover::before,
.blog-button-next:hover::before{
	border-color: var(--white-color);
}

.post-item{
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a{
    cursor: none;	
    display: block;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	padding: 30px;
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
	      display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 1 line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/************************************/
/*** 	   18. Footer css	 	  ***/
/************************************/

.main-footer{
	position: relative;
	padding: 20px 0 0;
}



.about-footer{
    margin-right: 200px;
}

.footer-logo{
	margin-bottom: 30px;
	background: var(--white-color);
	display:flex;
	justify-content: center;
	border-radius: 20px;	
}

.footer-logo img{
	width: 100%;
	max-width: 231px;
}

.about-footer-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links h3{
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

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

.footer-links ul li{
	text-transform: capitalize;
	line-height: 1.5em;
	margin-bottom: 10px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

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

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.footer-contact-item:last-child{
	margin: 0;	
}

.footer-contact-item .icon-box{
	position: relative;
	height: 50px;
    width: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}

.footer-contact-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.footer-contact-item:hover .icon-box::before{
	transform: scale(1);
}

.footer-contact-item .icon-box img{
	position: relative;
	max-width: 25px;
	z-index: 1;
}

.footer-contact-item-content{
	width: calc(100% - 65px);
}

.footer-contact-item-content p{
	color: var(--white-color);
	margin-bottom: 2px;
}

.footer-contact-item-content h3{
	font-size: 20px;
	text-transform: none;
	color: var(--accent-color);
	margin: 0;
}

.footer-contact-item-content h3 a{
	color: white;
	transition: all 0.3s ease-in-out;
	font-size: 16px;
}

.footer-contact-item-content h3 a:hover{
	color: var(--white-color);
}
.blg-title{
	color:var(--primary-color)!important;
}
.footer-cta-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 60px;
}

.footer-newsletter-form{
    display: flex;
	flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    width: calc(62% - 10px);
}

.footer-newsletter-form h3{
	margin-bottom: 0;
}

.footer-newsletter-form form{
	width: 64%;
}

.footer-newsletter-form .form-group{
	display: flex;
	background: var(--dark-divider-color);
	border-radius: 16px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control{
	width: 72%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted{
	width: 28%;
	border-radius: 14px;
	padding: 17px;
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted::before{
	display: none;
}

.footer-social-links{
	width: calc(38% - 10px);
	text-align: right;
}

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

.footer-social-links ul li{
    display: inline-block;
    margin-right: 15px;
}

.footer-social-links ul li:last-child{
    margin: 0;
}

.footer-social-links ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--accent-color);
}

.footer-social-links ul li i{
    font-size: 18px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
    color: var(--accent-color);
}

.footer-copyright-text{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding: 10px 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	text-align: center;
	margin: 0;
}

/************************************/
/*** 	 19. ABout Us Page css 	  ***/
/************************************/

.page-header{
    position: relative;
    background: url('../images/spaniya/banner-1.jpg') no-repeat center center;
    background-size: cover;
    padding: 230px 0 115px;
    overflow: hidden;
    z-index: 1;
}

/* Overlay */
.page-header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* Adjust opacity: 0.3 - 0.7 */
    z-index: -1;
}

/* Keep content above overlay */
.page-header .container,
.page-header .row,
.page-header .page-header-box{
    position: relative;
    z-index: 2;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 40px;
    font-weight: 700;
	text-transform: uppercase;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
	margin-top: 15px;
}

.page-header-box h1 span{
    color: var(--accent-color);
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-approach{
	position: relative;
    background-color: var(--secondary-color);
    padding: 100px 0 70px;
}



.approach-item{
    position: relative;
    background-color: var(--white-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.approach-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.approach-item.active::before,
.approach-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.approach-item .icon-box,
.approach-item-content{
    position: relative;
    z-index: 1;
}

.approach-item .icon-box{
    margin-bottom: 40px;
}

.approach-item .icon-box img{
    width: 100%;
    max-width: 80px;
    transition: all 0.4s ease-in-out;
}

.approach-item.active .icon-box img,
.approach-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.approach-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.approach-item-content p{
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.approach-item.active .approach-item-content h3,
.approach-item:hover .approach-item-content h3,
.approach-item.active .approach-item-content p,
.approach-item:hover .approach-item-content p{
    color: var(--white-color);
}

.our-philosophy{
    padding: 100px 0;
}

.philosophy-body h3{
    font-size: 20px;
    line-height: 1.4em;
    color: var(--accent-color);
}

.philosophy-btn{
    margin-top: 40px;
}

.philosophy-image{
    margin-left: 20px;
}

.philosophy-image figure{
    display: block;
}

.philosophy-image img{
    width: 100%;
    aspect-ratio: 1 / 0.96;
    object-fit: cover;
}

.our-product-benefits.philosophy-item-list{
    border-top: 1px solid var(--divider-color);
    margin-top: 80px;
    padding-top: 80px;
}

.our-excellence{
    padding: 100px 0;
	background: var(--primary-gradient);
}

.excellence-image{
    margin-right: 15px;
}
.defult-btn2{
	color: var(--accent-color);
}
.defult-btn2::before{
	color: var(--accent-color)!important;
}
.defult-btn2:hover,
.defult-btn2:hover::before{
	color: var(--white-color)!important;
}
.excellence-image figure{
    display: block;
    border-radius: 20px;
}

.excellence-image img{
    width: 100%;
    aspect-ratio: 1 / 0.913;
    object-fit: cover;
    border-radius: 20px;
}

.excellence-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.excellence-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.excellence-item h3{
    position: relative;
    font-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
	color:white;
}

.excellence-item h3::before{
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: var(--white-color);
}

.excellence-item p{
    margin: 0;
	color:white;
}

/************************************/
/*** 	 20. Blog Archive css 	  ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/*** 	  21. Blog Single css 	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--accent-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
    text-transform: uppercase;
	line-height: 1.1em;
	margin: 0 0 0.42em;
}

.post-entry h1{
	font-size: 80px;
}

.post-entry h2{
	font-size: 48px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 100px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 22. Features Page css 	  ***/
/************************************/

.page-features{
    padding: 100px 0 70px;
}

.features-item{
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.features-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.features-item.active::before,
.features-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.features-item .icon-box,
.features-item-content{
    position: relative;
    z-index: 1;
}

.features-item .icon-box{
    background-color: var(--white-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.features-item .icon-box img{
    width: 100%;
    max-width: 45px;
}

.features-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.features-item-content p{
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.features-item.active .features-item-content h3,
.features-item:hover .features-item-content h3,
.features-item.active .features-item-content p,
.features-item:hover .features-item-content p{
    color: var(--white-color);
}

/************************************/
/***   23. Testimonials Page css  ***/
/************************************/

.page-testimonials{
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
    height: calc(100% - 30px);
    background: var(--secondary-color);
    margin-bottom: 30px;
}

.page-testimonials .testimonial-item:hover::before{
    top: 0;
    border-radius: 0;
}

.page-testimonials .testimonial-item .author-content h3{
    color: var(--primary-color);
}

.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content p{
    color: var(--text-color);
}

.page-testimonials .testimonial-item .author-content h3,
.page-testimonials .testimonial-item .author-content p{
    transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item .testimonial-rating i{
    transition: all 0.3s ease-in-out;
}

.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item:hover .author-content p,
.page-testimonials .testimonial-item:hover .testimonial-content p,
.page-testimonials .testimonial-item:hover .testimonial-rating i{
    color: var(--white-color);
}

.page-testimonials .testimonial-item:hover .testimonial-quote img{
    filter: brightness(0) invert(1);
}

/************************************/
/*** 	   24. FAQs Page css 	  ***/
/************************************/

.page-faqs{
    padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.page-catagery-list{
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    box-shadow: 0px 0px 60px 0px #0000000D;
    border-radius: 20px;
    margin-bottom: 60px;
    padding: 30px;
	overflow: hidden;
}

.page-catagery-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--primary-color);
}

.page-catagery-list ul li a::before{
    content: '\f061';
	font-family: 'FontAwesome';
	font-size: 12px;
    position: absolute;
    top: 50%;
    right: 0;
	width: 24px;
	height: 24px;
	background-color: var(--text-color);
    color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
    transform: translate(0px, -50%);
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before{
	background-color: var(--primary-color);
}

.sidebar-cta-box{
    position: relative;
    background: url('../images/sidebar-cta-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
}

.sidebar-cta-box:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;    
    background: var(--primary-color);
    opacity: 90%;
}

.sidebar-cta-content,
.sidebar-cta-contact{
    position: relative;
    z-index: 1;
}

.sidebar-cta-content{
    margin-bottom: 40px;
}

.sidebar-cta-content img{
    width: 100%;
    max-width: 230px;
    margin-bottom: 40px;
}

.sidebar-cta-content h3{
    color: var(--white-color);
    font-size: 20px;
	line-height: 1.3em;
}

.sidebar-cta-contact-item{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.sidebar-cta-contact-item:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.sidebar-cta-contact-item p{
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.sidebar-cta-contact-item h3{
    color: var(--accent-color);
    font-size: 20px;
}

.sidebar-cta-contact-item h3 a{
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item h3 a:hover{
    color: var(--white-color);
}

.page-faqs-catagery .page-faq-accordion{
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
	margin-bottom: 0;
}

/************************************/
/***   25. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
    padding: 100px 0;
}

.contact-info-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
	margin-bottom: 100px;
    padding: 50px;
}

.contact-info-item{
    position: relative;
    width: calc(33.33% - 33.33px);
    display: flex;
    align-items: center;
}

.contact-info-item:after{
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 10%;
}

.contact-info-item:nth-child(3n + 3):after{
    display: none;
}

.contact-info-item .icon-box{
    position: relative;
    height: 80px;
    width: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-info-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before{
    transform: scale(1);
}

.contact-info-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 36px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.contact-info-content{
    width: calc(100% - 100px);
}

.contact-info-content p{
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-info-content h3{
    color: var(--accent-color);
    font-size: 20px;
}

.contact-info-content h3 a{
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.contact-info-content h3 a:hover{
    color: var(--primary-color);
}

.contact-us-image{
    text-align: center;
    padding-right: 30px;
}

.contact-us-image img{
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: contain;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 17px 20px;
	outline: none;
}

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

.google-map .container-fluid{
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    width: 100%;
    height: 600px;
}

/************************************/
/*** 	26. 404 Error Page css 	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 45%;
}

.error-page-content{
	text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title{
	margin-bottom: 20px;
}

/************************************/
/*** 	 27. Responsive css 	  ***/
/************************************/

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 14px 42px 14px 20px;
	}
	
	.btn-default.border-btn{
		padding: 13px 41px 13px 19px;
	}

	.btn-default::before{
		font-size: 20px;
	}



	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		font-size: 14px;
		padding-left: 10px;
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 55px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
		padding: 130px 0 40px;
	}

	.hero.hero-video{
		padding: 190px 0 100px;
	}



	.hero.hero-video .hero-content{
		margin: 0;
	}
	
	.hero::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.hero::after{
		top: 15%;
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.hero-content{
		margin-bottom: 30px;
	}

	.hero.hero-video .hero-content .section-title p{
		max-width: 100%;
		margin-top: 15px;
	}

	.hero-list ul{
		gap: 15px;
	}

	.hero-list ul li{
		padding-left: 25px;
	}
	
	.hero-btn{
		margin-top: 40px;
	}

	.hero-image{
		width: 100%;
		max-width: 70%;
		margin: 0 auto;
	}

	.our-scrolling-ticker{
		padding: 15px 0;
	}

	.scrolling-ticker-box{
		--gap: 10px;
	}

	.scrolling-content span{
		font-size: 28px;
	}

	.scrolling-content span img{
		width: 22px;
		margin-right: 10px;
	}

	.about-us{
        padding: 50px 0;
    }

    .about-images{
		max-width: 80%;
        margin: 0 auto 30px;
    }

    .about-us-list ul li{
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .about-body-item{
        padding: 15px;
    }

    .about-us-footer{
        gap: 30px 40px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .about-contact-box .icon-box{
        margin-right: 10px;
    }

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-us::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.why-choose-us::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.why-choose-item-box-1,
	.why-choose-item-box-2{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 30px;	
	}

	.why-choose-item-box-2 .why-choose-item{
		padding: 0;
	}

	.why-choose-item{
		width: calc(50% - 15px);
		padding-right: 0;
		margin-bottom: 0;
	}

	.why-choose-item::before{
		display: none;
	}

	.why-choose-item .icon-box{
		width: 100px;
		height: 100px;
		margin: 0 auto 20px;
	}

	.why-choose-item .icon-box img{
		max-width: 70px;
	}

	.why-choose-item-content h3{
		margin-bottom: 10px;
	}

	.why-choose-image{
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
		text-align: center;
	}

	.our-products{
		padding: 50px 0;
	}

	.product-image{
		margin-bottom: 15px;
	}

	.product-image img{
		aspect-ratio: 1 / 1.05;
	}

	.product-btn{
		margin-top: 30px;
	}

	.our-product-benefits{
        gap: 20px;
		margin-top: 50px;
    }
    
    .product-benefit-item{
        width: calc(25% - 15px);
        flex-direction: column;
        text-align: center;
    }

    .product-benefit-item .icon-box{
        width: 60px;
        height: 60px;
        margin: 0 0 15px;
    }

    .product-benefit-item .icon-box img{
        max-width: 36px;
    }

    .product-benefit-content{
        width: 100%;
    }

    .product-benefit-content h3{
        font-size: 18px;
    }

	.our-key-points{
		padding: 50px 0;
	}

	.our-key-points::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.our-key-points::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.key-points-content{
		margin-bottom: 30px;
	}

	.key-points-step-item{
		margin-bottom: 40px;
	}

	.key-points-steo-no{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.key-points-steo-no::after{
		left: 25px;
		bottom: -15px;
	}

	.key-points-step-content{
		width: calc(100% - 65px);
	}

	.key-points-step-content h3{
		margin-bottom: 10px;
	}

	.key-points-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-do .section-title{
		margin-bottom: 30px;
	}

	.what-we-do-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.what-do-counter-item{
		margin-bottom: 30px;
	}

	.what-do-counter-item h2{
		font-size: 36px;
		margin-bottom: 5px;
	}

	.section-footer-text{
		margin-top: 40px;
	}

	.intro-video{
        padding: 110px 0 40px;
    }

    .intro-video-box .video-play-button{
        margin-bottom: 110px;
    }

    .intro-video-item-box{
        padding-top: 40px;
        gap: 20px;
    }

    .intro-video-item{
        width: calc(25% - 15px);
    }

	.our-best-seller{
		padding: 50px 0;
	}

	.best-seller-image{
		width: 100%;
		max-width: 75%;
		margin: 0 auto 30px;
	}
	
	.seller-counter-box{
		max-width: 180px;
		padding: 15px;
	}

	.seller-counter-box h2{
		font-size: 36px;
		margin-bottom: 15px;
	}
	
	.seller-counter-box ul{
		margin-bottom: 10px;
	}

	.best-seller-body ul li{
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.best-seller-footer{
		gap: 20px 30px;
		margin-top: 30px;
	}

	.best-seller-price h2{
		font-size: 26px;
	}

	.cta-box{
        padding: 50px 0;
    }

    .cta-content{
        margin-bottom: 30px;
    }

    .cta-image{
        max-width: 55%;
        margin: 0 auto;
    }

	.our-faqs{
		padding: 50px 0;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 14px 45px 14px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		top: 14px;
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 45px 14px 14px;
	}

	.faq-image{
		margin: 30px auto 0;
		width: 100%;
		max-width: 70%;
	}

	.premium-products{
		padding: 50px 0 0;
	}

	.premium-products::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.premium-products::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.premium-product-content{
		max-width: 100%;
	}

	.premium-benefits{
		gap: 30px 40px;
		margin: 0;
	}

	.premium-benefit-item{
		width: calc(50% - 20px);
	}

	.premium-benefit-item .icon-box{
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}

	.premium-benefit-item .icon-box img{
		max-width: 35px;
	}

	.premium-benefit-item-content{
		width: calc(100% - 75px);
	}

	.premium-product-image{
		padding-top: 80px;
	}

	.premium-product-image img{
		max-width: 580px;
		margin-bottom: -170px;
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.customer-img{
		width: 52px;
		height: 52px;
	}

	.testimonial-item{
		padding: 20px;
	}

	.testimonial-author,
	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-btn{
		margin-top: 40px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item-body{
		padding: 20px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.main-footer::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.main-footer::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-logo img{
		max-width: 191px;
	}

	.about-footer{
		margin: 0 0 30px 0;
	}

	.footer-links h3,
	.footer-contact-item{
		margin-bottom: 20px;
	}

	.footer-contact-item-content h3{
		margin-bottom: 0;
	}

	.footer-cta-box{
		justify-content: center;
		padding-top: 30px;
		margin-top: 40px;
	}

	.footer-newsletter-form{
		display: block;
	}
	
	.footer-newsletter-form form{
		width: 100%;
	}

	.footer-newsletter-form .form-group .btn-default.btn-highlighted{
		padding: 14px;
	}

	.footer-social-links ul li{
		margin-right: 10px;
	}

	.footer-copyright-text{
		margin-top: 30px;
		padding: 30px 0;
	}

	.page-header{
        padding: 160px 0 70px;
    }

/* Overlay */
.page-header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* Adjust opacity: 0.3 - 0.7 */
    z-index: -1;
}

/* Keep content above overlay */
.page-header .container,
.page-header .row,
.page-header .page-header-box{
    position: relative;
    z-index: 2;
}
	
	.page-header::after{
		top: 33%;
		width: 80px;
		height: 80px;
		opacity: 20%;
	}

    .page-header-box h1{
        font-size: 50px;
    }

    .our-approach{
        padding: 50px 0 20px;
    }

	.our-approach::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.our-approach::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

    .approach-item{
        padding: 30px;
    }

    .approach-item .icon-box{
        margin-bottom: 30px;
    }

    .approach-item .icon-box img{
        max-width: 70px;
    }

    .our-philosophy{
        padding: 50px 0;
    }

    .philosophy-content{
        margin-bottom: 30px;
    }

    .philosophy-btn{
        margin-top: 30px;
    }

    .philosophy-image{
        width: 100%;
        max-width: 75%;
        margin: 0 auto;
    }

    .our-product-benefits.philosophy-item-list{
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .our-excellence{
        padding: 50px 0;
    }
    
    .excellence-image{
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .excellence-item{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .excellence-image img{
        aspect-ratio: 1 / 0.8;
    }

	.page-blog{
        padding: 50px 0;
    }

    .page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.417em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-features{
        padding: 50px 0 20px;
    }

    .features-item{
        padding: 30px;
    }
    
    .features-item .icon-box{
        height: 60px;
        width: 60px;
        margin-bottom: 30px;
    }

    .features-item .icon-box img{
        max-width: 36px;
    }

	.page-testimonials{
        padding: 50px 0 20px;
    }

	.page-faqs{
        padding: 50px 0;
    }

    .page-single-sidebar{
        position: initial;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .page-catagery-list{
        margin-bottom: 30px;
    }

    .page-catagery-list ul li a::before{
        width: 20px;
        height: 20px;
    }

    .sidebar-cta-box{
        padding: 30px;
    }

    .sidebar-cta-content{
        margin-bottom: 30px;
    }

    .sidebar-cta-content img{
        margin-bottom: 30px;
    }

    .page-faqs-catagery .page-faq-accordion{
        margin-bottom: 40px;
    }

	.page-contact-us{
        padding: 50px 0;
    }

    .contact-info-box{
        padding: 30px;
		margin-bottom: 50px;
    }

    .contact-info-item{
        width: calc(50% - 25px);
    }

    .contact-info-item:nth-child(3n + 3):after{
        display: block;
    }

    .contact-info-item:nth-child(2n + 2):after,
    .contact-info-item:last-child:after{
        display: none;
    }

    .contact-info-item .icon-box{
        height: 60px;
        width: 60px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box img{
        max-width: 30px;
    }

    .contact-info-content{
        width: calc(100% - 70px);
    }

    .contact-info-content h3{
        font-size: 18px;
    }

    .contact-us-image{
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-us-image img{
        max-width: 75%;
    }

    .contact-form .form-control{
        padding: 12px 15px;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 450px;
    }

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

    .error-page-content-body p,
    .error-page-content .section-title{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
	}

	.hero.hero-video .hero-content{
		text-align: left;
	}

	.hero.hero-video .hero-content .section-title p{
		font-size: 14px;
	}

	.hero.hero-video .hero-content .hero-list ul,
	.hero.hero-video .hero-content .hero-btn{
		justify-content: left;
	}

	.hero-btn{
		margin-top: 30px;
		gap: 20px;
	}

	.hero-image{
        max-width: 80%;
    }

	.scrolling-content span{
        font-size: 22px;
    }

	.about-us-body{
		gap: 20px;
	}

    .about-us-list,
    .about-body-item{
        width: 100%;
    }

    .about-body-item .icon-box{
        width: 50px;
        height: 50px;
    }

    .about-body-item .icon-box img{
        max-width: 32px;
    }

    .about-body-item-title{
        width: calc(100% - 65px);
    }

    .about-body-item-title h3,
    .about-contact-box-content h3{
        font-size: 18px;
    }

    .about-us-footer{
        gap: 20px;
    }

	.why-choose-item{
		width: 100%;
	}

	.why-choose-item .icon-box{
        width: 90px;
        height: 90px;
    }

	.why-choose-item .icon-box img{
        max-width: 60px;
    }

	.why-choose-item-content h3{
		font-size: 18px;
	}

	.product-title h3{
		font-size: 18px;
	}

	.our-product-benefits{
        margin-top: 30px;
    }

	.product-benefit-item{
        width: calc(50% - 10px);
    }

    .product-benefit-content h3{
        font-size: 16px;
    }

	.key-points-step-item{
        margin-bottom: 30px;
    }

	.key-points-steo-no::after{
		height: 110%;
	}

	.key-points-steo-no h3,
	.key-points-step-content h3{
		font-size: 18px;
	}

	.what-we-do-image{
        margin: 0 0 30px;
    }

	.what-we-do-header{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.what-do-counter-item{
        margin-bottom: 20px;
    }

	.what-do-counter-item h2{
        font-size: 26px;
        margin-bottom: 5px;
    }

	.intro-video-item{
        width: calc(50% - 10px);
    }

    .intro-video-item img{
        max-width: 26px;
        margin-right: 5px;
    }

	.best-seller-image{
        max-width: 100%;
    }

	.seller-counter-box{
		top: 70px;
		right: 0px;
        max-width: 160px;
        padding: 10px;
		border-radius: 14px;
    }

	.seller-counter-box h2{
        font-size: 26px;
    }

	.seller-counter-box p{
		font-size: 14px;
	}

	.best-seller-price{
		gap: 10px;
	}

	.best-seller-price h2{
		font-size: 22px;
	}

	.best-seller-price h3{
		font-size: 16px;
	}

	.cta-image{
        max-width: 80%;
    }

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body{
        padding: 14px;
    }

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.faq-image{
        max-width: 100%;
    }

	.premium-benefits{
        gap: 20px;
    }

	.premium-benefit-item{
        width: 100%;
    }

	.premium-benefit-item-content h3{
		font-size: 18px;
	}

	.premium-product-image{
        padding-top: 50px;
    }

	.premium-product-image img{
        max-width: 100%;
        margin-bottom: -100px;
    }

	.review-image-box{
		gap: 15px;
	}

	.customer-img{
		width: 42px;
		height: 42px;
	}

	.review-content p{
		font-size: 14px;
	}

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-btn{
        margin-top: 20px;
    }

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3,
	.footer-contact-item-content h3,
	.footer-newsletter-form h3{
		font-size: 18px;
	}

	.footer-cta-box{
        /* padding: 20px 0; */
        margin-top: 0;
    }

	.footer-newsletter-form{
		width: 100%;
		margin-bottom: 0;
    }

	.footer-newsletter-form form{
		width: 100%;
	}

	.footer-newsletter-form .form-group .form-control{
		padding: 10px 15px;
	}

	.footer-newsletter-form .form-group .btn-default.btn-highlighted{
        padding: 10px;
        font-size: 14px;
    }

	.footer-social-links{
		width: 100%;
		text-align: left;
	}

	.footer-copyright-text{
        padding: 15px 0;
    }

	.page-header-box h1{
        font-size: 30px;
    }

    .page-header-box ol li.breadcrumb-item{
        font-size: 14px;
    }

    .approach-item{
        padding: 20px;
    }

    .approach-item .icon-box{
        margin-bottom: 20px;
    }

    .approach-item .icon-box img{
        max-width: 60px;
    }

    .approach-item-content h3{
        font-size: 18px;
    }

    .philosophy-body h3{
        font-size: 18px;
    }

    .philosophy-image{
        max-width: 100%;
    }

    .our-product-benefits.philosophy-item-list{
        margin-top: 30px;
        padding-top: 30px;
    }

    .excellence-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .excellence-item h3{
        font-size: 18px;
		padding-left: 25px;
        margin-bottom: 10px;
    }

    .excellence-item h3::before{
        font-size: 18px;
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.features-item{
        padding: 20px;
    }

	.features-item .icon-box{
        margin-bottom: 20px;
    }

    .features-item-content h3{
        font-size: 18px;
		margin-bottom: 10px;
    }

	.page-catagery-list{
        padding: 20px;
    }

    .page-catagery-list ul li{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .sidebar-cta-box{
        padding: 20px;
    }

	.sidebar-cta-content img{
		max-width: 190px;
        margin-bottom: 20px;
    }

    .sidebar-cta-content h3{
        font-size: 18px;
    }

    .sidebar-cta-contact-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .sidebar-cta-contact-item h3{
        font-size: 18px;
    }

	.contact-info-box{
        padding: 20px;
    }

    .contact-info-item{
        width: 100%;
    }

    .contact-info-item:after{
        height: 1px;
        width: 100%;
        top: auto;
        bottom: -15px;
        left: 0;
        right: 0;
    }

    .contact-info-item:nth-child(2n + 2):after{
        display: block;
    }

    .contact-us-image img{
        max-width: 100%;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 350px;
    }
	.spaniya-action-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white-color);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 10px;
}
.spaniya-buy-btn span{
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
}
.product-price{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.product-size-row{
    margin:25px 0;
}

.product-size-options{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:12px;
}

.size-option input{
    display:none;
}
.price-details{
	color:var(--primary-color);
}
.size-option span{
    display:inline-block;
    padding:10px 22px;
    border:1px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.size-option input:checked + span{
    background:var(--primary-gradient);
    color:#fff;
    border-color:white;
}
.product-price .old-price{
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.product-price .new-price{
    font-size: 18px;
    color: var(--primary-color); /* or #e63946 */
    font-weight: 700;
}
/* Spaniya Product Action Buttons */
.prd-icons a {
	background: var(--primary-gradient);
}
.prd-icons a i{
	color:white;
}
.prd-icons a:hover{
	background: var(--primary-gradient)!important;
}
.spaniya-product-actions{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
	justify-content: center;
}

.spaniya-action-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white-color);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.spaniya-action-btn:hover{
    background: var(--white-color);
    color: #fff;
    transform: translateY(-3px);
}

.spaniya-buy-btn{
    width: auto;
    padding: 0 18px;
    border-radius: 30px;
    gap: 8px;
}

.spaniya-buy-btn span{
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.spaniya-view-btn i,
.spaniya-cart-btn i,
.spaniya-buy-btn i{
    font-size: 16px;
	color: var(--primary-color);
}
.sp-btn{
	display: flex;
	justify-content: start;
	margin-top: 10px;
}

/* ===========================================
   SPANIYA MOBILE BOTTOM NAV
=========================================== */

.spn-mobile-bottom-nav{
    position: fixed;
    left: 15px;
    right: 15px;
    bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 10px;

    background: linear-gradient(135deg,#043B77 0%,#010308 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.30),
        inset 0 1px rgba(255,255,255,.15);

    z-index: 99999;

    transform: translateY(130%);
    opacity: 0;
    visibility: hidden;

    transition:
        transform .45s ease,
        opacity .35s ease,
        visibility .35s;
}

.spn-mobile-bottom-nav.show{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.spn-mobile-nav-item{
    width:20%;
    text-align:center;

    text-decoration:none;

    color:#fff;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:5px;

    transition:.3s;
}

.spn-mobile-nav-item i{
    font-size:20px;
    color:#fff;
    transition:.3s;
}

.spn-mobile-nav-item span{
    font-size:11px;
    font-weight:500;
    color:#fff;
    line-height:1;
}

.spn-mobile-nav-item:hover,
.spn-mobile-nav-item.active{
    color:#fff;
}

.spn-mobile-nav-item:hover i,
.spn-mobile-nav-item.active i{
    transform:translateY(-3px);
}

.spn-mobile-nav-item.active{
    position:relative;
}



/* Hide on desktop */

@media(min-width:992px){

    .spn-mobile-bottom-nav{
        display:none;
    }


}


/* =======================================
   SPANIYA FLOATING SOCIAL
======================================= */

.spn-social-floating-wrap{

    position:fixed;

    right:18px;
    bottom:110px;

    z-index:9998;

    display:flex;
    flex-direction:column;
    gap:14px;

    opacity:0;
    visibility:hidden;

    transform:translateX(80px);

    transition:.45s;
}

.spn-social-floating-wrap.show{

    opacity:1;
    visibility:visible;

    transform:translateX(0);
}

.spn-social-btn{

    width:54px;
    height:54px;

    border-radius:50%;

    background:linear-gradient(135deg,#043B77 0%,#010308 100%);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    text-decoration:none;

    position:relative;

    overflow:visible;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    animation:spnFloatingWave 2.5s infinite;
}

.spn-social-btn i{

    font-size:22px;
    color:#fff;
}

/* Ripple */

.spn-social-btn::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    border:2px solid rgba(30, 11, 174, 0.35);

    animation:spnRipple 2.5s infinite;
}

.spn-social-btn::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    border:2px solid rgba(30, 11, 174, 0.35);

    animation:spnRipple 2.5s 1s infinite;
}

/* Tooltip */

.spn-social-tooltip{

    position:absolute;

    right:68px;

    white-space:nowrap;

    background:var(--primary-gradient);

    color:white;

    padding:9px 15px;

    border-radius:8px;

    font-size:14px;

    font-weight:600;

    opacity:0;

    visibility:hidden;

    transform:translateX(10px);

    transition:.3s;
}

.spn-social-btn:hover .spn-social-tooltip{

    opacity:1;

    visibility:visible;

    transform:translateX(0);
}

.spn-social-btn:hover{

    transform:scale(1.08);
}

/* Floating */

@keyframes spnFloatingWave{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* Ripple */

@keyframes spnRipple{

    0%{

        transform:scale(1);

        opacity:.8;

    }

    100%{

        transform:scale(1.6);

        opacity:0;

    }

}


@media(max-width:991px){
	.footer-copyright-text{
		padding-bottom: 100px;
	}
}
@media(max-width:480px){

    .spn-social-btn{

        width:48px;
        height:48px;

    }

    .spn-social-btn i{

        font-size:20px;

    }
.product-price .old-price ,.product-price .new-price{
	font-size: 12px;
}
.products-listing-grid .product-title h3{
	font-size: 14px;
}

}

.product-benefit-item .icon-box{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-benefit-item .icon-box i{
    font-size: 30px;
    color: var(--primary-color); /* or #0d6efd */
}

.hero-desktop{
    display:block;
}

.hero-mobile{
    display:none;
}

@media(max-width:991px){

    .hero-desktop{
        display:none;
    }

    .hero-mobile{
        display:block;
    }

}




	

		.btn-search-toggle {
			background: transparent;
			border: 1.5px solid rgba(0, 0, 0, 0.12);
			border-radius: 50%;
			width: 42px;
			height: 42px;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			font-size: 15px;
			color: var(--search-ink);
			flex-shrink: 0;
			transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
		}
		.btn-search-toggle:hover {
			background: var(--primary-gradient);
			border-color: var(--white-color);
			color: var(--white-color);
			transform: translateY(-1px);
		}
		.btn-search-toggle:active {
			transform: translateY(0);
		}

		.search-modal-overlay {
			position: fixed;
			inset: 0;
			z-index: 2000;
			background: rgba(10, 11, 13, 0.55);
			backdrop-filter: blur(8px) saturate(140%);
			-webkit-backdrop-filter: blur(8px) saturate(140%);
			display: flex;
			align-items: flex-start;
			justify-content: center;
			padding: 9vh 16px 16px;
			overflow-y: auto;
			opacity: 0;
			visibility: hidden;
			transition: opacity 0.3s ease, visibility 0s linear 0.3s;
		}
		.search-modal-overlay.active {
			opacity: 1;
			visibility: visible;
			transition: opacity 0.3s ease;
		}

		.search-modal {
			width: 100%;
			max-width: 600px;
			
			background: var(--search-surface);
			border-radius: var(--search-radius-lg);
			box-shadow: 0 30px 70px -20px rgba(15, 17, 20, 0.4), 0 10px 30px -8px rgba(15, 17, 20, 0.18);
			overflow: hidden;
			transform: translateY(18px) scale(0.96);
			opacity: 0;
			transition: transform 0.36s var(--search-ease), opacity 0.28s ease;
		}
		.search-modal-overlay.active .search-modal {
			transform: translateY(0) scale(1);
			opacity: 1;
		}

		.search-modal-header {
			display: flex;
			align-items: center;
			gap: 10px;
			padding: 16px;
			border-bottom: 1px solid var(--search-border);
		}

		.search-input-wrap {
			flex: 1;
			display: flex;
			align-items: center;
			gap: 10px;
			background: var(--search-surface-muted);
			border-radius: var(--primary-color);
			padding: 12px 14px;
			border: 1.5px solid transparent;
			transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
		}
		.search-input-wrap:focus-within {
			border-color: var(--search-accent);
			box-shadow: 0 0 0 4px var(--search-accent-soft);
			background: var(--search-surface);
		}
		.search-input-icon {
			color: var(--search-text-muted);
			font-size: 14px;
			transition: color 0.2s ease;
		}
		.search-input-wrap:focus-within .search-input-icon {
			color: var(--search-accent);
		}
		.search-input-wrap input {
			flex: 1;
			border: none;
			background: transparent;
			outline: none;
			font-size: 15.5px;
			color: var(--search-ink);
		}
		.search-input-wrap input::placeholder {
			color: #9a9ca3;
		}
		.search-clear-input {
			border: none;
			background: rgba(0, 0, 0, 0.06);
			width: 20px;
			height: 20px;
			border-radius: 50%;
			font-size: 14px;
			line-height: 1;
			cursor: pointer;
			color: var(--search-text-muted);
			display: flex;
			align-items: center;
			justify-content: center;
			transition: background 0.15s ease, color 0.15s ease;
		}
		.search-clear-input:hover {
			background: rgba(0, 0, 0, 0.12);
			color: var(--search-ink);
		}

		.search-modal-close {
			border: none;
			background: transparent;
			cursor: pointer;
			color: var(--search-text-muted);
			flex-shrink: 0;
			width: 36px;
			height: 36px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: background 0.2s ease, color 0.2s ease;
		}
		.search-modal-close:hover {
			background: var(--search-surface-muted);
			color: var(--search-ink);
		}
		.search-close-icon {
			font-size: 24px;
			line-height: 1;
			display: inline-block;
			transition: transform 0.25s var(--search-ease);
		}
		.search-modal-close:hover .search-close-icon {
			transform: rotate(90deg);
		}

		.search-modal-body {
			padding: 18px 16px 20px;
			max-height: 62vh;
			overflow-y: auto;
		}

		.search-section-title-row {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 12px;
		}
		.search-section-title {
			font-weight: 600;
			font-size: 12px;
			color: var(--search-text-muted);
			text-transform: uppercase;
			letter-spacing: 0.06em;
		}
		.search-clear-recent {
			border: none;
			background: transparent;
			color: var(--search-accent);
			font-size: 13px;
			font-weight: 500;
			cursor: pointer;
			padding: 2px 4px;
		}
		.search-clear-recent:hover {
			text-decoration: underline;
		}

		.search-recent-list {
			display: flex;
			flex-wrap: wrap;
			gap: 8px;
			margin-bottom: 4px;
		}
		.search-recent-chip {
			background: var(--search-surface-muted);
			border: 1px solid var(--search-border);
			border-radius: 20px;
			padding: 7px 14px;
			font-size: 13px;
			cursor: pointer;
			color: var(--search-ink);
			transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
		}
		.search-recent-chip:hover {
			background: var(--search-accent-softer);
			border-color: var(--search-accent);
			color: var(--search-accent);
			transform: translateY(-1px);
		}

		.search-hint {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			padding: 34px 0;
			color: var(--search-text-muted);
			font-size: 14px;
		}
		.search-hint-dot {
			width: 6px;
			height: 6px;
			border-radius: 50%;
			background: var(--search-accent);
			animation: search-pulse 1.2s ease-in-out infinite;
		}
		@keyframes search-pulse {
			0%, 100% { opacity: 0.35; transform: scale(0.85); }
			50% { opacity: 1; transform: scale(1.1); }
		}

		.search-no-results {
			text-align: center;
			padding: 40px 20px;
		}
		.search-no-results-icon {
			width: 44px;
			height: 44px;
			border-radius: 50%;
			background: var(--search-surface-muted);
			color: var(--search-text-muted);
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 14px;
			font-size: 15px;
		}
		.search-no-results-title {
			font-weight: 600;
			font-size: 15px;
			color: var(--search-ink);
			margin-bottom: 4px;
		}
		.search-no-results-sub {
			font-size: 13px;
			color: var(--search-text-muted);
		}

		.search-results-list {
			display: flex;
			flex-direction: column;
			gap: 2px;
		}

		.search-result-item {
			position: relative;
			display: flex;
			align-items: center;
			gap: 14px;
			padding: 10px 12px 10px 16px;
			border-radius: 12px;
			text-decoration: none;
			color: inherit;
			transition: background 0.18s ease, transform 0.18s ease;
		}
		.search-result-item::before {
			content: '';
			position: absolute;
			left: 2px;
			top: 10px;
			bottom: 10px;
			width: 3px;
			border-radius: 2px;
			background: var(--search-accent);
			transform: scaleY(0);
			transition: transform 0.2s var(--search-ease);
		}
		.search-result-item:hover,
		.search-result-item.is-active {
			background: var(--search-surface-muted);
			transform: translateX(2px);
		}
		.search-result-item:hover::before,
		.search-result-item.is-active::before {
			transform: scaleY(1);
		}
		.search-result-item img {
			width: 54px;
			height: 54px;
			object-fit: cover;
			border-radius: 10px;
			flex-shrink: 0;
			background: var(--search-surface-muted);
			border: 1px solid var(--search-border);
			transition: transform 0.2s ease;
		}
		.search-result-item:hover img {
			transform: scale(1.04);
		}
		.search-result-info {
			display: flex;
			flex-direction: column;
			gap: 3px;
			min-width: 0;
		}
		.search-result-title {
			font-size: 14.5px;
			font-weight: 500;
			color: var(--search-ink);
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}
		.search-result-price {
			font-size: 13px;
			color: var(--search-accent);
			font-weight: 600;
		}

		/* Skeleton loading */
		.search-skeleton-row {
			display: flex;
			align-items: center;
			gap: 14px;
			padding: 10px 12px 10px 16px;
		}
		.search-skeleton-thumb {
			width: 54px;
			height: 54px;
			border-radius: 10px;
			flex-shrink: 0;
		}
		.search-skeleton-lines {
			flex: 1;
			display: flex;
			flex-direction: column;
			gap: 8px;
		}
		.search-skeleton-line {
			height: 10px;
			border-radius: 5px;
		}
		.search-skeleton-line.short {
			width: 40%;
		}
		.search-skeleton-thumb,
		.search-skeleton-line {
			background: linear-gradient(90deg, #eef0f2 25%, #f7f8f9 37%, #eef0f2 63%);
			background-size: 400% 100%;
			animation: search-shimmer 1.4s ease infinite;
		}
		@keyframes search-shimmer {
			0% { background-position: 100% 0; }
			100% { background-position: 0 0; }
		}

		/* Scrollbar polish */
		.search-modal-body::-webkit-scrollbar {
			width: 6px;
		}
		.search-modal-body::-webkit-scrollbar-thumb {
			background: var(--search-border);
			border-radius: 10px;
		}
		
		/* Mobile: full-screen modal */
		@media (max-width: 640px) {
			.search-modal-overlay {
				padding: 0;
				align-items: stretch;
			}
			.search-modal {
				max-width: 100%;
				width: 100%;
				height: 100%;
				border-radius: 0;
				display: flex;
				flex-direction: column;
				transform: translateY(0) scale(1);
			}
			.search-modal-header {
				padding: 14px;
				padding-top: max(14px, env(safe-area-inset-top));
			}
			.search-modal-body {
				flex: 1;
				max-height: none;
			}
		}

		@media (prefers-reduced-motion: reduce) {
			.search-modal-overlay,
			.search-modal,
			.search-result-item,
			.search-result-item img,
			.search-recent-chip,
			.search-close-icon,
			.search-hint-dot,
			.search-skeleton-thumb,
			.search-skeleton-line {
				transition: none !important;
				animation: none !important;
			}
		}

		.mega-product-menu{
    position:relative;
}

.mega-product-dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:360px;
    background:var(--primary-gradient);
    border-radius:0 0 8px 8px;
    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.35s ease;
    z-index:999;
}

.mega-product-menu:hover .mega-product-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mega-product-link{
    display:flex;
    align-items:center;
    gap:15px;

    padding:18px 20px;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.mega-product-link:hover{
    background:rgba(255,255,255,.08);
}

.mega-product-thumb{
    width:55px;
    height:55px;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
}

.mega-product-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mega-product-link span{
    font-size:15px;
    font-weight:600;
	color:white;
	      display: -webkit-box;
  -webkit-line-clamp: 1; /* Show only 1 line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-product-footer{
    border-top:1px solid rgba(255,255,255,.15);
}

.mega-view-btn{
    display:block;
    padding:18px 20px;

    color:#fff!important;
    font-size:18px;
    font-weight:700;
    text-decoration:none;

    transition:.3s;
}

.mega-view-btn:hover{
    background:var(--accent-color);
    color:#fff;
}

.spn-privacy-section{
    background:#fff;
    padding:100px 0;
}

.spn-privacy-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.spn-privacy-badge{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(4,59,119,.08);
    color:var(--accent-color);
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.spn-privacy-header h1{
    font-size:48px;
    font-weight:700;
    color:var(--primary-color);
    margin-bottom:20px;
}

.spn-privacy-header p{
    color:var(--text-color);
    font-size:16px;
    line-height:1.9;
}

.spn-privacy-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.spn-privacy-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(2,42,85,.08);
    box-shadow:0 15px 40px rgba(2,42,85,.05);
    transition:.35s ease;
}

.spn-privacy-card:hover{
    transform:translateY(-6px);
    border-color:var(--accent-color);
}

.spn-privacy-card h3{
    color:var(--primary-color);
    font-size:22px;
    margin-bottom:15px;
    font-weight:600;
}

.spn-privacy-card p{
    color:var(--text-color);
    line-height:1.9;
    margin:0;
}

@media(max-width:991px){

    .spn-privacy-section{
        padding:70px 0;
    }

    .spn-privacy-wrapper{
        grid-template-columns:1fr;
    }

    .spn-privacy-header h1{
        font-size:34px;
    }
}

@media(max-width:767px){

    .spn-privacy-card{
        padding:25px;
    }

    .spn-privacy-header h1{
        font-size:28px;
    }

    .spn-privacy-card h3{
        font-size:20px;
    }
}

#contactPopup .modal-dialog{
    max-width:920px;
}
.contact-popup{
    border:none;
    border-radius:22px;
    overflow:hidden;
    font-family:var(--default-font);
    box-shadow:0 40px 80px -20px rgba(0,0,0,.5);
}
.popup-close{
    position:absolute;
    right:16px;
    top:16px;
    z-index:100;
    background:var(--white-color);
    opacity:1;
    width:34px;
    height:34px;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
    background-size:12px;
	color: var(--primary-color);
}
 
/* ============ LEFT: BLUEPRINT PANEL ============ */
.popup-left{
    position:relative;
    background:var(--primary-gradient);
    color:#fff;
    padding:48px 40px;
    display:flex;
    align-items:center;
    overflow:hidden;
}
/* blueprint grid — nods to equipment spec drawings */
.popup-left::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size:26px 26px;
    -webkit-mask-image:radial-gradient(circle at 30% 20%, #000 0%, transparent 75%);
    mask-image:radial-gradient(circle at 30% 20%, #000 0%, transparent 75%);
    pointer-events:none;
}
.popup-left::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    right:-140px;
    bottom:-140px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    pointer-events:none;
}
.popup-content{
    position:relative;
    z-index:2;
    width:100%;
}
.popup-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffffff18;
    border:1px solid rgba(255,255,255,.18);
    padding:7px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:22px;
}
.popup-tag::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:#5fd18a;
    box-shadow:0 0 0 3px rgba(95,209,138,.25);
}
.popup-left h2{
    font-size:32px;
    font-weight:700;
    line-height:1.22;
    margin-bottom:16px;
    letter-spacing:-.3px;
	color: white;
}
.popup-left p{
    opacity:.78;
    line-height:1.75;
    font-size:14.5px;
    margin-bottom:0;
}
 
/* nameplate — styled like an equipment ID plate */
.popup-nameplate{
    position:relative;
    margin-top:30px;
    padding:18px 20px;
    border:1px dashed rgba(255,255,255,.3);
    border-radius:10px;
    background:rgba(255,255,255,.04);
}
.popup-nameplate::before,
.popup-nameplate::after,
.plate-corner-tl, .plate-corner-br{
    content:"";
    position:absolute;
    width:12px;
    height:12px;
}
.popup-nameplate::before{
    top:-1px; left:-1px;
    border-top:2px solid #fff;
    border-left:2px solid #fff;
    border-radius:4px 0 0 0;
}
.popup-nameplate::after{
    bottom:-1px; right:-1px;
    border-bottom:2px solid #fff;
    border-right:2px solid #fff;
    border-radius:0 0 4px 0;
}
.plate-label{
    font-family:var(--mono-font);
    font-size:10.5px;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:.55;
    margin-bottom:12px;
}
.popup-info div{
    display:flex;
    align-items:center;
    margin-bottom:12px;
    font-size:15px;
    font-weight:500;
}
.popup-info div:last-child{margin-bottom:0;}
.popup-info i{
    flex:0 0 auto;
    width:34px;
    height:34px;
    background:#fff;
    color:var(--accent-color);
    border-radius:50%;
    text-align:center;
    line-height:34px;
    margin-right:12px;
    font-size:14px;
}
 
/* category chips grounded in Spaniya's actual product lines */
.popup-categories{
    margin-top:28px;
}
.popup-categories .plate-label{margin-bottom:10px;}
.chip-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.chip-row span{
    font-size:12px;
    font-weight:500;
    padding:6px 13px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
}
 
/* ============ RIGHT: FORM ============ */
.popup-form{
    padding:48px 44px;
    background:var(--white-color);
}
.popup-form h3{
    font-size:26px;
    margin-bottom:6px;
    font-weight:700;
    color:var(--primary-color);
}
.popup-subtext{
    color:var(--text-color);
    font-size:13.5px;
    margin-bottom:26px;
}
.input-icon-wrap{
    position:relative;
}
.input-icon-wrap i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#a9b4c2;
    font-size:14px;
    pointer-events:none;
}
.popup-form .form-control{
    height:52px;
    border-radius:10px;
    border:1.5px solid #e7ebf1;
    box-shadow:none;
    padding-left:44px;
    font-size:14.5px;
    background:#fbfcfe;
    transition:.2s;
}
.popup-form textarea.form-control{
    height:auto;
    min-height:96px;
    resize:none;
    padding:14px 16px 14px 44px;
}
.popup-form .form-control::placeholder{
    color:#a2a8b5;
}
.popup-form .form-control:focus{
    border-color:var(--accent-color);
    background:#fff;
    box-shadow:0 0 0 4px rgba(4,59,119,.08);
}
.msg-icon{top:26px !important; transform:none;}
 
.btn-submit{
    width:100%;
    border:none;
    padding:16px;
    border-radius:10px;
    background:var(--primary-gradient);
    color:#fff;
    font-size:16px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.25s;
}
.btn-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 26px -10px rgba(4,59,119,.55);
}
.btn-submit i{
    transition:.25s;
}
.btn-submit:hover i{
    transform:translateX(3px);
}
.form-note{
    text-align:center;
    font-size:12px;
    color:var(--text-color);
    margin-top:14px;
}
 
/* ============ RESPONSIVE ============ */
@media(max-width:991px){
    .popup-left{
        padding:36px 30px;
    }
    .popup-form{
        padding:34px 28px;
    }
    .popup-left h2{
        font-size:26px;
    }
    .popup-left::after{
        width:220px;
        height:220px;
        right:-100px;
        bottom:-100px;
    }
}
@media(max-width:575px){
    #contactPopup .modal-dialog{
        margin:12px;
    }
    .contact-popup{
        border-radius:16px;
    }
    .popup-left{
        padding:28px 22px;
    }
    .popup-left h2{
        font-size:23px;
    }
    .popup-nameplate{
        margin-top:22px;
        padding:14px 16px;
    }
    .popup-form{
        padding:28px 20px;
    }
    .popup-form h3{
        font-size:22px;
    }
    .popup-form .form-control{
        height:48px;
    }
    .btn-submit{
        padding:14px;
        font-size:15px;
    }
	.popup-left{
		display: none;
	}
}