/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Inspaire - Architecture and Interior Design HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

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

:root{
	--primary-color			: #192324;
	--secondery-color		: #F8F8F8;
	--text-color			: #283132;
	--accent-color			: #7C877F;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Hanken Grotesk", sans-serif;
}


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

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

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

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.1em;
	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{
    padding-right: 15px;
    padding-left: 15px;
}

.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);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
    color: var(--white-color);
}

.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../img/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-18px, -50%);
}

.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{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.header-btn .btn-default{
    background: var(--primary-color);
}

.header-btn .btn-default:hover{
    background: transparent;
}

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

.btn-default.btn-highlighted::before{
	background-image: url(../img/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before{
    filter: brightness(0) invert(1);
}

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

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

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.8s ease-in-out;
}

.preloader-hide{
	transform: translateX(100%);
	opacity: 0;
}

.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(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
	padding: 0;
    top: inherit;
    left: inherit;
    background-color: inherit;
}

.loader-exit{
  animation: moveX 0.8s cubic-bezier(.77,0,.18,1) forwards;
}

.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 moveX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100vw);
  }
}

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

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

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

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

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

.section-title-content{
	margin-left: 120px;
}

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

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

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 500;
	line-height: 1.6em;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-left: 35px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../img/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
    width: 24px;
    height: 5px;
}

.section-title h1{
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

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

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


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3{
	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{
	position: relative;
	z-index: 100;
}

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(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 15px 0;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar{
	border-bottom: none;
	padding: 14px 0;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-brand img{
	width: auto;
	height: 56px;
	max-width: 260px;
	object-fit: contain;
}

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

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

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

.main-menu ul li a{
	color: var(--white-color);
}

.main-menu ul li a:hover, .main-menu ul li a:focus {
    color: var(--white-color);
    font-weight: 700;
}

.white-header .main-menu ul li a{
	color: var(--primary-color);
}

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

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

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

.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-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 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: 10px 20px 10px 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: 15px;
	transition: all 0.3s ease-out;
}

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

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

.hero{
	position: relative;
	background: url('../img/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 20px;
	min-height: 80vh;
	margin-top: -118px;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.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-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 280px 0 250px;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-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-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-content .section-title p{
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted{
	margin-left: 30px;
}

.hero-social-links{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 35px;
}

.hero-social-links span{
	color: var(--white-color);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
}

.hero-social-links a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	color: var(--white-color);
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.hero-social-links a:hover{
	background-color: var(--white-color);
	color: var(--primary-color);
	border-color: var(--white-color);
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us{
	background-image: url('../img/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 100px 0;
}

.about-us-images{
	position: relative;
	padding: 16px 0 0 16px;
}

.about-img-1 figure{
	display: block;
	margin: 0;
}

/* Bottom-left corner accent */
.about-us-images::before{
	content: '';
	position: absolute;
	bottom: -16px;
	left: 0;
	width: 72px;
	height: 72px;
	border-left: 4px solid var(--accent-color);
	border-bottom: 4px solid var(--accent-color);
	border-radius: 0 0 0 12px;
	z-index: 2;
}

/* Top-right corner accent */
.about-us-images::after{
	content: '';
	position: absolute;
	top: 0;
	right: -16px;
	width: 72px;
	height: 72px;
	border-top: 4px solid var(--accent-color);
	border-right: 4px solid var(--accent-color);
	border-radius: 0 12px 0 0;
	z-index: 2;
}

/* Main large image */
.about-img-1{
	position: relative;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(25,35,36,0.22);
}

.about-img-1 img{
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.65s ease;
}

.about-img-1:hover img{
	transform: scale(1.04);
}

.experience-counter{
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3{
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p{
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter{
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
    writing-mode: vertical-rl;
	display: flex;
	align-items: center;
	display: none;
}

.feedback-counter p{
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p{
	background-color: var(--primary-color);
}

.feedback-counter h3{
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before{
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info{
	width: calc(50% - 40px);
}

.about-us-content-list{
	margin-bottom: 0px;
}

.about-us-content-btn{
    margin-top: 30px;
    text-align: center;
}

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

.about-us-content-list ul li{
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

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

.about-us-content-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

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

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

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

.about-contact-item .icon-box{
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box{
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img{
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i{
	font-size: 18px;
	color: var(--white-color);
}

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

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

.about-contact-content p{
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

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

.why-choose-item{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

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

.why-choose-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box{
	background-color: transparent;
}

.why-choose-item .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.3s ease-in-out;
}

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

.why-choose-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item .icon-box i{
	font-size: 24px;
	color: var(--accent-color);
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

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

.why-choose-item-content{
	width: calc(100% - 80px);
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2{
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure{
	display: block;
}

.why-choose-img-1{
	width: calc(57% - 10px);
}

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

.why-choose-img-2{
	width: calc(43% - 10px);
}

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

.why-choose-img-3{
	width: calc(67% - 10px);
}

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

.why-choose-img-4{
	width: calc(33% - 10px);
}

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

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	padding: 100px 0;
	background-color: white;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a{
	display: block;
	cursor: none;
}

.service-image a figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.service-image img{
	width: 100%;
	min-height: 500px;
	max-height: 500px;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

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

.service-btn{
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a{
	background-color: var(--accent-color);
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover{
	background-color: var(--primary-color);
}

.service-btn a img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img{
	transform: rotate(0)
}

.service-content{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a{
	color: inherit;
}

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

.all-services-btn{
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

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

.intro-video-image a{
	display: block;
	cursor: none;
}

.intro-video-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.intro-video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;	
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

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

/************************************/
/***    09. Latest Project css    ***/
/************************************/

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

.our-Project-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before{
	content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.our-Project-nav ul li a:after{
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after{
	transform-origin: bottom left;
    transform: scaleX(1);
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn{
	position: absolute;	
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);	
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);	
}

.project-btn .arrow{
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img{
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn .arrow:hover{
	background: var(--primary-color);
}

.project-btn .arrow:hover img{
	transform: rotate(0deg);
}

.project-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
}

.project-content{
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
}

.project-content h3,
.project-content h2{
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2{
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a{
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work{
	background: var(--primary-color);
	padding: 100px 0;
}

.how-we-work-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-we-work-item{
	width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box{
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img{
	max-width: 60px;
}

.how-we-work-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p{
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.how-work-company-slider .company-logo{
	text-align: center;
}

.how-work-company-slider .company-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill{
	padding: 100px 0;
	background: url('../img/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar{
	margin-bottom: 40px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no{
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress{
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image{
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1{
	width: 333px;
	position: relative;
	background: url('../img/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure{
	display: block;
}

.our-skill-img-1 img{
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2{
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img{
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3{
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img{
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	background: #f4f4f4;
}

.our-testimonials .container-fluid{
	padding: 0;
}

.our-testimonials-image{
	height: 100%;
	margin-top: 100px;
	padding-left: 40px;
}

.our-testimonials-image figure,
.our-testimonials-image figure img{
    width: 100%;
    height: auto;
    /* aspect-ratio: 1 / 0.82; */
    object-fit: cover;
}

.our-testimonial-content{
	padding: 100px;
}

.our-testimonial-content .section-title{
	background: url('../img/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider{
	width: 100%;
	max-width: 620px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

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

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child{
	margin-right: 0;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

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

.testimonial-body .author-image{
	margin-right: 15px;
}

.testimonial-body .author-image img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content{
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter{
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2{
	font-size: 58px;
}

.testimonial-client-rating{
	display: inline-block;
	background: var(--accent-color);
    padding: 0px 5px 3px 5px;
    line-height: 1em;
}

.testimonial-client-rating i{
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p{
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0;
	background: url('../img/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item{
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
    margin-bottom: 20px;
}

.post-featured-image a{
    cursor: none;
}

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

.post-featured-image img{
	max-height: 400px;
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

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

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

.post-item-content h3{
	color: var(--primary-color);
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a{
    color: inherit;
}

.post-item-btn a{
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px , -50%);
	width: 17px;
	height: 16px;
	background: url('../img/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after{
	transform: translate(2px , -50%);
}

.our-blog-footer{
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer{
	padding: 80px 0 0;
	background: var(--primary-color);
}

.main-footer .footer-header{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-logo img{
	width: auto;
	height: 44px;
	max-width: 220px;
	object-fit: contain;
}

.footer-social-links{
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}

.footer-social-link-title h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-links ul li{
	display: inline-flex;
	/* margin-right: 10px; */
}

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

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

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

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

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

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

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

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

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

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

.footer-links ul li a{
	display: block;
	color: inherit;
}

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

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

.footer-contact-item .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box{
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i{
	font-size: 16px;
	color: var(--white-color);
}

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

.footer-contact-content p, .footer-contact-content a{
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p{
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group{
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control{
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

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

.footer-newsletter-form button{
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i{
	color: var(--accent-color);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i{
	color: var(--primary-color);
}

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

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

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('../img/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 180px;
	margin-top: -118px;
	min-height: 85vh;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.page-header-box h1{
	display: inline-block;
	font-size: 80px;
    font-weight: 700;
	color: var(--white-color);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    cursor: none;
}

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

.page-header-box ol li.breadcrumb-item{
	font-size: 22px;
	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{
    font-size: 20px;
    color: var(--white-color);
}

.about-us.page-about-us{
	background: transparent;
}

.about-facility-list{
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item{
	width: calc(33.33% - 20px);
	display: flex;
}

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

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

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

.about-facility-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

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

.about-facility-content{
	width: calc(100% - 80px);
}

.about-facility-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p{
	margin-bottom: 0;
}

.vision-mission{
	padding: 100px 0 50px;
	background: var(--primary-color);
}

.vision-mission-box{
	background-color: #1e2c2e;
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}

.vision-mission-item{
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: rgba(255,255,255,0.1);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before{
	display: none;
}

.vision-mission-item .icon-box{
	position: relative;
	width: 95px;
	height: 95px;
	background: rgba(255,255,255,0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

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

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

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

.vision-mission-item .icon-box i{
	position: relative;
	font-size: 36px;
	color: var(--accent-color);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

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

.vision-mission-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
	color: var(--white-color);
}

.vision-mission-content p{
	margin: 0;
	color: rgba(255,255,255,0.6);
}

.best-selling{
	background: url(../img/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img{
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure{
	display: block;
}

.best-selling-content-img img{
	width: 100%;
	aspect-ratio: 1 / 0.42;
    object-fit: cover;
}

.best-selling-content .section-title{
	margin-bottom: 0;
}

.best-selling-iamge img{
	width: 100%;
	/* aspect-ratio: 1 / 0.73; */
    object-fit: cover;
}

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

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	margin-bottom: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image figure{
	display: block;
}

.team-image figure img{
	width: 100%;
    aspect-ratio: 1 / 1.11;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img{
	transform: scale(1.1);
}

.team-readmore-btn{
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a{
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

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

.team-readmore-btn img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img{
	transform: rotate(0deg);
}

.team-content{
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p{
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li{
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
}

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

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

.our-faqs-content{
	margin-right: 70px;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

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

.faq-accordion .accordion-header .accordion-button{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
	align-items: start;
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span{
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f068';
}

.faq-accordion .accordion-body{
	padding-right: 35px;
}

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

.our-faqs-image{
	text-align: right;
}

.our-faqs-image figure{
	display: block;
}

.our-faqs-image img{
	width: 100%;
	aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.our-clients{
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box{
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo{
	text-align: center;
}

.our-client-slider .client-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services{
	padding: 70px 0 60px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

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

.service-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.service-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
    margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

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

.service-catagery-list ul li{
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
    margin: 0;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
	font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

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

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
	transform: translateY(-50%) rotate(-45deg);
    background-image: url(../img/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.sidebar-cta-image figure{
	display: block;
}

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

.sidebar-cta-Body{
	border: 1px solid var(--divider-color);
	padding: 30px;
}

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

.sidebar-cta-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p{
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover{
	background-color: transparent;
}

.sidebar-cta-contact-item .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.3s ease-in-out;
}

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

.sidebar-cta-contact-item .icon-box img{
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

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

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

.cta-contact-item-content p{
	font-weight: 500;
	margin: 0;
}

.service-feature-image{
    margin-bottom: 40px;
}

.service-feature-image figure{
    display: block;
}

.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

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

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

.service-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li{
	position: relative;
    font-weight: 500;
    color: var(--text-color);
	text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 15px;
}

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

.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.service-entry-list-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list{
	width: calc(50% - 15px);
}

.service-entry-image figure{
	display: block;
}

.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: contain;
}

.service-entry-list ul{
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose{
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

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

.page-pagination{
    margin-top: 20px;
    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(--accent-color);
    color: var(--white-color);
    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 span, 
.page-pagination ul li a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

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

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

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.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;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 80px;
    letter-spacing: -0.02em;
}

.post-entry h2{
	font-size: 46px;
    letter-spacing: -0.02em;
}

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

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

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

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

.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 ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

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

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    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(../img/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 0;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

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

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

.tag-links{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
    padding: 6px 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: 0;
    width: 36px;
    height: 36px;
    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;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

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

.page-product-center{
	background-color: #f4f4f4;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

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

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

.project-detail-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

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

.project-detail-item:last-child{
	margin-bottom: 0;
}

.project-detail-item .icon-box{
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

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

.project-detail-item .icon-box i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i{
	color: var(--white-color);
}

.project-detail-content{
	width: calc(100% - 70px);
}

.project-detail-content h3{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p{
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image{
    margin-bottom: 40px;
}

.project-single-image figure{
    display: block;
}

.project-single-image img{
	width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.project-info,
.project-design-info{
	margin-bottom: 60px;
}

.project-entry h2{
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

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

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

.project-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.project-entry ul li{
	position: relative;
    font-weight: 500;
    color: var(--text-color);
    padding-left: 30px;
    margin-bottom: 15px;
}

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

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.project-gallery-images{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-gallery-img{
    width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure{
    display: block;
	cursor: none;
}

.project-gallery-img figure img{
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

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

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

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

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

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

.faq-catagery-list ul li{
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

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

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

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

.faq-catagery-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../img/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion{
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

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

.contact-us-image{
	height: 100%;
}

.contact-us-image figure{
	height: 100%;
	display: block;
}

.contact-us-image img{
	height: 100%;
	width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.962;
}

.contact-us-form{
	margin-left: 30px;
}

.contact-form .form-control{
    font-size: 16px;
    font-weight: 500;
	line-height: 1.2em;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
	border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 14px 15px;
}

.contact-form .form-control::placeholder{
	font-weight: 400;
}

.google-map{
	padding: 50px 0 100px;
}

.google-map .section-title{
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

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

.contact-info-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.contact-info-item{
	width: calc(33.33% - 20px);
	display: flex;
}

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

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

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

.contact-info-item .icon-box i{
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box i{
	color: var(--white-color);
}

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

.contact-info-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p{
	margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page{
	background-image: url(../img/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

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

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

 .error-page-content{
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

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

.error-page-content-body p{
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***   27. Homepage Extra css     ***/
/************************************/

/* Hero Social Links */
.hero-social-links{
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	position: relative;
	z-index: 2;
}

.hero-social-links span{
	font-size: 14px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 12px;
}

.hero-social-links ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	color: var(--white-color);
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

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

/* Stats Counter Section */
.our-experience{
	background-color: var(--primary-color);
	padding: 60px 0;
}

.experience-item{
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	border-right: 1px solid var(--dark-divider-color);
}

.experience-item:last-child{
	border-right: none;
}

.experience-number h3{
	font-size: 52px;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1em;
	margin: 0;
}

.experience-content p{
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
	line-height: 1.4em;
	max-width: 120px;
}

/* Home Page - Product Category Cards: uniform height with contain for PNG images */
.our-project .project-item-boxes .project-item{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.our-project .project-item-boxes .project-featured-image{
    height: 260px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.our-project .project-item-boxes .project-featured-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: contain;
    padding: 20px;
}

/* Home Page - Service cards: uniform image height */
.our-services .service-image figure{
    height: 260px;
    overflow: hidden;
}

.our-services .service-image figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px){
	
	.our-testimonial-content{
		padding: 100px 50px;
	}
}

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}

	.our-testimonial-content{
		padding: 50px 20px;
	}
}

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

	.navbar{
		padding: 20px 0;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

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

	.header-btn{
		display: none;
	}

	.btn-default{
		padding: 14px 42px 14px 16px;
	}

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

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

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

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

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

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

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

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

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

	.hero{
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -92px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 180px 0 140px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p{
		font-size: 20px;
	}

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

	.about-us-images{
		margin: 0 0 30px 0;
		padding: 12px 0 0 12px;
	}

	.about-img-1 img{
		height: 360px;
	}

	.experience-counter{
		height: 137px;
		width: 137px;
	}

	.experience-counter h3{
		font-size: 28px;
	}

	.about-us-content-list{
		margin-bottom: 30px;
	}

	.about-contact-item{
		margin-bottom: 30px;
	}

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

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box{
		margin-right: 10px;
	}

	.why-choose-item-content{
		width: calc(100% - 70px);
	}

	.why-choose-images{
		margin-left: 0;
	}

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

	.service-image img{
		aspect-ratio: 1 / 1.2;
	}

	.service-btn{
		top: 20px;
		right: 20px;
	}

	.service-btn a{
		height: 50px;
		width: 50px;
	}

	.service-content{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn{
		margin-top: 10px;
	}

	.video-play-button a{
		width: 80px;
		height: 80px;
	}

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

	.our-Project-nav{
		margin-bottom: 50px;
	}

	.project-featured-image img{
		aspect-ratio: 1 / 0.89;
	}

	.project-btn .arrow{
		width: 80px;
		height: 80px;
	}

	.project-content{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work{
		padding: 50px 0;
	}

	.how-we-work-item{
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box{
		margin-bottom: 20px;
	}

	.how-work-company-slider{
		margin-top: 40px;
		padding-top: 40px;
	}

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

	.our-skill-content{
		margin-bottom: 30px;
	}

	.skills-progress-bar{
		margin-bottom: 30px;
	}

	.our-skill-image{
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image{
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content{
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title{
		background-size: contain;
	}

	.testimonial-slider{
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating{
		margin-bottom:15px;
	}

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

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
		font-size: 48px;
	}

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

	.our-blog .section-title{
		margin-right: 0;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer{
		margin-top: 10px;
	}

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

	.main-footer .footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-links{
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-form p{
		margin-bottom: 20px;
	}

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

	.page-header{
        padding: 180px 0 100px;
        margin-top: -92px;
    }

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

	.page-header-box ol li.breadcrumb-item{
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 16px;
	}

	.about-facility-list{
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item{
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box{
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img{
		max-width: 20px;
	}

	.about-facility-content{
		width: calc(100% - 55px);
	}

	.about-facility-content h3{
		font-size: 18px;
	}

	.vision-mission{
		padding: 50px 0 25px;
	}

	.vision-mission-box{
        padding: 30px 15px;
        gap: 30px 40px;
    }

	.vision-mission-item{
		width: calc(50% - 20px);
	}

	.vision-mission-item::before{
		right: -20px;
	}

	.vision-mission-item .icon-box{
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img{
		max-width: 30px;
	}

	.vision-mission-content h3{
		margin-bottom: 15px;
	}

	.best-selling{
		padding: 25px 0 50px;
	}

	.best-selling-content{
		margin-bottom: 20px;
	}

	.best-selling-content-img{
		margin-bottom: 20px;
	}

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

	.team-readmore-btn{
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a{
		width: 50px;
		height: 50px;
	}

	.team-content{
		margin-bottom: 15px;
	}

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

	.our-faqs-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

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

	.our-faqs-image{
		text-align: center;
		margin-left: 0px;
	}

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

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

	.our-clients .our-clients-box{
		max-width: 100%;
	}

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

	.page-service-single{
		padding: 50px 0;
	}

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

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li{
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before{
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body{
		padding: 20px;
	}

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

	.sidebar-cta-contact-item{
		margin-bottom: 15px;
	}

	.service-feature-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry ul li{
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before{
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose{
		margin-bottom: 30px;
	}

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

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

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

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

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

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		padding: 6px 15px;
	}

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

	.page-project-single{
		padding: 50px 0;
	}

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

	.project-detail-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image{
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info{
		margin-bottom: 30px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 20px;
	}

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

	.page-gallery-box .photo-gallery img{
		aspect-ratio: 1 / 0.85;
	}

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

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

	.faq-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li{
        margin-bottom: 15px;
    }

	.faq-catagery-list ul li a::before{
        width: 16px;
        height: 16px;
    }

	.our-faq-section.page-faq-accordion{
		margin-bottom: 40px;
	}

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

	.contact-us-image{
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img{
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form{
		margin-left: 0;
	}

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

	.google-map{
		padding: 25px 0 50px;
	}

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

	.contact-info-box{
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item{
		width: calc(33.33% - 13.33px);
	}

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

	.contact-info-item .icon-box i{
		font-size: 16px;
	}

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

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

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

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

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

	.page-header{
		min-height: unset;
	}
	.section-row{
		margin-bottom: 30px;
	}

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

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

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

	.hero-content .section-title p{
		font-size: 18px;
	}

	.hero-content .btn-default{
		margin-right: 40px;
		margin-bottom: 10px;
	}

	.hero-content .btn-default.btn-highlighted{
		margin: 0;
	}

	.about-us-images{
		gap: 10px;
	}

	.feedback-counter{
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p{
        font-size: 12px;
        height: 38px;
        width: 38px;
        margin: 0 0 6px 0;
    }

	.feedback-counter h3{
		font-size: 12px;
        width: calc(100% - 40px);
	}

	.about-img-1 img{
		height: 420px;
	}

	.experience-counter{
        height: 102px;
        width: 102px;
    }

	.experience-counter h3{
        font-size: 22px;
    }

	.experience-counter p{
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body{
		gap: 0px;
	}

	.about-us-content-body::before{
		display: none;
	}

	.about-us-content-info{
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list{
        margin-bottom: 20px;
    }

	.about-us-contact-list{
		width: 100%;
	}

	.about-us-content-list ul li{
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before{
		font-size: 18px;
		top: 3px;
	}

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

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

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img{
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img{
		aspect-ratio: 1 / 1.588;
	}

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

	.intro-video-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-btn .arrow{
        width: 60px;
        height: 60px;
    }

	.project-btn img{
		max-width: 20px;
	}

	.project-content h2{
		font-size: 18px;
	}

	.how-we-work-item{
		width: 100%;
	}

	.how-we-work-item .icon-box img{
		max-width: 50px;
	}

	.how-we-work-content h3{
		font-size: 18px;
	}

	.how-work-company-slider{
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image{
		padding-bottom: 83px;
	}

	.our-skill-img-1{
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2{
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3{
		width: 200px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-rating i{
		font-size: 16px;
	}

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

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

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
        font-size: 38px;
    }

	.post-featured-image{
		margin-bottom: 15px;
	}

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

	.post-item-content h3{
		font-size: 18px;
	}

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

	.navbar-brand img{
		height: 40px;
		max-width: 220px;
	}

	.footer-logo img{
		height: 40px;
		max-width: 200px;
	}

	.footer-social-links{
		justify-content: start;
		gap: 20px;
	}

	.footer-social-link-title h3{
		font-size: 18px;
	}

	.footer-links h3{
		margin-bottom: 15px;
	}

	.footer-links ul li{
		margin-bottom: 5px;
	}
	
	.footer-copyright{
		padding: 15px 0;
	}

	.page-header-box h1{
		font-size: 28px;
		margin-bottom: 5px;
	}

	.page-header-box ol li.breadcrumb-item{
        font-size: 16px;
    }

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 14px;
	}

	.about-facility-item{
        width: 100%;
    }

	.vision-mission{
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}

	.vision-mission-box{
        padding: 20px;
        gap: 40px;
    }

	.vision-mission-item{
		width: 100%;
	}

	.vision-mission-item::before{
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before{
		display: block;
	}

	.vision-mission-item:last-child::before{
		display: none;
	}
	
	.vision-mission-content h3{
		font-size: 18px;
	}

	.team-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 2px;
	}

	.faq-accordion .accordion-body{
		padding-right: 0;
	}

	.our-faqs-image img{
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3{
		font-size: 18px;
	}

	.sidebar-cta-content h3{
		font-size: 18px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-feature-image{
        margin-bottom: 20px;
    }

	.service-feature-image img{
        aspect-ratio: 1 / 0.7;
    }

	.service-entry-list-image{
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 26px;
	}

	.project-single-image{
        margin-bottom: 20px;
    }

	.project-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight{
		margin-bottom: 20px;
	}

	.project-entry h2{
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry ul li{
        margin-bottom: 10px;
    }

	.project-entry ul li::before{
        font-size: 18px;
        top: 5px;
    }

	.project-gallery-images{
		gap: 20px;
	}

	.project-gallery-img{
		width: calc(50% - 10px);
	}

	.contact-us-image img{
        aspect-ratio: 1 / 0.75;
    }

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

	.contact-info-item{
		width: 100%;
	}

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

	/* Homepage responsive */
	.hero-social-links{
		flex-wrap: wrap;
		gap: 12px;
		margin-top: 30px;
	}

	.experience-item{
		border-right: none;
		border-bottom: 1px solid var(--dark-divider-color);
		padding: 15px 0;
	}

	.experience-item:last-child{
		border-bottom: none;
	}

	.experience-number h3{
		font-size: 38px;
	}
}

/* Product pages */
.page-product-single{
	padding: 100px 0;
}

.product-top-block{
	margin-bottom: 60px;
}

.product-main-image{
	padding: 50px;
	background: #f5f7fa;
	border-radius: 20px;
}

.product-main-image figure,
.product-main-image img{
	width: 100%;
	aspect-ratio: 1 / 0.78;
	object-fit: contain;
}

.product-summary{
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #e4eaf2;
	background: var(--white-color);
}

.product-type{
	display: inline-block;
	padding: 11px 16px;
	border-radius: 4px;
	margin-bottom: 15px;
	background: #eef3f9;
	color: var(--primary-color);
	font-size: 12px;
	line-height: 1.8;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-family: 'Roboto Slab', serif;
}

.product-summary h2{
	font-size: 36px;
	line-height: 1.2em;
	margin-bottom: 15px;
}

.product-summary > p{
	margin-bottom: 20px;
}

.product-meta-grid{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	/* margin-bottom: 25px; */
}

.product-meta-item{
	padding: 14px;
	border-radius: 12px;
	background: #f7f9fc;
}

.product-meta-item h3{
	font-size: 10px;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-family: 'Exo 2', sans-serif;
	font-weight: 500;
	color: #555;
}

.product-meta-item p{
	margin: 0;
	font-weight: 600;
	font-size: 15px;
	color: var(--primary-color);
	font-family: 'Exo 2', sans-serif;
	letter-spacing: 0.3px;
}

.product-action-row{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.product-content-block{
	margin-bottom: 60px;
}

.product-content-block:last-child{
	margin-bottom: 0;
}

.product-section-title{
	margin-bottom: 25px;
}

.product-section-title h2{
	margin: 0;
}

.product-feature-card{
	height: 100%;
	padding: 30px;
	border-radius: 18px;
	border: 1px solid #e4eaf2;
	background: var(--white-color);
}

.product-feature-card h3{
	font-size: 24px;
	margin-bottom: 18px;
}

.product-feature-card ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-feature-card ul li{
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
}

.product-feature-card ul li:last-child{
	margin-bottom: 0;
}

.product-feature-card ul li:before{
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: var(--accent-color);
	position: absolute;
	left: 0;
	top: 1px;
}

.product-param-table-wrap{
	border: 1px solid #e4eaf2;
	border-radius: 18px;
	overflow: hidden;
}

.product-param-table{
	width: 100%;
	border-collapse: collapse;
}

.product-param-table th,
.product-param-table td{
	padding: 16px 18px;
	font-size: 16px;
	line-height: 1.4em;
	border-bottom: 1px solid #e8eef4;
}

.product-param-table th{
	background: #f4f8fc;
	color: var(--primary-color);
	font-weight: 700;
}

.product-param-table tbody tr:last-child td{
	border-bottom: none;
}

.related-product-item{
	padding: 18px;
	border-radius: 16px;
	background: #f7f9fc;
}

.related-product-image{
	display: block;
	padding: 15px;
	border-radius: 14px;
	background: #eff4f9;
	margin-bottom: 14px;
}

.related-product-image img{
	width: 100%;
	aspect-ratio: 1 / 0.78;
	object-fit: contain;
}

.related-product-item h3{
	font-size: 19px;
	line-height: 1.4em;
	margin: 0;
}

.related-product-item h3 a{
	color: inherit;
}

.related-product-item h3 a:hover{
	color: var(--accent-color);
}

@media only screen and (max-width: 991px){
	.page-product-single{
		padding: 80px 0;
	}

	.product-summary h2{
		font-size: 30px;
	}

	.product-main-image{
		margin-bottom: 25px;
	}
}

@media only screen and (max-width: 767px){
	.page-product-single{
		padding: 60px 0;
	}

	.product-summary{
		padding: 25px;
	}

	.product-summary h2{
		font-size: 24px;
	}

	.product-main-image{
		padding: 20px;
	}

	.product-meta-grid{
		grid-template-columns: 1fr;
	}

	.product-feature-card{
		padding: 24px;
		margin-bottom: 20px;
	}

	.product-param-table{
		min-width: 700px;
	}

	.product-param-table-wrap{
		overflow-x: auto;
	}

	.related-product-item{
		margin-bottom: 20px;
	}
}

/* Product center */
.product-showcase-section{
	padding: 60px 0 30px;
}

.product-showcase-slider{
	position: relative;
}

.product-showcase-slider .swiper{
	overflow: visible;
}

.product-showcase-item{
	padding: 18px;
	border-radius: 18px;
	background: #f6f9fc;
	text-align: center;
}

.product-showcase-item img{
	width: 100%;
	height: 170px;
	object-fit: contain;
	margin-bottom: 10px;
}

.product-showcase-content h3{
	font-size: 20px;
	margin-bottom: 4px;
}

.product-showcase-content p{
	margin: 0;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: black;
}

.product-showcase-nav{
	position: absolute;
	right: 12px;
	top: 12px;
	display: flex;
	gap: 10px;
	z-index: 5;
}

.product-showcase-prev,
.product-showcase-next{
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #eef3f8;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

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

.home-product-filter {
	padding: 40px 0 10px;
	background: #f9fbfd;
}

/* ===== Why Choose Shiftix Section ===== */
.why-choose-shiftix {
	padding: 100px 0;
	background: #f4f4f4;
}

.why-shiftix-image {
	background: var(--secondery-color);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-shiftix-image img {
	width: 100%;
	height: 100%;
	max-height: 480px;
	object-fit: contain;
}

.why-shiftix-list {
	background: var(--primary-color);
	border-radius: 10px;
	padding: 28px 24px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.why-shiftix-list h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.why-shiftix-list h4 i {
	color: var(--accent-color);
	font-size: 16px;
}

.why-shiftix-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-shiftix-list ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.65);
	line-height: 1.65;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--dark-divider-color);
}

.why-shiftix-list ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.why-shiftix-list ul li i {
	color: var(--accent-color);
	font-size: 15px;
	flex-shrink: 0;
	margin-top: 3px;
}

@media only screen and (max-width: 991px) {
	.why-choose-shiftix {
		padding: 50px 0;
	}

	.why-shiftix-image {
		margin-bottom: 30px;
	}
}

/* ===== Our Offerings Section ===== */
.our-offerings {
	padding: 60px 0 0px;
	background: var(--white-color);
}

.offering-item {
	position: relative;
	padding: 40px 30px;
	background: var(--primary-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.offering-item:hover {
	border-color: var(--accent-color);
	transform: translateY(-6px);
}

.offering-icon {
	position: relative;
	z-index: 1;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: background 0.3s ease-in-out;
}

.offering-item:hover .offering-icon {
	background: var(--accent-color);
}

.offering-icon i {
	font-size: 26px;
	color: var(--accent-color);
	transition: color 0.3s ease-in-out;
}

.offering-item:hover .offering-icon i {
	color: var(--white-color);
}

.offering-content {
	position: relative;
	z-index: 1;
}

.offering-content h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 12px;
}

.offering-content p {
	font-size: 14px;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	margin: 0;
}

@media only screen and (max-width: 991px) {
	.our-offerings {
		padding: 50px 0;
	}
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	width: 58px;
	height: 58px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
	font-size: 30px;
	color: #ffffff;
	line-height: 1;
}

.whatsapp-float:hover {
	transform: scale(1.12);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.4);
	animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
	0%   { transform: scale(1); opacity: 0.8; }
	100% { transform: scale(2); opacity: 0; }
}
/* ===== WhatsApp Floating Button End ===== */

/* ===== Header Icons (Search + Sidebar Toggle) ===== */
.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 20px;
    margin-right: 0;
}

.header-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white-color);
    font-size: 18px;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.white-header .header-icons button, .white-header .header-icons a{
	color: var(--primary-color);
}

.header-icons button:hover {
    color: var(--accent-color);
}
.white-header .header-icons button:hover, .white-header .header-icons a:hover{
	color: var(--primary-color);
}
header.main-header .header-sticky.active .header-icons button {
    color: var(--white-color);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    z-index: 10000;
    padding: 22px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    transform: translateY(0);
}

.search-overlay-form {
    display: flex;
    align-items: center;
    /* border-bottom: 2px solid var(--primary-color); */
    gap: 10px;
}

.search-overlay-form .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 20px;
    padding: 10px 0;
    color: var(--primary-color);
    background: transparent;
    font-family: inherit;
}

.search-overlay-form .search-input::placeholder {
    color: #aaa;
}

.search-overlay-form button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-color);
    padding: 8px;
    line-height: 1;
    transition: color 0.3s;
}

.search-overlay-form button:hover {
    color: var(--accent-color);
}

.search-close-btn {
    font-size: 22px !important;
    color: #999 !important;
}

/* Sidebar Panel */
.sidebar-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100%;
    background: var(--primary-color);
    z-index: 10001;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(0,0,0,0.4);
}

.sidebar-panel.active {
    right: 0;
}

.sidebar-panel-inner {
    padding: 55px 35px 40px;
    position: relative;
}

.sidebar-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--accent-color);
    line-height: 1;
    transition: opacity 0.2s;
}

.sidebar-close:hover {
    opacity: 0.7;
}

.sidebar-section {
    margin-bottom: 28px;
}

.sidebar-section h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 10px;
}

.sidebar-section hr {
    border-color: rgba(255,255,255,0.15);
    margin: 0 0 16px;
}

.sidebar-section p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin: 0;
}

.sidebar-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    line-height: 1.5;
}

.sidebar-contact-list li a{
    font-size: 14px;
    color: rgba(255,255,255,0.65);
	text-decoration: none;
}

.sidebar-contact-list li:last-child {
    border-bottom: none;
}

.sidebar-contact-list li i {
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.sidebar-hours div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-hours div:last-child {
    border-bottom: none;
}

.sidebar-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.3s;
    text-decoration: none;
}

.sidebar-social a:hover {
    background: var(--accent-color);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* ===== Header Icons End ===== */

/* ===== Top Bar ===== */
.top-bar {
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
	overflow: hidden;
	max-height: 44px;
	opacity: 1;
	transition: max-height 0.35s ease, opacity 0.3s ease;
}

.top-bar.top-bar-hidden {
	max-height: 0;
	opacity: 0;
}

.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 44px;
	gap: 20px;
}

.top-bar-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: nowrap;
}

.top-bar-left a {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}

.top-bar-left a:hover {
	color: var(--white-color);
}

.top-bar-left a i {
	color: var(--accent-color);
	font-size: 12px;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.top-bar-right a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var(--dark-divider-color);
	color: rgba(255,255,255,0.65);
	font-size: 11px;
	text-decoration: none;
	transition: all 0.2s;
}

.top-bar-right a:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}

@media only screen and (max-width: 767px) {
	.top-bar {
		display: none;
	}
}
/* ===== Top Bar End ===== */

.product-quick-search{
	padding: 32px 35px;
	border-radius: 20px;
	background: var(--white-color);
	margin-bottom: 35px;
	border: 1px solid #e5ebf2;
	box-shadow: 0 4px 28px rgba(25, 35, 36, 0.07);
}

.page-product-center.page-project{
	padding-top: 35px;
}

.product-quick-search h3{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--primary-color);
}

.product-quick-search h3 i{
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--primary-color);
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
}

.product-quick-search form{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr auto;
	gap: 16px;
	align-items: end;
}

.quick-search-field label{
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.qs-step{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 10px;
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1;
}

.qs-select-wrap{
	position: relative;
}

.qs-select-icon{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-color);
	font-size: 14px;
	pointer-events: none;
	z-index: 1;
	transition: color 0.2s;
}

.qs-select-arrow{
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-color);
	font-size: 11px;
	pointer-events: none;
	transition: transform 0.2s, color 0.2s;
}

.qs-select-wrap select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 52px;
	border-radius: 10px;
	border: 1.5px solid var(--divider-color);
	 padding: 0 38px 0 30px;
	text-indent: 5px; 
	background: var(--secondery-color);
	color: var(--text-color);
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.qs-select-wrap select option{
	background: var(--white-color);
	color: var(--text-color);
	text-indent: -5px;
}

.qs-select-wrap select option:disabled,
.qs-select-wrap select option[value=""]{
	color: var(--accent-color);
}

.qs-select-wrap select:hover:not(:disabled){
	border-color: var(--accent-color);
	background: var(--white-color);
}

.qs-select-wrap select:focus{
	outline: none;
	border-color: var(--primary-color);
	background: var(--white-color);
	box-shadow: 0 0 0 3px rgba(25, 35, 36, 0.08);
}

.qs-select-wrap select:focus ~ .qs-select-icon,
.qs-select-wrap select:focus ~ .qs-select-arrow{
	color: var(--primary-color);
}

.qs-select-wrap select:disabled{
	background: var(--secondery-color);
	color: var(--accent-color);
	cursor: not-allowed;
	border-color: var(--divider-color);
	opacity: 0.6;
}

.qs-select-wrap select:disabled ~ .qs-select-icon,
.qs-select-wrap select:disabled ~ .qs-select-arrow{
	color: var(--accent-color);
	opacity: 0.5;
}

.quick-search-btn .btn-default{
	height: 52px;
	min-width: auto;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
}

.project-item-boxes .project-item-box{
	display: flex;
}

.project-item.product-center-card{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 18px;
	border-radius: 16px;
	border: 1px solid #e5ebf2;
	background: var(--white-color);
}

.project-item.product-center-card .project-image{
	margin-bottom: 14px;
}

.project-item.product-center-card .project-featured-image{
	border-radius: 12px;
	background: #f4f8fc;
}

.project-item.product-center-card .project-featured-image img{
	aspect-ratio: 1 / 0.78;
	object-fit: contain;
}

.project-item.product-center-card .project-content{
	padding: 0;
	position: static;
	background: transparent;
}

.project-item.product-center-card .project-content h3{
	font-size: 24px;
	line-height: 1.3em;
	margin-bottom: 0;
	text-transform: capitalize;
	color: var(--primary-color);
}

.project-item.product-center-card .project-content h3 a{
	color: inherit;
}

.project-item.product-center-card .project-content h3 a:hover{
	color: var(--primary-color);
}

.project-item.product-center-card .project-content h2{
	font-size: 28px;
	line-height: 1.35em;
	color: var(--primary-color);
	min-height: 76px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.project-item.product-center-card .project-content h2 a{
	color: var(--primary-color);
}

.project-item.product-center-card .project-content h2 a:hover{
	color: var(--accent-color);
}

.page-product-center .project-item.product-center-card .project-content h2{
	display: none;
}

/* Product single gallery and related cards */
.product-gallery-main{
	margin-bottom: 15px;
}

.product-gallery-main img{
	width: 100%;
	height: auto;
	object-fit: contain;
}

.product-gallery-thumbs .swiper-slide{
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #dde6f2;
	background: var(--white-color);
	cursor: pointer;
	opacity: 0.8;
}

.product-gallery-thumbs .swiper-slide-thumb-active{
	border-color: var(--accent-color);
	opacity: 1;
}

.product-gallery-thumbs img{
	width: 100%;
	height: 84px;
	object-fit: contain;
}

.related-product-item{
	height: 100%;
}

.related-product-item p{
	margin: 8px 0 0;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--accent-color);
}

.related-product-slider{
	position: relative;
}

.related-product-nav{
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 18px;
}

.related-product-prev,
.related-product-next{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #eef3f8;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

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

/* Product list filters */
.product-list-filter{
	margin-bottom: 35px;
}

.product-list-filter h2{
	font-size: 38px;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.product-list-filter h2:after{
	content: '';
	display: block;
	width: 96px;
	height: 3px;
	background: #d8262f;
	margin-top: 16px;
}

.product-list-filter-row{
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-top: 34px;
}

.product-list-filter-row h3{
	min-width: 72px;
	font-size: 28px;
	line-height: 1.1em;
	margin: 0;
}

.product-list-filter-options{
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
}

.product-list-filter-options a{
	font-size: 22px;
	line-height: 1.1em;
	color: var(--text-color);
	opacity: 0.85;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.product-list-filter-options a:before{
	content: '';
	width: 22px;
	height: 22px;
	border: 2px solid #c8c8c8;
	border-radius: 50%;
}

.product-list-filter-options a:hover,
.product-list-filter-options a.active-btn{
	color: var(--primary-color);
	opacity: 1;
}

.product-list-filter-options a.active-btn:before{
	border-color: var(--accent-color);
	box-shadow: inset 0 0 0 5px var(--accent-color);
}

/* Product list cards */
.page-product-list .project-item-box{
	margin-bottom: 30px;
}

.product-list-card{
	width: 100%;
	padding: 28px;
	border: 1px solid #d9d9d9;
	background: #f6f6f6;
	display: flex;
	flex-direction: column;
}

.product-list-card h3{
	font-size: 20px;
	line-height: 1.25em;
	margin-bottom: 0;
	min-height: 52px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-list-card h3 a{
	color: var(--primary-color);
	display: inline-block;
}

.product-list-card h3 a:hover{
	color: var(--accent-color);
}

.product-list-card h3:after{
	content: '';
	display: block;
	width: 78px;
	height: 3px;
	background: #d8262f;
	margin: 16px 0 22px;
}

.product-list-image{
	min-height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0 20px;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 22px;
}

.product-list-image img{
	width: 100%;
	max-height: 320px;
	object-fit: contain;
}

.product-list-specs{
	margin-top: auto;
	min-height: 62px;
}

.product-list-specs p{
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 6px;
	color: #333;
}

.product-list-specs p span{
	color: #d8262f;
}

.product-list-btn{
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #d8262f;
	color: #d8262f;
	padding: 8px 18px;
	font-size: 16px;
	line-height: 1.2em;
	width: fit-content;
	transition: all 0.3s ease-in-out;
}

.product-list-btn:hover{
	background: #d8262f;
	color: var(--white-color);
}

.product-no-results{
	display: none;
	margin: 14px 0 0;
	padding: 18px 20px;
	border: 1px solid #e3b7b9;
	background: #fff5f5;
	color: #9f1f25;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 600;
}

.product-no-results.is-visible{
	display: block;
}

.btn-red-outline{
	background: transparent !important;
	color: #d8262f !important;
	border: 1px solid #d8262f !important;
	text-align: center;
	line-height: unset;
	padding: 20px;
	margin-top: 20px;
}
.product-meta-grid 
.add-to-enquiry{
	background: #d8262f !important;
	color: var(--white-color) !important;
	position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
	text-align: center;
	line-height: unset;
	padding: 20px;
	border-radius: 12px;
	margin-top: 20px;
}

.btn-red-outline::before,
.btn-red-outline::after{
	display: none !important;
}

.btn-red-outline:hover{
	background: #d8262f !important;
	color: var(--white-color) !important;
}
.product-meta-grid  .add-to-enquiry:hover{
	background: white !important;
	color: #d8262f !important;
	border: 1px solid #d8262f !important;
	border-radius: 12px;
}

@media only screen and (max-width: 1199px){
	.product-quick-search form{
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 991px){
	.product-showcase-section{
		padding: 50px 0 24px;
	}

	.product-showcase-nav{
		position: static;
		margin-top: 20px;
		justify-content: center;
	}

	.product-quick-search form{
		grid-template-columns: 1fr;
	}

	.quick-search-btn .btn-default{
		width: 100%;
		justify-content: center;
	}

	.project-item.product-center-card .project-content h2{
		font-size: 24px;
		min-height: 66px;
	}

	.product-list-filter h2{
		font-size: 32px;
	}

	.product-list-filter-row{
		flex-direction: column;
		gap: 10px;
		margin-top: 24px;
	}

	.product-list-filter-row h3,
	.product-list-filter-options a{
		font-size: 20px;
	}

	.product-list-card{
		padding: 22px;
	}

	.product-list-card h3{
		font-size: 18px;
		min-height: 46px;
	}

	.product-list-image{
		min-height: 260px;
	}

	.product-list-specs p{
		font-size: 15px;
	}

	.product-list-btn{
		font-size: 15px;
	}
}

@media only screen and (max-width: 767px){
	.product-showcase-item{
		padding: 20px;
	}

	.product-showcase-item img{
		height: 140px;
	}

	.product-quick-search{
		padding: 22px;
	}

	.product-gallery-main img{
		height: 280px;
	}

	.product-gallery-thumbs img{
		height: 64px;
	}

	.project-item.product-center-card .project-content h2{
		font-size: 22px;
		min-height: 58px;
	}

	.related-product-nav{
		justify-content: center;
	}

	.product-list-filter h2{
		font-size: 28px;
	}

	.product-list-filter-row h3,
	.product-list-filter-options a{
		font-size: 17px;
	}

	.product-list-filter-options a:before{
		width: 16px;
		height: 16px;
	}

	.product-list-card{
		padding: 18px;
	}

	.product-list-card h3{
		font-size: 17px;
		min-height: 42px;
	}

	.product-list-image{
		min-height: 210px;
	}

	.product-list-specs p{
		font-size: 14px;
	}

	.product-list-btn{
		font-size: 14px;
		padding: 8px 14px;
	}
}

/* Sidebar product filter layout */
.product-list-with-sidebar .product-list-filter{
	position: sticky;
	top: 24px;
	padding: 24px 22px;
	border: 1px solid #d9d9d9;
	background: #f6f6f6;
	margin-bottom: 0;
}

.product-list-with-sidebar .product-list-filter h2{
	font-size: 30px;
	margin-bottom: 10px;
}

.product-list-with-sidebar .product-list-filter-row{
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.product-list-with-sidebar .product-list-filter-row h3{
	font-size: 22px;
	min-width: 0;
}

.product-list-with-sidebar .product-list-filter-options{
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.product-list-with-sidebar .product-list-filter-options a{
	font-size: 18px;
}

.product-list-results{
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d9d9d9;
}

.product-list-results h2{
	font-size: 38px;
	margin-bottom: 8px;
}

.product-record-count{
	font-size: 16px;
	line-height: 1.4em;
	margin: 0;
	color: #333;
}

.product-record-count [data-count]{
	font-weight: 700;
	color: #d8262f;
}

/* Keep product cards visually even when titles/specs wrap */
.page-product-list .product-list-card h3{
	height: 50px;
	min-height: 50px;
}

.page-product-list .product-list-specs{
	min-height: 86px;
}

.stories-slider {
  padding: 80px 0;
  background: #f8f8f8;
  position: relative;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.story-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover img {
  transform: scale(1.1);
}

.story-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.story-card:hover::after {
  opacity: 1;
}

.story-content {
  padding: 25px;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

.story-card:hover .story-content {
  transform: translateY(-5px);
}

.story-content span {
  color: #7c877f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
}

.story-content h4 {
  font-size: 20px;
  margin: 8px 0;
  font-weight: 600;
  transition: 0.3s;
}

.story-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #192324;
  width: 18px;
  border-radius: 6px;
  transition: 0.3s;
}
.enquiry {
  background-color: #192324;
  color: white;
  width: 100%;
  padding: 8px 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
  border: none !important;
}
.add-to-enquiry {
  background-color: #192324;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
}
.enquiry:hover,
.add-to-enquiry:hover {
  background-color: #e8a020 !important;
  color: white;
}
.btn-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquiry-cart-table{
  border:1px solid #e5e5e5;
  border-radius:6px;
  margin-bottom:40px;
}

.table-responsive{
  overflow-x:auto;
}

.enquiry-cart-table table{
  width:100%;
  min-width:700px; 
  border-collapse:collapse;
}

.enquiry-cart-table th{
  background:#f5f5f5;
  padding:15px;
  font-weight:600;
  text-align:left;
}

.enquiry-cart-table td{
  padding:15px;
  border-top:1px solid #eee;
  vertical-align:middle;
}

.remove{
  color:red;
  font-size:18px;
  cursor:pointer;
}

.product-img img{
  width:60px;
}

.product-name{
  color:#2b7bbb;
  font-weight:500;
}

.qty{
  width:60px;
  padding:5px;
  border:1px solid #ccc;
}

.product-msg{
  width:140px;
  height:50px;
  border:1px solid #ccc;
}
/* ── News Article Page ── */
.news-article-wrap {
	padding: 60px 0 80px;
	background: #f4f6f9;
}

/* ── Article Header ── */
.article-header {
	background: #fff;
	border-radius: 16px;
	padding: 40px 48px 32px;
	margin-bottom: 28px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.article-category-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.article-cat-tag {
	display: inline-block;
	background: #e8a020;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 4px;
}
.article-breaking {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	color: #c0392b;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.article-breaking span.dot {
	width: 8px; height: 8px;
	background: #c0392b;
	border-radius: 50%;
	animation: pulse 1.2s infinite;
}
@keyframes pulse {
	0%,100%{ opacity:1; } 50%{ opacity:0.3; }
}
.article-header h1 {
	font-size: 34px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.3;
	margin-bottom: 20px;
}
.article-meta-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}
.article-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.author-avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e8a020, #1a1a2e);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}
.author-info span {
	display: block;
	font-size: 13px;
	color: #666;
}
.author-info strong {
	font-size: 14px;
	color: #1a1a2e;
	font-weight: 700;
}
.article-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #888;
}
.article-meta-item i { color: #e8a020; }
.article-share-btns {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 8px;
}
.article-share-btns span {
	font-size: 12px;
	color: #999;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.share-btn {
	width: 34px; height: 34px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s;
}
.share-btn:hover { transform: scale(1.15); color: #fff; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1da1f2; }
.share-btn.li { background: #0a66c2; }
.share-btn.wa { background: #25d366; }

/* ── Hero Image ── */
.article-hero {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 28px;
	position: relative;
	box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.article-hero img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	display: block;
}
.article-hero-caption {
	background: rgba(0,0,0,0.55);
	color: rgba(255,255,255,0.85);
	font-size: 12px;
	padding: 8px 18px;
	position: absolute;
	bottom: 0; left: 0; right: 0;
}

/* ── Two-Column Layout ── */
.article-main-col { }
.article-sidebar { }

/* ── Article Body ── */
.article-body-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 44px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
	margin-bottom: 24px;
}
.article-body-card .lead-text {
	font-size: 18px;
	font-weight: 500;
	color: #2d2d4e;
	line-height: 1.75;
	margin-bottom: 24px;
	border-left: 4px solid #e8a020;
	padding-left: 18px;
}
.article-body-card p {
	font-size: 15px;
	color: #444;
	line-height: 1.85;
	margin-bottom: 20px;
}
.article-body-card h2 {
	font-size: 22px;
	font-weight: 800;
	color: #1a1a2e;
	margin: 32px 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f0f0;
}
.article-body-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 24px 0 10px;
}
.article-body-card blockquote {
	background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
	border-radius: 12px;
	padding: 28px 32px;
	margin: 32px 0;
	position: relative;
}
.article-body-card blockquote::before {
	content: '\201C';
	font-size: 80px;
	color: #e8a020;
	position: absolute;
	top: -10px; left: 20px;
	line-height: 1;
	font-family: Georgia, serif;
}
.article-body-card blockquote p {
	color: #fff !important;
	font-size: 17px !important;
	font-style: italic;
	line-height: 1.65 !important;
	padding-left: 20px;
	margin: 0 !important;
}
.article-key-points {
	background: #f8f9ff;
	border: 1px solid #e8eaf6;
	border-radius: 12px;
	padding: 24px 28px;
	margin: 28px 0;
}
.article-key-points h4 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #e8a020;
	margin-bottom: 14px;
}
.article-key-points ul {
	margin: 0; padding: 0;
	list-style: none;
}
.article-key-points ul li {
	font-size: 14px;
	color: #444;
	padding: 6px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.article-key-points ul li:last-child { border-bottom: none; }
.article-key-points ul li::before {
	content: '';
	width: 6px; height: 6px;
	background: #e8a020;
	border-radius: 50%;
	margin-top: 7px;
	flex-shrink: 0;
}

/* ── Tags & Share ── */
.article-tags-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px 28px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.article-tags-card span {
	font-size: 12px;
	font-weight: 700;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-right: 4px;
}
.news-tag-pill {
	display: inline-block;
	background: #f0f0f0;
	color: #444;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 20px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.news-tag-pill:hover { background: #e8a020; color: #fff; }

/* ── Sidebar ── */
.sidebar-card {
	background: #fff;
	border-radius: 16px;
	padding: 26px 24px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
	margin-bottom: 24px;
}
.sidebar-card h5 {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1a1a2e;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e8a020;
}
/* Related news items */
.related-news-item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	text-decoration: none;
}
.related-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-news-thumb {
	width: 72px; height: 58px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}
.related-news-thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.related-news-item:hover .related-news-thumb img { transform: scale(1.08); }
.related-news-info h6 {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.4;
	margin-bottom: 4px;
	transition: color 0.2s;
}
.related-news-item:hover .related-news-info h6 { color: #e8a020; }
.related-news-info span {
	font-size: 11px;
	color: #aaa;
}
/* Categories */
.sidebar-category-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 0;
	border-bottom: 1px solid #f5f5f5;
	text-decoration: none;
	color: #444;
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s;
}
.sidebar-category-item:last-child { border-bottom: none; }
.sidebar-category-item:hover { color: #e8a020; }
.sidebar-category-item .cat-count {
	background: #f0f0f0;
	color: #888;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
}
/* Newsletter */
.sidebar-newsletter {
	background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
	border-radius: 16px;
	padding: 26px 24px;
	margin-bottom: 24px;
}
.sidebar-newsletter h5 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}
.sidebar-newsletter p {
	color: rgba(255,255,255,0.65);
	font-size: 13px;
	margin-bottom: 16px;
}
.sidebar-newsletter input {
	width: 100%;
	border: none;
	border-radius: 8px;
	padding: 11px 14px;
	font-size: 13px;
	margin-bottom: 10px;
	outline: none;
}
.sidebar-newsletter button {
	width: 100%;
	background: #e8a020;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 11px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
}
.sidebar-newsletter button:hover { background: #cf8c10; }

/* Back button */
.back-to-news {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #e8a020;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	margin-bottom: 24px;
	transition: gap 0.2s;
}
.back-to-news:hover { gap: 12px; color: #cf8c10; }
@media (max-width:768px){

  .product-img img{
      width:50px;
  }

  .qty{
      width:50px;
  }

  .product-msg{
      width:120px;
  }

  .enquiry-cart-table th,
  .enquiry-cart-table td{
      padding:10px;
      font-size:14px;
  }

}

@media only screen and (max-width: 991px){
	.article-header { padding: 28px 22px 22px; }

	.article-header h1 { font-size: 24px; }

	.article-hero img { height: 260px; }

	.article-body-card { padding: 26px 20px; }
	
	.article-share-btns { margin-left: 0; }

	.product-list-with-sidebar .product-list-filter{
		position: static;
	}

	.product-list-with-sidebar .product-list-filter-options{
		flex-direction: row;
		flex-wrap: wrap;
	}

	.product-list-results h2{
		font-size: 30px;
	}
}

@media only screen and (max-width: 420px){
	.sidebar-panel {
		width: 90%;
	}
}

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

	
	.sidebar-panel-inner{
		padding: 55px 20px 40px;	
	}

	.sidebar-close{
		right: 12px;
	}

	.vision-mission-item .icon-box i{
		font-size: 30px;

	}
	.product-list-with-sidebar .product-list-filter{
		padding: 20px 16px;
	}

	.product-list-with-sidebar .product-list-filter h2{
		font-size: 26px;
	}

	.product-list-with-sidebar .product-list-filter-row h3,
	.product-list-with-sidebar .product-list-filter-options a{
		font-size: 18px;
	}

	.page-product-list .product-list-card h3{
		height: auto;
		min-height: 46px;
	}
}

.cart-btn{
    position:relative;
	color: var(--white-color);
}

.cart-count{
    position:absolute;
    top:-6px;
    right:-10px;
    background:#ff0000;
    color:#fff;
    font-size:12px;
    width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.cart-popup{
position:fixed;
top:100px;
right:40px;
background:#fff;
padding:15px;
width:260px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
border-radius:8px;
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:9999;
}

.cart-popup.show{
opacity:1;
visibility:visible;
}

.popup-item{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
}

.popup-item img{
width:45px;
height:45px;
object-fit:cover;
border-radius:5px;
}

.popup-item span{
font-size:14px;
font-weight:600;
}
.cart-empty{
	text-align: center;
}

/* ══════════════════════════════
	SPLIT HERO
══════════════════════════════ */
.page-stories .ss-hero {
	display: flex;
	min-height: 100vh;
}
.page-stories .ss-hero-left {
	width: 50%;
	background: #0d0d0d;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 120px 72px 80px;
	position: relative;
	overflow: hidden;
}
.page-stories .ss-hero-left::before {
	content: '';
	position: absolute;
	top: -100px; left: -100px;
	width: 400px; height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,160,32,0.12), transparent 70%);
	pointer-events: none;
}
.page-stories .ss-hero-left::after {
	content: '';
	position: absolute;
	bottom: -80px; right: -80px;
	width: 300px; height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,160,32,0.08), transparent 70%);
	pointer-events: none;
}
.page-stories .ss-story-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #e8a020;
	margin-bottom: 28px;
}
.page-stories .ss-story-label::before {
	content: '';
	display: inline-block;
	width: 28px;
	height: 2px;
	background: #e8a020;
}
.page-stories .ss-hero-title {
	font-size: clamp(32px, 3.2vw, 52px);
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 28px;
}
.page-stories .ss-hero-title em {
	font-style: normal;
	color: #e8a020;
}
.page-stories .ss-hero-desc {
	font-size: 16px;
	color: rgba(255,255,255,0.55);
	line-height: 1.8;
	margin-bottom: 48px;
	max-width: 440px;
}
.page-stories .ss-hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 52px;
}
.page-stories .ss-chip {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,0.6);
	border: 1px solid rgba(255,255,255,0.14);
	padding: 6px 16px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.page-stories .ss-chip i { color: #e8a020; font-size: 11px; }
.page-stories .ss-hero-numbers {
	display: flex;
	gap: 40px;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 36px;
}
.page-stories .ss-hero-num h3 {
	font-size: 38px;
	font-weight: 800;
	color: #e8a020;
	margin: 0 0 4px;
	line-height: 1;
}
.page-stories .ss-hero-num p {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.page-stories .ss-hero-right {
	width: 50%;
	position: relative;
	overflow: hidden;
}
.page-stories .ss-hero-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.page-stories .ss-hero-right-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(13,13,13,0.4), transparent 60%);
}
.page-stories .ss-hero-tag {
	position: absolute;
	top: 48px;
	left: 36px;
	background: #e8a020;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 8px 18px;
	border-radius: 4px;
}
.page-stories .ss-hero-bottom-card {
	position: absolute;
	bottom: 40px;
	right: 36px;
	background: rgba(13,13,13,0.88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 16px;
	padding: 24px 28px;
	min-width: 220px;
}
.page-stories .ss-hero-bottom-card p {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.page-stories .ss-hero-bottom-card h4 {
	font-size: 32px;
	font-weight: 800;
	color: #e8a020;
	margin: 0 0 4px;
	line-height: 1;
}
.page-stories .ss-hero-bottom-card span {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════
	BRAND STRIP
══════════════════════════════ */
.page-stories .ss-brand-strip {
	background: #f5f5f5;
	padding: 36px 0;
	border-bottom: 1px solid #e8e8e8;
}
.page-stories .ss-brand-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.page-stories .ss-brand-item {
	text-align: center;
	flex: 1;
	min-width: 100px;
}
.page-stories .ss-brand-item h5 {
	font-size: 20px;
	font-weight: 800;
	color: #111;
	margin: 0 0 3px;
}
.page-stories .ss-brand-item span {
	font-size: 11px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 600;
}
.page-stories .ss-brand-sep {
	width: 1px;
	height: 40px;
	background: #ddd;
}

/* ══════════════════════════════
	SECTION SPACING
══════════════════════════════ */
.page-stories .ss-section { padding: 90px 0; }
.page-stories .ss-section-sm { padding: 60px 0; }

/* ══════════════════════════════
	OVERLINE + HEADING
══════════════════════════════ */
.page-stories .ss-overline {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #e8a020;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.page-stories .ss-overline::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 2px;
	background: #e8a020;
	flex-shrink: 0;
}
.page-stories .ss-heading {
	font-size: clamp(26px, 2.8vw, 40px);
	font-weight: 800;
	color: #111;
	line-height: 1.18;
	margin-bottom: 18px;
}
.page-stories .ss-heading em { font-style: normal; color: #e8a020; }
.page-stories .ss-body {
	font-size: 16px;
	line-height: 1.85;
	color: #555;
	margin-bottom: 20px;
}

/* ══════════════════════════════
	CARDS: CHALLENGE / SOLUTION
══════════════════════════════ */
.page-stories .ss-cs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 36px;
}
.page-stories .ss-cs-card {
	border-radius: 18px;
	padding: 32px 28px;
	position: relative;
	overflow: hidden;
}
.page-stories .ss-cs-card.orange {
	background: #fff8f0;
	border: 1.5px solid #f5d9aa;
}
.page-stories .ss-cs-card.green {
	background: #f0fff4;
	border: 1.5px solid #a8ddb5;
}
.page-stories .ss-cs-card.blue {
	background: #eef4ff;
	border: 1.5px solid #b3c9f5;
}
.page-stories .ss-cs-card .cs-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 18px;
}
.page-stories .orange .cs-icon { background: #e8a020; color: #fff; }
.page-stories .green .cs-icon { background: #28a745; color: #fff; }
.page-stories .blue .cs-icon { background: #3b82f6; color: #fff; }
.page-stories .ss-cs-card h6 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #111;
}
.page-stories .ss-cs-card p {
	font-size: 14px;
	color: #555 !important;
	line-height: 1.7;
	margin: 0;
}

/* ══════════════════════════════
	QUOTE STRIP (FULL WIDTH)
══════════════════════════════ */
.page-stories .ss-quote-strip {
	background: #0d0d0d;
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}
.page-stories .ss-quote-strip::before {
	content: '\201C';
	position: absolute;
	top: -30px;
	left: 5%;
	font-size: 300px;
	font-family: Georgia, serif;
	color: #e8a020;
	opacity: 0.06;
	line-height: 1;
}
.page-stories .ss-quote-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}
.page-stories .ss-quote-inner blockquote {
	font-size: clamp(20px, 2.5vw, 30px);
	font-weight: 600;
	font-style: italic;
	color: #fff;
	line-height: 1.65;
	margin: 0 0 40px;
	border: none;
	padding: 0;
}
.page-stories .ss-quote-author {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.page-stories .ss-qa {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #e8a020;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	flex-shrink: 0;
}
.page-stories .ss-qa-text { text-align: left; }
.page-stories .ss-qa-text h6 {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 3px;
}
.page-stories .ss-qa-text span {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
}
.page-stories .ss-stars {
	color: #e8a020;
	font-size: 16px;
	letter-spacing: 2px;
	margin-left: 20px;
}

/* ══════════════════════════════
	TIMELINE
══════════════════════════════ */
.page-stories .ss-timeline {
	position: relative;
	padding-left: 0;
}
.page-stories .ss-timeline::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #e8a020, rgba(232,160,32,0.1));
}
.page-stories .ss-tl-item {
	display: flex;
	gap: 28px;
	margin-bottom: 36px;
	position: relative;
}
.page-stories .ss-tl-item:last-child { margin-bottom: 0; }
.page-stories .ss-tl-dot {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #e8a020;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 0 6px rgba(232,160,32,0.12);
}
.page-stories .ss-tl-content {
	background: #fff;
	border: 1.5px solid #eee;
	border-radius: 16px;
	padding: 24px 28px;
	flex: 1;
	transition: box-shadow 0.25s, border-color 0.25s;
}
.page-stories .ss-tl-content:hover {
	box-shadow: 0 8px 28px rgba(232,160,32,0.12);
	border-color: #e8a020;
}
.page-stories .ss-tl-content h6 {
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin: 0 0 8px;
}
.page-stories .ss-tl-content p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.65;
}

/* ══════════════════════════════
	RESULTS - BENTO GRID
══════════════════════════════ */
.page-stories .ss-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	gap: 18px;
}
.page-stories .ss-bento-card {
	border-radius: 20px;
	padding: 36px 30px;
	position: relative;
	overflow: hidden;
}
.page-stories .ss-bento-card.dark {
	background: #0d0d0d;
	grid-column: span 2;
}
.page-stories .ss-bento-card.orange {
	background: linear-gradient(135deg, #e8a020, #c47a10);
}
.page-stories .ss-bento-card.light {
	background: #fff;
	border: 1.5px solid #eee;
}
.page-stories .ss-bento-card.light:hover {
	box-shadow: 0 10px 32px rgba(232,160,32,0.1);
	border-color: #e8a020;
}
.page-stories .bento-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 20px;
}
.page-stories .dark .bento-icon { background: rgba(232,160,32,0.15); color: #e8a020; }
.page-stories .orange .bento-icon { background: rgba(255,255,255,0.2); color: #fff; }
.page-stories .light .bento-icon { background: #fff5e5; color: #e8a020; }
.page-stories .ss-bento-card h3 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 8px;
}
.page-stories .dark h3 { color: #e8a020; }
.page-stories .orange h3 { color: #fff; }
.page-stories .light h3 { color: #111; }
.page-stories .light h3 span { color: #e8a020; }
.page-stories .ss-bento-card p {
	font-size: 14px;
	margin: 0;
	line-height: 1.55;
}
.page-stories .dark p { color: rgba(255,255,255,0.5); }
.page-stories .orange p { color: rgba(255,255,255,0.8); }
.page-stories .light p { color: #888; }
.page-stories .dark .bento-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.3);
	margin-bottom: 8px;
}

/* ══════════════════════════════
	SECOND TESTIMONIAL (CARD ROW)
══════════════════════════════ */
.page-stories .ss-testi-card {
	background: #fff;
	border: 1.5px solid #eee;
	border-radius: 20px;
	padding: 36px 32px;
	height: 100%;
	transition: box-shadow 0.25s;
}
.page-stories .ss-testi-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.page-stories .ss-testi-card .quote-mark {
	font-size: 52px;
	font-family: Georgia, serif;
	color: #e8a020;
	line-height: 1;
	margin-bottom: 16px;
	display: block;
}
.page-stories .ss-testi-card p {
	font-size: 15px;
	font-style: italic;
	color: #444;
	line-height: 1.75;
	margin-bottom: 24px;
}
.page-stories .ss-testi-card .tc-author {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid #f0f0f0;
	padding-top: 20px;
}
.page-stories .tc-av {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e8a020, #c47a10);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 15px;
	color: #fff;
	flex-shrink: 0;
}
.page-stories .tc-av-text h6 {
	font-size: 14px;
	font-weight: 700;
	color: #111;
	margin: 0 0 2px;
}
.page-stories .tc-av-text span {
	font-size: 12px;
	color: #aaa;
}

/* ══════════════════════════════
	CTA BANNER
══════════════════════════════ */
.page-stories .ss-cta {
	background: #0d0d0d;
	border-radius: 28px;
	padding: 80px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 80px;
	position: relative;
	overflow: hidden;
}
.page-stories .ss-cta::before {
	content: '';
	position: absolute;
	top: -80px; right: -80px;
	width: 360px; height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,160,32,0.15), transparent 70%);
}
.page-stories .ss-cta-text h2 {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.2;
}
.page-stories .ss-cta-text h2 em { font-style: normal; color: #e8a020; }
.page-stories .ss-cta-text p {
	font-size: 15px;
	color: rgba(255,255,255,0.5);
	margin: 0;
	max-width: 420px;
	line-height: 1.7;
}
.page-stories .ss-cta-btns {
	display: flex;
	gap: 14px;
	flex-shrink: 0;
	flex-wrap: wrap;
}
.page-stories .ss-btn-primary {
	background: #e8a020;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 15px 36px;
	border-radius: 10px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background 0.2s;
}
.page-stories .ss-btn-primary:hover { background: #c47a10; color: #fff; text-decoration: none; }
.page-stories .ss-btn-outline {
	background: transparent;
	border: 2px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	font-weight: 700;
	padding: 15px 36px;
	border-radius: 10px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: border-color 0.2s, color 0.2s;
}
.page-stories .ss-btn-outline:hover { border-color: #e8a020; color: #e8a020; text-decoration: none; }

/* ══════════════════════════════
	IMAGE ACCENT BLOCK
══════════════════════════════ */
.page-stories .ss-img-accent {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
}
.page-stories .ss-img-accent img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 380px;
	display: block;
}
.page-stories .ss-img-accent-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 55%);
}
.page-stories .ss-img-accent-label {
	position: absolute;
	bottom: 24px;
	left: 24px;
	color: #fff;
	font-size: 13px;
	font-style: italic;
	opacity: 0.75;
}

/* ══════════════════════════════
	RESPONSIVE
══════════════════════════════ */
@media(max-width: 991px) {
	.page-stories .ss-hero { flex-direction: column; min-height: auto; }
	.page-stories .ss-hero-left { width: 100%; padding: 100px 32px 60px; }
	.page-stories .ss-hero-right { width: 100%; height: 380px; }
	.page-stories .ss-cs-grid { grid-template-columns: 1fr; }
	.page-stories .ss-bento { grid-template-columns: 1fr 1fr; }
	.page-stories .ss-bento-card.dark { grid-column: span 2; }
	.page-stories .ss-cta { padding: 52px 36px; }
}
@media(max-width: 576px) {
	.page-stories .ss-hero-left { padding: 90px 24px 50px; }
	.page-stories .ss-hero-numbers { gap: 24px; }
	.page-stories .ss-bento { grid-template-columns: 1fr; }
	.page-stories .ss-bento-card.dark { grid-column: span 1; }
	.page-stories .ss-cta { padding: 40px 24px; }
	.page-stories .ss-cta-btns { width: 100%; }
	.page-stories .ss-btn-primary, .page-stories .ss-btn-outline { width: 100%; justify-content: center; }
	.page-stories .ss-brand-sep { display: none; }
}
.product-list-filter-row h3 {
min-width: 200px;
margin: 0;
font-size: 24px;
font-weight: 600;
color: #333;
padding-top: 5px; 
}
.product-list-filter-options {
display: flex;
flex-wrap: wrap;
gap: 10px;
flex: 1; 
}

.newsroom-section { padding: 80px 0; background-color: #f8f9fa; }
.newsroom-featured { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.newsroom-featured img { width: 100%; height: 480px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.newsroom-featured:hover img { transform: scale(1.04); }
.newsroom-featured-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); padding: 40px 36px 36px; }
.newsroom-featured-overlay .news-tag { display: inline-block; background: #e8a020; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; margin-bottom: 14px; }
.newsroom-featured-overlay h2 { color: #fff; font-size: 28px; font-weight: 700; line-height: 1.35; margin-bottom: 12px; }
.newsroom-featured-overlay p { color: rgba(255,255,255,0.82); font-size: 15px; margin-bottom: 18px; line-height: 1.65; }
.newsroom-featured-overlay .news-meta { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,0.7); font-size: 13px; }
.newsroom-featured-overlay .news-meta i { margin-right: 5px; color: #e8a020; }
.newsroom-featured-overlay .read-btn { display: inline-block; margin-top: 18px; background: #e8a020; color: #fff; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; letter-spacing: 0.5px; transition: background 0.2s; }
.newsroom-featured-overlay .read-btn:hover { background: #cf8c10; }

.newsroom-subheading { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #e8a020; margin-bottom: 6px; }
.newsroom-heading { font-size: 26px; font-weight: 800; color: #1a1a2e; margin-bottom: 30px; padding-bottom: 14px; border-bottom: 2px solid #e2e2e2; }

.news-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }
.news-card-img { overflow: hidden; height: 220px; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-card-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; background: #fef3e2; color: #e8a020; }
.news-card-body h4 { font-size: 17px; font-weight: 700; color: #1a1a2e; line-height: 1.45; margin-bottom: 10px; }
.news-card-body h4 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.news-card-body h4 a:hover { color: #e8a020; }
.news-card-body p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid #f0f0f0; margin-top: auto; }
.news-card-date { font-size: 12px; color: #999; }
.news-card-date i { margin-right: 4px; color: #e8a020; }
.news-card-link { font-size: 13px; font-weight: 600; color: #e8a020; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.news-card-link:hover { gap: 9px; color: #cf8c10; }

.newsroom-newsletter { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%); border-radius: 16px; padding: 40px 48px; margin-top: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.newsroom-newsletter h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.newsroom-newsletter p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }
.newsroom-newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsroom-newsletter-form input { border: none; border-radius: 8px; padding: 12px 18px; font-size: 14px; min-width: 260px; outline: none; }
.newsroom-newsletter-form button { background: #e8a020; color: #fff; border: none; border-radius: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.newsroom-newsletter-form button:hover { background: #cf8c10; }

@media (max-width: 767px) {
    .newsroom-featured img { height: 280px; }
    .newsroom-featured-overlay h2 { font-size: 20px; }
    .newsroom-newsletter { padding: 28px 22px; }
    .newsroom-newsletter-form input { min-width: 100%; }
}

/* ── Page wrapper ── */
.ws-page {
	min-height: 100vh;
	background: #f7f7f7;
	padding: 120px 0 80px;
}

/* ── Left panel ── */
.ws-page .ws-left {
	background: #0d0d0d;
	border-radius: 24px;
	padding: 52px 44px;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.ws-page .ws-left::before {
	content: '';
	position: absolute;
	top: -80px; right: -80px;
	width: 300px; height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,160,32,0.14), transparent 70%);
}
.ws-page .ws-left::after {
	content: '';
	position: absolute;
	bottom: -60px; left: -60px;
	width: 240px; height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,160,32,0.08), transparent 70%);
}
.ws-page .ws-overline {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #e8a020;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.ws-page .ws-overline::before {
	content: '';
	display: inline-block;
	width: 24px; height: 2px;
	background: #e8a020;
}
.ws-page .ws-left h2 {
	font-size: clamp(26px, 2.5vw, 36px);
	font-weight: 800;
	color: #fff;
	line-height: 1.18;
	margin-bottom: 18px;
}
.ws-page .ws-left h2 em { font-style: normal; color: #e8a020; }
.ws-page .ws-left > p {
	font-size: 15px;
	color: rgba(255,255,255,0.5);
	line-height: 1.8;
	margin-bottom: 36px;
}

/* Why share list */
.ws-page .ws-why-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
}
.ws-page .ws-why-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255,255,255,0.07);
	font-size: 14px;
	color: rgba(255,255,255,0.65);
	line-height: 1.6;
}
.ws-page .ws-why-list li:last-child { border-bottom: none; }
.ws-page .ws-why-icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: rgba(232,160,32,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e8a020;
	font-size: 14px;
	flex-shrink: 0;
}

/* ── Right panel ── */
.ws-page .ws-form-card {
	background: #fff;
	border-radius: 24px;
	padding: 52px 48px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.ws-page .ws-form-card h3 {
	font-size: 24px;
	font-weight: 800;
	color: #111;
	margin-bottom: 6px;
}
.ws-page .ws-form-card > p {
	font-size: 14px;
	color: #999;
	margin-bottom: 36px;
}
.ws-page .ws-form-note {
	font-size: 12px;
	color: #bbb;
	text-align: center;
	margin-top: 14px;
}
.ws-page .wpcf7 label{
	width: 100%;
}
/* ── CF7 field overrides ── */
.ws-page .wpcf7 input[type="text"],
.ws-page .wpcf7 input[type="email"],
.ws-page .wpcf7 input[type="tel"],
.ws-page .wpcf7 select,
.ws-page .wpcf7 textarea {
	width: 100%;
	border: 1.5px solid #e8e8e8;
	border-radius: 10px;
	padding: 13px 16px;
	font-size: 14px;
	color: #333;
	background: #fafafa;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	font-family: inherit;
	appearance: none;
	box-sizing: border-box;
}
.ws-page .wpcf7 input[type="text"]:focus,
.ws-page .wpcf7 input[type="email"]:focus,
.ws-page .wpcf7 input[type="tel"]:focus,
.ws-page .wpcf7 select:focus,
.ws-page .wpcf7 textarea:focus {
	border-color: #e8a020;
	box-shadow: 0 0 0 3px rgba(232,160,32,0.1);
	background: #fff;
}
.ws-page .wpcf7 textarea { resize: vertical; min-height: 120px; }
.ws-page .wpcf7 select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
.ws-page .wpcf7 input[type="submit"] {
	width: 100%;
	background: #e8a020;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 16px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.2s;
	font-family: inherit;
	margin-top: 8px;
}
.ws-page .wpcf7 input[type="submit"]:hover { background: #c47a10; }

/* CF7 checkbox / radio pill tags */
.ws-page .wpcf7 .wpcf7-checkbox .wpcf7-list-item,
.ws-page .wpcf7 .wpcf7-radio .wpcf7-list-item {
	display: inline-flex;
	margin: 0 8px 8px 0;
}
.ws-page .wpcf7 .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"],
.ws-page .wpcf7 .wpcf7-radio .wpcf7-list-item input[type="radio"] { display: none; }
.ws-page .wpcf7 .wpcf7-checkbox .wpcf7-list-item label,
.ws-page .wpcf7 .wpcf7-radio .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 1.5px solid #e8e8e8;
	border-radius: 8px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #555;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
	background: #fafafa;
	user-select: none;
	width: auto;
}
.ws-page .wpcf7 .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked + span label,
.ws-page .wpcf7 .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked + span label {
	border-color: #e8a020;
	background: #fff8ee;
	color: #e8a020;
}

/* CF7 validation messages */
.ws-page .wpcf7 .wpcf7-not-valid-tip { font-size: 12px; color: #e53935; margin-top: 4px; }
.ws-page .wpcf7 .wpcf7-response-output { margin-top: 16px; border-radius: 8px; font-size: 13px; padding: 10px 14px; }

@media(max-width: 991px) {
	.ws-page .ws-left { margin-bottom: 28px; }
	.ws-page .ws-form-card { padding: 36px 28px; }
}
@media(max-width: 576px) {
	.ws-page { padding: 100px 0 60px; }
}
/* Sidebar Mobile Nav Menu */
.sidebar-nav-menu {

    padding-bottom: 20px;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-nav-list > li > a {
    display: block;
    padding: 11px 0;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.sidebar-nav-list > li > a:hover {
    color: var(--primary-color);
}

.sidebar-nav-list li ul {
    list-style: none;
    padding: 0 0 5px 15px;
    margin: 0;
}

.sidebar-nav-list li ul li a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Sidebar Header Icons (Search + Cart) */
.sidebar-header-icons {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 20px;
}

.sidebar-search-btn,
.sidebar-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sidebar-search-btn:hover,
.sidebar-cart-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.sidebar-cart-btn .cart-count {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hide mobile-only sidebar sections on desktop */
@media only screen and (min-width: 992px) {
    .sidebar-nav-menu,
    .sidebar-header-icons {
        display: none;
    }
}

/* Home Quick Search spacing */
.home-quick-search {
    padding-top: 60px;
    padding-bottom: 20px;
}

/* Home Quick Search light grey background */
.home-quick-search {
    background-color: white;
}

/************************************/
/***      Our Brands Section      ***/
/************************************/

.our-brands {
	padding: 100px 0;
	background-color: var(--secondery-color);
}

.brand-card {
	background: var(--primary-color);
	border-radius: 10px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.brand-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.brand-logo {
	background: var(--white-color);
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-logo figure {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-logo figure img {
	max-height: 80px;
	min-height: 80px;
	width: auto;
	object-fit: contain;
}

.brand-content {
	padding: 36px 36px 40px;
}

.brand-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 14px;
}

.brand-content > p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.65;
	margin-bottom: 24px;
}

.brand-items {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.brand-items li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	padding: 10px 0;
	border-bottom: 1px solid var(--dark-divider-color);
}

.brand-items li:first-child {
	border-top: 1px solid var(--dark-divider-color);
}

.brand-items li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--accent-color);
	flex-shrink: 0;
}

.btn-border {
	display: inline-block;
	padding: 14px 30px;
	font-size: 15px;
	font-weight: 600;
	color: var(--white-color);
	border: 2px solid var(--accent-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	line-height: 1em;
}

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

@media only screen and (max-width: 991px) {
	.our-brands {
		padding: 50px 0;
	}

	.brand-card {
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.brand-logo {
		padding: 28px;
	}

	.brand-content {
		padding: 28px 24px 32px;
	}

	.brand-content h3 {
		font-size: 20px;
	}
}

/* Content Page (Terms & Conditions, Privacy Policy) */
.page-content-section {
	padding: 80px 0;
}

.content-page-body h2 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 12px;
}

.content-page-body h3 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 28px;
	margin-bottom: 10px;
}

.content-page-body p {
	margin-bottom: 16px;
	line-height: 1.8;
}

.content-page-body ul,
.content-page-body ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.content-page-body ul li,
.content-page-body ol li {
	margin-bottom: 8px;
	line-height: 1.8;
}

.content-page-body a {
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	.page-content-section {
		padding: 50px 0;
	}
	.footer-copyright-text p{
        text-align: center !important;
    }
}

@media only screen and (min-width: 768px) {
	.home .project-item.product-center-card .project-content h3 a, .page-template-page-vehicles .project-item.product-center-card .project-content h3 a {

		display: -webkit-box;
		-webkit-line-clamp: 1; 
		-webkit-box-orient: vertical;  
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: normal;
		word-break: break-all;

	}
}

/************************************/
/***     Shiftix App Section      ***/
/************************************/

.shiftix-app-section {
    padding: 60px 0;
    background: var(--secondery-color);
    position: relative;
    overflow: hidden;
}

.shiftix-app-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,114,42,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.shiftix-app-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,114,42,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Section title tweak */
.sas-section-title {
    margin-bottom: 10px;
}

.sas-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #D4722A;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* ---- Step Flow ---- */
.sas-step-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 25px 0 30px;
    background: #fff;
    border-radius: 60px;
    padding: 16px 30px;
    box-shadow: 0 4px 24px rgba(25,35,36,0.07);
    border: 1px solid var(--divider-color);
}

.sas-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.sas-step-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fdf0e6;
    color: #D4722A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.sas-step:hover .sas-step-icon {
    background: #D4722A;
    color: #fff;
}

.sas-step-last .sas-step-icon {
    background: #D4722A;
    color: #fff;
}

.sas-step-arrow {
    color: var(--accent-color);
    font-size: 13px;
    opacity: 0.5;
}

/* ---- Horizontal Slider ---- */
.sas-slider-outer {
    position: relative;
    margin-top: 10px;
}

.sas-slider-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sas-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sas-slide {
    flex: 0 0 100%;
    width: 100%;
   /* padding: 50px 80px; */
    box-sizing: border-box;
}

.sas-slide-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.sas-slide-inner-reverse {
    flex-direction: row-reverse;
}

.sas-slide-phone {
    flex: 0 0 310px;
    width: 300px;
}

.sas-slide-content {
    flex: 1;
    min-width: 0;
}

/* Nav Buttons — overlaid inside viewport */
.sas-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #D4722A;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(25,35,36,0.15);
    transition: background 0.3s, color 0.3s, transform 0.2s, opacity 0.3s;
    outline: none;
    z-index: 10;
}

.sas-nav-prev { left: 40px; }
.sas-nav-next { right: 40px; }

.sas-nav-btn:hover {
    background: #D4722A;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* Dots */
.sas-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.sas-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--divider-color);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.sas-dot-active {
    background: #D4722A;
    transform: scale(1.3);
}

/* ---- Phone Mockup ---- */
.sas-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.sas-phone-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212,114,42,0.16) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.sas-phone {
    position: relative;
    width: 240px;
    background: var(--primary-color);
    border-radius: 40px;
    padding: 12px 12px 20px;
    box-shadow: 0 30px 80px rgba(25,35,36,0.28), 0 0 0 2px rgba(255,255,255,0.08);
    z-index: 1;
}

.sas-phone-notch {
    width: 90px;
    height: 22px;
    background: #0d1a1b;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 10px;
}

.sas-phone-screen {
    background: #fdf8f4;
    border-radius: 28px;
    padding: 16px 14px;
    min-height: 390px;
}

.sas-phone-home {
    width: 60px;
    height: 5px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    margin: 12px auto 0;
}

/* App screen shared elements */
.sas-app-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sas-app-logo {
    width: 26px;
    height: 26px;
    background: #D4722A;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    margin-right: 6px;
    flex-shrink: 0;
}

.sas-app-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-color);
    flex: 1;
}

.sas-app-bell {
    font-size: 13px;
    color: var(--accent-color);
}

.sas-screen-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--divider-color);
}

/* Tickets */
.sas-app-tickets {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 12px;
}

.sas-ticket-row {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border-radius: 9px;
    padding: 7px 9px;
    box-shadow: 0 2px 6px rgba(25,35,36,0.05);
}

.sas-tkt-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sas-dot-open     { background: #f59e42; }
.sas-dot-progress { background: #D4722A; }
.sas-dot-done     { background: #4caf7d; }

.sas-tkt-label {
    flex: 1;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.sas-tkt-badge {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}
.sas-tkt-badge.open     { background: #fff4e8; color: #f59e42; }
.sas-tkt-badge.progress { background: #fdf0e6; color: #D4722A; }

.sas-tkt-badge.done     { background: #edfbf3; color: #4caf7d; }

.sas-app-raise-btn {
    background: linear-gradient(135deg, #D4722A, #b05a1e);
    color: #fff;
    border-radius: 10px;
    padding: 9px 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.sas-app-raise-btn i { margin-right: 4px; }

/* Vehicle card */
.sas-vc-status {
    font-size: 9px;
    font-weight: 700;
    background: rgba(212,114,42,0.18);
    color: #f59e42;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Engineer card */
.sas-engineer-card {
    background: var(--primary-color);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sas-eng-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e42;
    font-size: 16px;
    flex-shrink: 0;
}

.sas-eng-info { flex: 1; }
.sas-eng-info h4 { font-size: 12px; color: #fff; margin: 0 0 2px; line-height: 1; }
.sas-eng-info p  { font-size: 10px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1; }

.sas-eng-eta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fdf0e6;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 11px;
    color: #D4722A;
    margin-bottom: 10px;
}

.sas-eng-eta strong { font-weight: 700; }

/* History list */
.sas-history-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 12px;
}

.sas-history-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 9px;
    padding: 8px 9px;
    box-shadow: 0 2px 6px rgba(25,35,36,0.05);
}

.sas-hist-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fdf0e6;
    color: #D4722A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.sas-hist-info { flex: 1; }
.sas-hist-info h5 { font-size: 10px; font-weight: 700; color: var(--primary-color); margin: 0 0 1px; line-height: 1; }
.sas-hist-info p  { font-size: 9px;  color: var(--accent-color); margin: 0; line-height: 1; }

/* ---- Content Side ---- */
.sas-content-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #D4722A;
    background: #fdf0e6;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sas-row-content h3,
.sas-slide-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2em;
    margin-bottom: 16px;
}

.sas-row-content > p,
.sas-slide-content > p {
    font-size: 15px;
    color: var(--accent-color);
    line-height: 1.8em;
    margin-bottom: 24px;
}

.sas-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sas-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

.sas-feature-list li i {
    color: #D4722A;
    font-size: 16px;
    flex-shrink: 0;
}

/* ---- CTA ---- */
.sas-cta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sas-cta-note {
    font-size: 13px;
    color: var(--accent-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sas-cta-note i { color: #D4722A; }


/* ---- Responsive ---- */
@media (max-width: 991px) {
    .shiftix-app-section { padding: 60px 0; }

    .sas-step-flow {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-radius: 20px;
        padding: 20px;
        gap: 14px;
    }

    .sas-step-arrow { display: none; }

    .sas-row-content h3,
    .sas-slide-content h3 { font-size: 26px; }
}

@media (max-width: 768px) {
    .sas-slide { padding: 30px 10px; }

    .sas-slide-inner,
    .sas-slide-inner-reverse {
        flex-direction: column !important;
        gap: 30px;
    }

    .sas-slide-phone {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .sas-slide-content h3 { font-size: 22px; }

    .sas-nav-btn { width: 38px; height: 38px; font-size: 14px; }
}

@media (max-width: 575px) {
    .sas-step-flow { grid-template-columns: repeat(2, 1fr); }

    .sas-phone { width: 220px; }

    .sas-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/************************************/
/***   About Page – New Sections  ***/
/************************************/


/* ══════════════════════════════════════
   1. STATS STRIP
   ══════════════════════════════════════ */
.ab-stats-strip {
    background-color: var(--primary-color);
    overflow: hidden;
}

.ab-stats-inner {
    display: flex;
    flex-wrap: wrap;
}

.ab-stat-block {
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    border-right: 1px solid var(--dark-divider-color);
    transition: background 0.35s ease;
    text-align: center;
}

.ab-stat-block:last-child {
    border-right: none;
}

.ab-stat-block:hover {
    background-color: rgba(124, 135, 127, 0.15);
}

.ab-stat-num {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: var(--white-color);
    letter-spacing: -2px;
}

.ab-stat-num sup {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    vertical-align: super;
}

.ab-stat-sep {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 16px auto;
    transition: width 0.35s ease;
}

.ab-stat-block:hover .ab-stat-sep {
    width: 70px;
}

.ab-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}


/* ══════════════════════════════════════
   2. HOW IT WORKS — PROCESS FLOW
   ══════════════════════════════════════ */
.ab-process-section {
    padding: 100px 0;
    background-color: var(--secondery-color);
    overflow: hidden;
}

.ab-process-head {
    margin-bottom: 70px;
}

.ab-process-head h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.ab-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.ab-process-flow {
    position: relative;
    display: flex;
    gap: 0;
}

.ab-process-track {
    position: absolute;
    top: 44px;
    left: calc(12.5% + 44px);
    right: calc(12.5% + 44px);
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--accent-color) 0,
        var(--accent-color) 8px,
        transparent 8px,
        transparent 20px
    );
    z-index: 0;
}

.ab-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.ab-step-bubble {
    position: relative;
    width: 88px;
    height: 88px;
    background-color: var(--white-color);
    border: 2px solid var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.ab-process-step:hover .ab-step-bubble {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.ab-step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background-color: var(--accent-color);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-step-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: color 0.4s ease;
}

.ab-process-step:hover .ab-step-icon i {
    color: var(--white-color);
}

.ab-step-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.ab-step-body p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}


/* ══════════════════════════════════════
   3. WHY CHOOSE US — EDITORIAL SPLIT
   ══════════════════════════════════════ */
.ab-why-section {
    padding: 0;
    background: var(--white-color);
}

.ab-why-left {
    background-color: var(--primary-color);
    padding: 80px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ab-why-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1.25;
    margin-bottom: 20px;
}

.ab-why-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 0;
}

.ab-why-left .ab-section-tag {
    color: var(--accent-color);
}

.ab-why-left .btn-default {
    align-self: flex-start;
}

.ab-why-list {
    display: flex;
    flex-direction: column;
}

.ab-why-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 50px;
    border-bottom: 1px solid var(--divider-color);
    position: relative;
    transition: background 0.3s ease;
}

.ab-why-item:last-child {
    border-bottom: none;
}

.ab-why-item:hover {
    background-color: var(--secondery-color);
}

.ab-why-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    min-width: 28px;
    padding-top: 4px;
}

.ab-why-body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.ab-why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.ab-why-item:hover .ab-why-icon {
    background-color: var(--accent-color);
}

.ab-why-icon i {
    font-size: 20px;
    color: var(--accent-color);
    transition: color 0.35s ease;
}

.ab-why-item:hover .ab-why-icon i {
    color: var(--white-color);
}

.ab-why-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.ab-why-text p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.75;
    margin: 0;
}


/* ══════════════════════════════════════
   4. TEAM — MAGAZINE OVERLAY CARDS
   ══════════════════════════════════════ */
.ab-team-section {
    padding: 100px 0;
    background-color: var(--secondery-color);
}

.ab-team-intro {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.ab-team-card {
    margin-bottom: 30px;
}

.ab-team-photo {
    position: relative;
    overflow: hidden;
    background-color: var(--divider-color);
}

.ab-team-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, var(--divider-color) 0%, #d0dbd2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-team-placeholder i {
    font-size: 72px;
    color: var(--accent-color);
    opacity: 0.5;
}

.ab-team-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.ab-team-card:hover .ab-team-photo img,
.ab-team-card:hover .ab-team-placeholder {
    transform: scale(1.04);
}

.ab-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(25,35,36,0.92) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px 24px;
}

.ab-team-card:hover .ab-team-overlay {
    opacity: 1;
}

.ab-team-overlay-inner {
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.ab-team-card:hover .ab-team-overlay-inner {
    transform: translateY(0);
}

.ab-team-overlay-inner p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ab-team-social {
    display: flex;
    gap: 10px;
}

.ab-team-social a {
    width: 34px;
    height: 34px;
    background-color: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 12px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.ab-team-social a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.ab-team-info {
    padding: 20px 4px 0;
}

.ab-team-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    text-transform: capitalize;
}

.ab-team-info span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 500;
}


/* ══════════════════════════════════════
   5. CTA — TWO-PANEL SPLIT BANNER
   ══════════════════════════════════════ */
.ab-cta-split {
    display: flex;
    min-height: 380px;
}

.ab-cta-dark,
.ab-cta-accent {
    flex: 1;
    display: flex;
    align-items: center;
}

.ab-cta-dark {
    background-color: var(--primary-color);
    padding: 80px 70px;
}

.ab-cta-dark-inner h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1.25;
    margin-bottom: 16px;
}

.ab-cta-dark-inner p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin: 0;
}

.ab-tag-light {
    color: var(--accent-color) !important;
}

.ab-cta-accent {
    background-color: var(--accent-color);
    padding: 80px 70px;
}

.ab-cta-accent-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.ab-cta-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-cta-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.ab-cta-btn {
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--white-color) !important;
}

.ab-cta-btn:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
}

.ab-cta-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.ab-cta-link:hover {
    color: var(--white-color);
    gap: 14px;
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1199px) {
    .ab-stat-num { font-size: 56px; }
    .ab-why-left { padding: 60px 40px; }
    .ab-why-item { padding: 30px 40px; }
    .ab-cta-dark,
    .ab-cta-accent { padding: 60px 50px; }
}

@media (max-width: 991px) {
    .ab-stat-block { flex: 1 1 50%; border-bottom: 1px solid var(--dark-divider-color); }
    .ab-stat-block:nth-child(2) { border-right: none; }
    .ab-stat-block:nth-child(3),
    .ab-stat-block:nth-child(4) { border-bottom: none; }

    .ab-process-track { display: none; }
    .ab-process-flow { flex-wrap: wrap; }
    .ab-process-step { flex: 1 1 50%; padding-bottom: 40px; }

    .ab-why-left { padding: 60px 30px; }
    .ab-why-item { padding: 28px 30px; }

    .ab-cta-split { flex-direction: column; }
    .ab-cta-dark,
    .ab-cta-accent { padding: 60px 40px; }
}

@media (max-width: 767px) {
    .ab-stat-block { flex: 1 1 100%; border-right: none; }
    .ab-stat-num { font-size: 48px; }

    .ab-process-step { flex: 1 1 100%; }

    .ab-why-item { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .ab-why-body { flex-direction: column; gap: 14px; }

    .ab-process-head h2,
    .ab-why-left h2 { font-size: 30px; }

    .ab-cta-dark-inner h2 { font-size: 26px; }
    .ab-cta-dark, .ab-cta-accent { padding: 50px 30px; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — REDESIGNED CONTENT SECTIONS
   ══════════════════════════════════════════════════════════ */

/* ── Split Section (two_column_section 1 & 3) ── */
.ab-split-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ab-split-section.ab-split-alt {
    background-color: var(--secondery-color);
}

.ab-split-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.ab-split-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: var(--accent-color);
    flex-shrink: 0;
}

.ab-split-label.ab-split-label-light {
    color: rgba(255,255,255,0.6);
}

.ab-split-label.ab-split-label-light::before {
    background-color: var(--accent-color);
}

.ab-split-content h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.ab-split-divider {
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 28px 0;
}

.ab-split-divider.ab-divider-light {
    background-color: rgba(255,255,255,0.35);
}

.ab-split-content p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
    margin: 0;
}

.ab-split-image {
    position: relative;
}

.ab-split-image figure {
    display: block;
    position: relative;
    margin: 0;
    z-index: 1;
}

.ab-split-image figure::after {
    content: '';
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 2px solid var(--divider-color);
    z-index: -1;
    transition: inset 0.4s ease;
}

.ab-split-alt .ab-split-image figure::after {
    inset: 22px 22px -22px -22px;
}

.ab-split-image:hover figure::after {
    inset: 10px -10px -10px 10px;
}

.ab-split-alt .ab-split-image:hover figure::after {
    inset: 10px 10px -10px -10px;
}

.ab-split-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}


/* ── Story Section (two_column_section 2 & 4) ── */
.ab-story-section {
    overflow: hidden;
}

.ab-story-image {
    min-height: 560px;
    height: 100%;
}

.ab-story-image figure {
    display: block;
    height: 100%;
    margin: 0;
}

.ab-story-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ab-story-content-wrap {
    background-color: var(--primary-color);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 70px;
}

.ab-story-inner {
    width: 100%;
}

.ab-story-inner h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.ab-story-inner p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.7);
    margin: 0;
}


/* ── Responsive ── */
@media (max-width: 1199px) {
    .ab-split-content h2 { font-size: 38px; }
    .ab-story-inner h2 { font-size: 34px; }
    .ab-story-content-wrap { padding: 60px 50px; }
}

@media (max-width: 991px) {
    .ab-split-section { padding: 70px 0; }

    .ab-split-image figure::after,
    .ab-split-alt .ab-split-image figure::after { display: none; }

    .ab-story-image { min-height: 420px; }
    .ab-story-content-wrap { padding: 60px 40px; }
    .ab-story-inner h2 { font-size: 30px; }
}

@media (max-width: 767px) {
    .ab-split-section { padding: 60px 0; }
    .ab-split-content h2 { font-size: 30px; }
    .ab-split-content p { font-size: 15px; }

    .ab-story-image { min-height: 300px; }
    .ab-story-content-wrap { padding: 50px 30px; }
    .ab-story-inner h2 { font-size: 26px; }
    .ab-story-inner p { font-size: 15px; }
}


/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — EDITORIAL REDESIGN  (abn-*)
   ══════════════════════════════════════════════════════════ */

/* ── Shared tokens ── */
.abn-ghost-num {
    font-size: 200px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--divider-color);
    position: absolute;
    top: -30px;
    right: -10px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.abn-ghost-num.abn-ghost-light {
    -webkit-text-stroke-color: rgba(255,255,255,0.06);
}

.abn-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.abn-tag::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--accent-color);
    flex-shrink: 0;
}

.abn-tag.abn-tag-light {
    color: rgba(255,255,255,0.55);
}

.abn-tag.abn-tag-light::before {
    background: var(--accent-color);
}

.abn-rule {
    width: 48px;
    height: 3px;
    background: var(--accent-color);
    margin: 26px 0 28px;
}

.abn-rule.abn-rule-light {
    background: rgba(255,255,255,0.3);
}


/* ── INTRO SECTION ── */
.abn-intro {
    position: relative;
    overflow: hidden;
}

.abn-intro-img-col {
    min-height: 680px;
}

.abn-intro-images {
    position: relative;
    height: 100%;
}

.abn-intro-images > figure {
    display: block;
    height: 100%;
    margin: 0;
}

.abn-intro-images > figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abn-intro-badge {
    position: absolute;
    bottom: 50px;
    right: -24px;
    width: 210px;
    z-index: 2;
    border: 6px solid var(--white-color);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.abn-intro-badge img {
    width: 100%;
    display: block;
}

.abn-intro-content {
    position: relative;
    overflow: hidden;
    padding: 80px 70px 80px 70px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Feature chips */
.abn-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.abn-chip {
    padding: 8px 20px;
    border: 1.5px solid var(--divider-color);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: default;
}

.abn-chip:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* Contact strip */
.abn-contact-strip {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    padding-top: 28px;
    border-top: 1px solid var(--divider-color);
}

.abn-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.abn-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.abn-contact-item:hover .abn-contact-icon {
    background: var(--primary-color);
}

.abn-contact-icon i {
    font-size: 16px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.abn-contact-item:hover .abn-contact-icon i {
    color: var(--white-color);
}

.abn-contact-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.abn-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 500;
}

.abn-contact-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.abn-contact-val:hover {
    color: var(--accent-color);
}


/* ── PILLARS SECTION ── */
.abn-pillars {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-color) 55%, var(--secondery-color) 45%);
}

.abn-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    background: var(--white-color);
    box-shadow: 0 24px 70px rgba(0,0,0,0.10);
}

.abn-pillar-card {
    padding: 50px 38px 44px;
    border-right: 1px solid var(--divider-color);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.abn-pillar-card:last-child {
    border-right: none;
}

.abn-pillar-card:hover {
    background: var(--primary-color);
}

.abn-pillar-num {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--divider-color);
    position: absolute;
    top: 8px;
    right: 16px;
    line-height: 1;
    pointer-events: none;
    transition: -webkit-text-stroke-color 0.4s ease;
}

.abn-pillar-card:hover .abn-pillar-num {
    -webkit-text-stroke-color: rgba(255,255,255,0.08);
}

.abn-pillar-icon {
    width: 68px;
    height: 68px;
    background: var(--secondery-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: background 0.4s ease;
}

.abn-pillar-card:hover .abn-pillar-icon {
    background: rgba(255,255,255,0.1);
}

.abn-pillar-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: color 0.4s ease;
}

.abn-pillar-card:hover .abn-pillar-icon i {
    color: var(--white-color);
}

.abn-pillar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.abn-pillar-card:hover h3 {
    color: var(--white-color);
}

.abn-pillar-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.abn-pillar-card:hover p {
    color: rgba(255,255,255,0.65);
}


/* ── FEATURE SECTION ── */
.abn-feature {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.abn-feature.abn-feature-tinted {
    background-color: var(--secondery-color);
}

.abn-feature-content {
    position: relative;
    z-index: 1;
}

.abn-feature-content h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.abn-feature-content p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
    margin: 0;
}

.abn-feature-img {
    position: relative;
}

.abn-feature-img figure {
    display: block;
    margin: 0;
    position: relative;
    z-index: 1;
}

.abn-feature-img img {
    width: 100%;
    display: block;
}

/* Decorative corner bracket */
.abn-img-deco {
    position: absolute;
    width: 55%;
    height: 55%;
    border: 2px solid var(--divider-color);
    z-index: 0;
    transition: all 0.4s ease;
}

.abn-img-deco.abn-deco-tr {
    top: -16px;
    right: -16px;
}

.abn-img-deco.abn-deco-bl {
    bottom: -16px;
    left: -16px;
}

.abn-feature-img:hover .abn-img-deco.abn-deco-tr {
    top: -8px;
    right: -8px;
}

.abn-feature-img:hover .abn-img-deco.abn-deco-bl {
    bottom: -8px;
    left: -8px;
}


/* ── FULLIMAGE SECTION ── */
.abn-fullimage {
    overflow: hidden;
}

.abn-fullimage-photo {
    position: relative;
    min-height: 580px;
    height: 100%;
}

.abn-fullimage-photo > figure {
    display: block;
    height: 100%;
    margin: 0;
}

.abn-fullimage-photo > figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.abn-fullimage:hover .abn-fullimage-photo > figure img {
    transform: scale(1.04);
}

.abn-photo-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25,35,36,0.25) 0%, transparent 55%);
    pointer-events: none;
}

.abn-fullimage-content {
    background-color: var(--primary-color);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 90px 80px;
    position: relative;
    overflow: hidden;
}

.abn-fullimage-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.abn-fullimage-inner h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.abn-fullimage-inner p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.68);
    margin: 0;
}


/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
    .abn-ghost-num { font-size: 150px; }
    .abn-intro-content { padding: 70px 50px; }
    .abn-feature-content h2 { font-size: 38px; }
    .abn-fullimage-content { padding: 70px 55px; }
    .abn-fullimage-inner h2 { font-size: 36px; }
}

@media (max-width: 991px) {
    .abn-intro-img-col { min-height: 480px; }
    .abn-intro-content { padding: 60px 40px; }
    .abn-intro-badge { display: none; }
    .abn-pillars { background: var(--secondery-color); padding: 70px 0; }
    .abn-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .abn-pillar-card { border-bottom: 1px solid var(--divider-color); }
    .abn-feature { padding: 70px 0; }
    .abn-img-deco { display: none; }
    .abn-fullimage-photo { min-height: 420px; }
    .abn-fullimage-content { padding: 60px 40px; }
    .abn-fullimage-inner h2 { font-size: 30px; }
}

@media (max-width: 767px) {
    .abn-ghost-num { font-size: 100px; }
    .abn-intro-img-col { min-height: 360px; }
    .abn-intro-content { padding: 50px 24px; }
    .abn-contact-strip { flex-direction: column; gap: 18px; }
    .abn-pillars-grid { grid-template-columns: 1fr; }
    .abn-pillar-card { border-right: none; }
    .abn-feature { padding: 60px 0; }
    .abn-feature-content h2 { font-size: 30px; }
    .abn-fullimage-photo { min-height: 300px; }
    .abn-fullimage-content { padding: 50px 24px; }
    .abn-fullimage-inner h2 { font-size: 26px; }
    .abn-fullimage-inner p { font-size: 15px; }
}


/* ══════════════════════════════════════════════════════════
   ABOUT PAGE v2 — BOLD EDITORIAL  (abn2-*)
   ══════════════════════════════════════════════════════════ */

/* ── INTRO HERO ── */
.abn2-intro { position: relative; overflow: hidden; }

.abn2-intro-media {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}
.abn2-intro-media figure { height: 100%; margin: 0; display: block; }
.abn2-intro-media figure img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.9s ease;
}
.abn2-intro:hover .abn2-intro-media figure img { transform: scale(1.04); }

/* Diagonal right-edge cut bleeding into content panel */
.abn2-intro-media::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: -1px;
    width: 90px;
    background: var(--white-color);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
    pointer-events: none;
}

/* Floating badge from image_2 */
.abn2-float-badge {
    position: absolute;
    bottom: 50px;
    left: 36px;
    z-index: 3;
    width: 200px;
    border: 5px solid var(--white-color);
    box-shadow: 0 16px 50px rgba(0,0,0,0.22);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.abn2-float-badge:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.abn2-float-badge img { width: 100%; display: block; }

/* Accent border strip at top of media column */
.abn2-intro-media::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 70%);
    z-index: 4;
}

/* Right content */
.abn2-intro-content {
    padding: 90px 72px 90px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    background: var(--white-color);
}

/* Ghost number */
.abn2-ghost {
    font-size: 220px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--divider-color);
    position: absolute;
    top: -20px;
    right: -10px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Eyebrow */
.abn2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.abn2-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
}

.abn2-intro-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--primary-color);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.abn2-intro-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Chips */
.abn2-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
    position: relative;
    z-index: 1;
}
.abn2-chip {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 40px;
    background: var(--secondery-color);
    color: var(--primary-color);
    border: 1.5px solid transparent;
    transition: all 0.3s;
    cursor: default;
}
.abn2-chip:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Contact row */
.abn2-contact-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--divider-color);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.abn2-contact-card { display: flex; align-items: center; gap: 14px; }
.abn2-contact-ico {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--secondery-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}
.abn2-contact-card:hover .abn2-contact-ico { background: var(--primary-color); transform: scale(1.08); }
.abn2-contact-ico i { font-size: 18px; color: var(--accent-color); transition: color 0.3s; }
.abn2-contact-card:hover .abn2-contact-ico i { color: var(--white-color); }
.abn2-contact-info { display: flex; flex-direction: column; gap: 3px; }
.abn2-contact-info small { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-color); }
.abn2-contact-info a { font-size: 15px; font-weight: 700; color: var(--primary-color); text-decoration: none; transition: color 0.3s; }
.abn2-contact-info a:hover { color: var(--accent-color); }


/* ── PILLARS — glassmorphism on dark gradient ── */
.abn2-pillars {
    padding: 110px 0;
    background: linear-gradient(160deg, var(--primary-color) 60%, #152627 100%);
    position: relative;
    overflow: hidden;
}
.abn2-pillars-bg-text {
    position: absolute;
    font-size: 280px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -10px;
}
.abn2-pillars-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.abn2-pillars-header .abn2-eyebrow {
    justify-content: center;
    color: rgba(255,255,255,0.45);
}
.abn2-pillars-header .abn2-eyebrow::before { background: var(--accent-color); }
.abn2-pillars-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 14px;
}
.abn2-pillars-header p { color: rgba(255,255,255,0.45); font-size: 15px; margin: 0; }

.abn2-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}
.abn2-pillar-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(10px);
    padding: 44px 34px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, transform 0.35s, box-shadow 0.4s;
}
.abn2-pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.5;
    transition: opacity 0.4s;
}
.abn2-pillar-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.abn2-pillar-card:hover::before { opacity: 1; }

.abn2-pillar-num {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    position: absolute;
    top: 0; right: 14px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: -webkit-text-stroke-color 0.4s;
}
.abn2-pillar-card:hover .abn2-pillar-num { -webkit-text-stroke-color: rgba(255,255,255,0.12); }

.abn2-pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.35s;
}
.abn2-pillar-card:hover .abn2-pillar-icon { transform: scale(1.1) rotate(-4deg); }
.abn2-pillar-icon i { font-size: 26px; color: var(--white-color); }
.abn2-pillar-card h3 {
    font-size: 20px; font-weight: 700; color: var(--white-color);
    margin-bottom: 14px; position: relative; z-index: 1;
}
.abn2-pillar-card p {
    font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.52);
    margin: 0; position: relative; z-index: 1;
    transition: color 0.4s;
}
.abn2-pillar-card:hover p { color: rgba(255,255,255,0.72); }


/* ── FEATURE SECTION ── */
.abn2-feature {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.abn2-feature.abn2-tinted { background: var(--secondery-color); }

.abn2-feature-text { position: relative; z-index: 1; }
.abn2-feature-overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.abn2-feature-overline::before { content: ''; width: 30px; height: 2px; background: currentColor; flex-shrink: 0; }

.abn2-feature-text h2 {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 0;
}
.abn2-accent-line {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
    margin: 26px 0 28px;
}
.abn2-feature-text p { font-size: 16px; line-height: 1.9; color: var(--text-color); margin: 0; }

/* Image frame with color bracket accents */
.abn2-img-frame { position: relative; }
.abn2-img-frame figure { display: block; margin: 0; position: relative; z-index: 1; }
.abn2-img-frame img { width: 100%; display: block; border-radius: 4px; }
.abn2-img-bracket-tr {
    position: absolute;
    top: -18px; right: -18px;
    width: 45%;
    height: 45%;
    border-top: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}
.abn2-img-bracket-bl {
    position: absolute;
    bottom: -18px; left: -18px;
    width: 45%;
    height: 45%;
    border-bottom: 3px solid var(--accent-color);
    border-left: 3px solid var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}
.abn2-img-frame:hover .abn2-img-bracket-tr { top: -8px; right: -8px; }
.abn2-img-frame:hover .abn2-img-bracket-bl { bottom: -8px; left: -8px; }


/* ── FULLIMAGE SECTIONS ── */
.abn2-fullimage { overflow: hidden; position: relative; }

.abn2-fullimage-photo {
    position: relative;
    min-height: 600px;
    height: 100%;
    overflow: hidden;
}
.abn2-fullimage-photo figure { display: block; height: 100%; margin: 0; }
.abn2-fullimage-photo figure img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.8s ease;
}
.abn2-fullimage:hover .abn2-fullimage-photo figure img { transform: scale(1.05); }

.abn2-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,20,20,0.3) 0%, transparent 65%);
    pointer-events: none;
}

/* Dark editorial content panel */
.abn2-panel {
    background: linear-gradient(160deg, #0f1e1f 0%, var(--primary-color) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 90px 80px;
    position: relative;
    overflow: hidden;
}
/* Decorative large quote mark */
.abn2-panel::before {
    content: '"';
    position: absolute;
    font-size: 420px;
    line-height: 0.7;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.03);
    top: 10px; left: 20px;
    pointer-events: none;
    user-select: none;
}

.abn2-panel-inner { position: relative; z-index: 1; width: 100%; }

.abn2-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}
.abn2-panel-tag::before { content: ''; width: 30px; height: 1.5px; background: var(--accent-color); flex-shrink: 0; }

.abn2-panel-inner h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--white-color);
    margin-bottom: 0;
}
.abn2-panel-rule {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin: 26px 0 28px;
}
.abn2-panel-inner p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.abn2-panel-ghost {
    position: absolute;
    bottom: -15px; right: -5px;
    font-size: 180px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}


/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
    .abn2-intro-content { padding: 70px 50px; }
    .abn2-intro-content h2 { font-size: 44px; }
    .abn2-ghost { font-size: 170px; }
    .abn2-feature-text h2 { font-size: 38px; }
    .abn2-panel-inner h2 { font-size: 38px; }
    .abn2-panel { padding: 70px 55px; }
}

@media (max-width: 991px) {
    .abn2-intro-media { min-height: 480px; }
    .abn2-intro-media::after { display: none; }
    .abn2-intro-content { padding: 60px 40px; }
    .abn2-ghost { font-size: 130px; }
    .abn2-pillars { padding: 70px 0; }
    .abn2-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .abn2-feature { padding: 70px 0; }
    .abn2-img-bracket-tr, .abn2-img-bracket-bl { display: none; }
    .abn2-fullimage-photo { min-height: 420px; }
    .abn2-panel { padding: 60px 40px; }
    .abn2-panel-inner h2 { font-size: 30px; }
    .abn2-panel-ghost { display: none; }
}

@media (max-width: 767px) {
    .abn2-intro-content { padding: 50px 24px; }
    .abn2-intro-content h2 { font-size: 36px; }
    .abn2-ghost { font-size: 100px; }
    .abn2-float-badge { width: 150px; bottom: 20px; left: 20px; }
    .abn2-contact-row { flex-direction: column; gap: 18px; }
    .abn2-pillars-grid { grid-template-columns: 1fr; }
    .abn2-feature { padding: 60px 0; }
    .abn2-feature-text h2 { font-size: 30px; }
    .abn2-fullimage-photo { min-height: 300px; }
    .abn2-panel { padding: 50px 24px; }
    .abn2-panel-inner h2 { font-size: 26px; }
    .abn2-panel-inner p { font-size: 15px; }
    .abn2-pillars-header h2 { font-size: 32px; }
}


/* ============================================================
   ABOUT PAGE — sx- prefix (Shiftix About Sections)
   Blue accent: #2563eb  |  Dark: #0f172a
   ============================================================ */

/* ----------------------------------------------------------
   0. LOCAL VARIABLES
   ---------------------------------------------------------- */
:root {
    --sx-blue          : #2563eb;
    --sx-blue-light    : #3b82f6;
    --sx-blue-glow     : rgba(37, 99, 235, 0.15);
    --sx-dark          : #0f172a;
    --sx-dark-2        : #1e293b;
    --sx-dark-3        : #334155;
    --sx-muted         : #64748b;
    --sx-light         : #f8fafc;
    --sx-light-2       : #e2e8f0;
    --sx-radius        : 16px;
    --sx-radius-sm     : 10px;
    --sx-shadow        : 0 4px 24px rgba(15,23,42,0.08);
    --sx-shadow-md     : 0 8px 40px rgba(15,23,42,0.12);
    --sx-shadow-blue   : 0 8px 32px rgba(37,99,235,0.18);
    --sx-transition    : all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------
   1. SHARED SECTION HEADER
   ---------------------------------------------------------- */
.sx-section-header {
    margin-bottom: 60px;
}
.sx-section-header h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sx-blue);
    margin-bottom: 14px;
}
.sx-section-header h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--sx-blue);
    border-radius: 2px;
}
.sx-section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--sx-dark);
    margin-bottom: 18px;
    line-height: 1.15;
}
.sx-section-header p {
    font-size: 17px;
    color: var(--sx-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ----------------------------------------------------------
   2. HERO SECTION
   ---------------------------------------------------------- */
.sx-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.sx-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(37, 99, 235, 0.55) 100%
    );
    z-index: 1;
}
.sx-hero .container {
    position: relative;
    z-index: 2;
}
.sx-hero__inner {
    padding: 120px 0 80px;
}
.sx-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
}
.sx-breadcrumb a {
    color: rgba(255,255,255,0.75);
    transition: var(--sx-transition);
}
.sx-breadcrumb a:hover {
    color: #ffffff;
}
.sx-breadcrumb__sep {
    font-size: 10px;
    opacity: 0.5;
}
.sx-hero__title {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.sx-hero__subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 0;
}
.sx-hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.sx-hero__scroll-indicator span {
    display: block;
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    margin: 0 auto;
    animation: sx-scrollPulse 1.8s ease-in-out infinite;
}
@keyframes sx-scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%       { opacity: 1;   transform: scaleY(1); }
}

/* ----------------------------------------------------------
   3. COMPANY INTRODUCTION
   ---------------------------------------------------------- */
.sx-intro {
    padding: 100px 0;
    background: #ffffff;
}
.sx-intro__media {
    position: relative;
}
.sx-intro__img-main {
    border-radius: var(--sx-radius);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: var(--sx-shadow-md);
}
.sx-intro__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.sx-intro__img-main:hover img {
    transform: scale(1.04);
}
.sx-intro__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 110px;
    height: 110px;
    background: var(--sx-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sx-shadow-blue);
    border: 4px solid #ffffff;
    text-align: center;
    gap: 2px;
}
.sx-intro__badge-number {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}
.sx-intro__badge-text {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-align: center;
    line-height: 1.3;
    padding: 0 6px;
}
.sx-intro__stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: var(--sx-radius-sm);
    padding: 14px 20px;
    box-shadow: var(--sx-shadow-md);
    border: 1px solid var(--sx-light-2);
    min-width: 190px;
}
.sx-intro__stat-card i {
    font-size: 24px;
    color: var(--sx-blue);
    flex-shrink: 0;
}
.sx-intro__stat-card strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--sx-dark);
    line-height: 1;
}
.sx-intro__stat-card span {
    font-size: 12px;
    color: var(--sx-muted);
    font-weight: 500;
}
.sx-intro__stat-card--1 {
    top: 28px;
    left: -28px;
}
.sx-intro__stat-card--2 {
    bottom: 28px;
    left: -28px;
}
.sx-intro__content .section-title h3 {
    color: var(--sx-blue);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sx-intro__content .section-title h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--sx-blue);
    border-radius: 2px;
}
.sx-intro__content .section-title h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--sx-dark);
    line-height: 1.2;
    margin-bottom: 22px;
}
.sx-intro__content .section-title h2 span {
    color: var(--sx-blue);
}
.sx-intro__content .section-title p {
    color: var(--sx-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.sx-intro__pillars {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.sx-intro__pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--sx-light);
    border: 1px solid var(--sx-light-2);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sx-dark);
    transition: var(--sx-transition);
    cursor: default;
}
.sx-intro__pillar i {
    color: var(--sx-blue);
    font-size: 16px;
}
.sx-intro__pillar:hover {
    background: var(--sx-blue);
    border-color: var(--sx-blue);
    color: #ffffff;
    box-shadow: var(--sx-shadow-blue);
    transform: translateY(-2px);
}
.sx-intro__pillar:hover i {
    color: #ffffff;
}

/* ----------------------------------------------------------
   4. OUR STORY — TIMELINE
   ---------------------------------------------------------- */
.sx-story {
    padding: 100px 0;
    background: var(--sx-dark);
    position: relative;
    overflow: hidden;
}
.sx-story__bg-shape {
    position: absolute;
    top: -160px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.sx-story .sx-section-header h3 {
    color: var(--sx-blue-light);
}
.sx-story .sx-section-header h3::before {
    background: var(--sx-blue-light);
}
.sx-story .sx-section-header h2 {
    color: #ffffff;
}
.sx-story .sx-section-header p {
    color: rgba(255,255,255,0.55);
}
.sx-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.sx-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(37,99,235,0.5) 15%, rgba(37,99,235,0.5) 85%, transparent);
    transform: translateX(-50%);
}
.sx-timeline__item {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}
.sx-timeline__item--left {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}
.sx-timeline__item--right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}
.sx-timeline__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--sx-radius);
    padding: 28px 30px;
    backdrop-filter: blur(8px);
    transition: var(--sx-transition);
    width: 100%;
}
.sx-timeline__card:hover {
    background: rgba(37,99,235,0.10);
    border-color: rgba(37,99,235,0.30);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,99,235,0.15);
}
.sx-timeline__year {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sx-blue-light);
    background: rgba(37,99,235,0.15);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.sx-timeline__card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.sx-timeline__card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 0;
}
.sx-timeline__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--sx-blue);
    border-radius: 50%;
    border: 3px solid var(--sx-dark);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.25);
    z-index: 2;
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   5. MISSION & VISION
   ---------------------------------------------------------- */
.sx-mv {
    padding: 100px 0;
    background: var(--sx-light);
}
.sx-mv__card {
    border-radius: var(--sx-radius);
    padding: 48px 40px;
    height: 100%;
    transition: var(--sx-transition);
    position: relative;
    overflow: hidden;
}
.sx-mv__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--sx-radius) var(--sx-radius) 0 0;
    background: var(--sx-blue);
}
.sx-mv__card--mission {
    background: #ffffff;
    border: 1px solid var(--sx-light-2);
    box-shadow: var(--sx-shadow);
}
.sx-mv__card--vision {
    background: var(--sx-dark);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--sx-shadow-md);
}
.sx-mv__card--vision::before {
    background: var(--sx-blue-light);
}
.sx-mv__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sx-shadow-md);
}
.sx-mv__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    background: var(--sx-blue-glow);
    color: var(--sx-blue);
    border: 1px solid rgba(37,99,235,0.2);
}
.sx-mv__card--vision .sx-mv__icon {
    background: rgba(59,130,246,0.15);
    color: var(--sx-blue-light);
    border-color: rgba(59,130,246,0.25);
}
.sx-mv__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sx-blue);
    margin-bottom: 12px;
}
.sx-mv__card--vision .sx-mv__label {
    color: var(--sx-blue-light);
}
.sx-mv__card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--sx-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.sx-mv__card--vision h3 {
    color: #ffffff;
}
.sx-mv__card > p {
    font-size: 15px;
    color: var(--sx-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}
.sx-mv__card--vision > p {
    color: rgba(255,255,255,0.55);
}
.sx-mv__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sx-mv__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sx-dark-3);
}
.sx-mv__card--vision .sx-mv__list li {
    color: rgba(255,255,255,0.65);
}
.sx-mv__list li i {
    color: var(--sx-blue);
    flex-shrink: 0;
    font-size: 15px;
}
.sx-mv__card--vision .sx-mv__list li i {
    color: var(--sx-blue-light);
}

/* ----------------------------------------------------------
   6. WHAT MAKES US DIFFERENT
   ---------------------------------------------------------- */
.sx-diff {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}
.sx-diff__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, var(--sx-blue-glow) 0%, transparent 60%);
    pointer-events: none;
}
.sx-diff .sx-section-header {
    position: relative;
    z-index: 1;
}
.sx-diff__card {
    background: #ffffff;
    border: 1px solid var(--sx-light-2);
    border-radius: var(--sx-radius);
    padding: 36px 30px;
    height: 100%;
    transition: var(--sx-transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.sx-diff__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--sx-blue) 0%, var(--sx-blue-light) 100%);
    transition: height 0.35s ease;
    z-index: 0;
}
.sx-diff__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sx-shadow-blue);
    border-color: transparent;
}
.sx-diff__card:hover::after {
    height: 4px;
}
.sx-diff__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--sx-blue-glow);
    border: 1px solid rgba(37,99,235,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--sx-blue);
    margin-bottom: 22px;
    transition: var(--sx-transition);
    position: relative;
    z-index: 1;
}
.sx-diff__card:hover .sx-diff__card-icon {
    background: var(--sx-blue);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--sx-shadow-blue);
}
.sx-diff__card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--sx-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.sx-diff__card p {
    font-size: 14px;
    color: var(--sx-muted);
    line-height: 1.75;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------------------------
   7. SHIFTIX APP HIGHLIGHT
   ---------------------------------------------------------- */
.sx-app {
    padding: 100px 0;
    background: var(--sx-dark);
    position: relative;
    overflow: hidden;
}
.sx-app::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.sx-app__content .section-title h3 {
    color: var(--sx-blue-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sx-app__content .section-title h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--sx-blue-light);
    border-radius: 2px;
}
.sx-app__content .section-title h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.sx-app__content .section-title h2 span {
    color: var(--sx-blue-light);
}
.sx-app__content .section-title p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.75;
}
.sx-app__features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sx-app__feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--sx-radius-sm);
    padding: 20px 22px;
    transition: var(--sx-transition);
}
.sx-app__feature-item:hover {
    background: rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.30);
    transform: translateX(4px);
}
.sx-app__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(37,99,235,0.18);
    border: 1px solid rgba(37,99,235,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--sx-blue-light);
    flex-shrink: 0;
    transition: var(--sx-transition);
}
.sx-app__feature-item:hover .sx-app__feature-icon {
    background: var(--sx-blue);
    color: #ffffff;
    border-color: transparent;
}
.sx-app__feature-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.sx-app__feature-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Phone Mockup */
.sx-app__mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 20px;
}
.sx-app__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.25) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}
.sx-app__phone {
    width: 300px;
    background: #0d1117;
    border-radius: 44px;
    padding: 16px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    z-index: 2;
    animation: sx-phoneFloat 4s ease-in-out infinite;
}
@keyframes sx-phoneFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
.sx-app__phone-notch {
    width: 90px;
    height: 24px;
    background: #0d1117;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 10px;
    position: relative;
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.4);
}
.sx-app__phone-notch::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #1a2030;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.07);
}
.sx-app__phone-screen {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    border-radius: 28px;
    overflow: hidden;
    min-height: 540px;
}
.sx-app__screen-header {
    background: rgba(37,99,235,0.9);
    padding: 14px 18px 12px;
}
.sx-app__screen-status {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}
.sx-app__screen-status i {
    margin-left: 4px;
}
.sx-app__screen-brand {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sx-app__screen-body {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sx-app__screen-greeting {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.sx-app__screen-greeting strong {
    color: #ffffff;
}
.sx-app__screen-vehicle-card {
    background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(37,99,235,0.10));
    border: 1px solid rgba(37,99,235,0.30);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sx-app__vehicle-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}
.sx-app__vehicle-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}
.sx-app__vehicle-status {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sx-app__vehicle-status--ok {
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.25);
}
.sx-app__screen-tickets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sx-app__ticket-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}
.sx-app__ticket-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 12px;
}
.sx-app__ticket-item i {
    font-size: 14px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.4);
}
.sx-app__ticket-item div {
    flex: 1;
}
.sx-app__ticket-item span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1px;
}
.sx-app__ticket-item small {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}
.sx-app__ticket-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.sx-app__ticket-badge--progress {
    background: rgba(251,146,60,0.15);
    color: #fb923c;
    border: 1px solid rgba(251,146,60,0.25);
}
.sx-app__ticket-badge--done {
    background: rgba(34,197,94,0.12);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.20);
}
.sx-app__screen-actions {
    display: flex;
    gap: 8px;
}
.sx-app__action-btn {
    flex: 1;
    padding: 10px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    transition: var(--sx-transition);
    background: var(--sx-blue);
    color: #ffffff;
}
.sx-app__action-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
}
.sx-app__action-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}
.sx-app__phone-home-bar {
    width: 100px;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    margin: 14px auto 0;
}

/* ----------------------------------------------------------
   8. PROCESS FLOW
   ---------------------------------------------------------- */
.sx-process {
    padding: 100px 0;
    background: var(--sx-light);
}
.sx-process__flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    margin-top: 20px;
}
.sx-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px;
    padding: 0 10px;
    position: relative;
}
.sx-process__icon-wrap {
    position: relative;
    margin-bottom: 20px;
}
.sx-process__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--sx-light-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--sx-blue);
    box-shadow: var(--sx-shadow);
    transition: var(--sx-transition);
    position: relative;
    z-index: 1;
}
.sx-process__step:hover .sx-process__icon {
    background: var(--sx-blue);
    color: #ffffff;
    border-color: var(--sx-blue);
    box-shadow: var(--sx-shadow-blue);
    transform: scale(1.1);
}
.sx-process__step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--sx-blue);
    color: #ffffff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--sx-light);
    z-index: 2;
}
.sx-process__step h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--sx-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.sx-process__step p {
    font-size: 12px;
    color: var(--sx-muted);
    line-height: 1.6;
    margin-bottom: 0;
}
.sx-process__arrow {
    display: flex;
    align-items: center;
    color: var(--sx-blue);
    opacity: 0.4;
    font-size: 18px;
    padding: 0 4px;
    margin-top: 28px;
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   9. WHY CHOOSE SHIFTIX
   ---------------------------------------------------------- */
.sx-why {
    padding: 100px 0;
    background: #ffffff;
}
.sx-why .section-title h3 {
    color: var(--sx-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sx-why .section-title h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--sx-blue);
    border-radius: 2px;
}
.sx-why .section-title h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--sx-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}
.sx-why .section-title p {
    color: var(--sx-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 36px;
}
.sx-why__card {
    background: var(--sx-light);
    border: 1px solid var(--sx-light-2);
    border-radius: var(--sx-radius);
    padding: 32px 28px;
    height: 100%;
    transition: var(--sx-transition);
}
.sx-why__card--dark {
    background: var(--sx-dark);
    border-color: transparent;
}
.sx-why__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sx-shadow-md);
}
.sx-why__card--dark:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.sx-why__icon {
    font-size: 28px;
    color: var(--sx-blue);
    margin-bottom: 18px;
    display: block;
}
.sx-why__card--dark .sx-why__icon {
    color: var(--sx-blue-light);
}
.sx-why__card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--sx-dark);
    margin-bottom: 10px;
}
.sx-why__card--dark h4 {
    color: #ffffff;
}
.sx-why__card p {
    font-size: 14px;
    color: var(--sx-muted);
    line-height: 1.75;
    margin-bottom: 0;
}
.sx-why__card--dark p {
    color: rgba(255,255,255,0.5);
}

/* ----------------------------------------------------------
   10. CTA SECTION
   ---------------------------------------------------------- */
.sx-cta {
    padding: 100px 0;
    background: var(--sx-dark);
    position: relative;
    overflow: hidden;
}
.sx-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(37,99,235,0.15) 0%, transparent 55%);
    pointer-events: none;
}
.sx-cta .container {
    position: relative;
    z-index: 2;
}
.sx-cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.sx-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sx-blue-light);
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.30);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.sx-cta__badge i {
    color: #fbbf24;
}
.sx-cta__inner h2 {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.sx-cta__inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 44px;
}
.sx-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.sx-cta__actions .btn-default {
    background: var(--sx-blue);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 8px;
}
.sx-cta__actions .btn-default::after {
    background: #ffffff;
}
.sx-cta__actions .btn-default:hover {
    color: var(--sx-dark);
}
.sx-cta__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.20);
    padding: 15px 32px;
    border-radius: 8px;
    transition: var(--sx-transition);
    text-decoration: none;
}
.sx-cta__btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.40);
    color: #ffffff;
    text-decoration: none;
}
.sx-cta__btn-outline i {
    transition: transform 0.3s ease;
}
.sx-cta__btn-outline:hover i {
    transform: translateX(4px);
}

/* ----------------------------------------------------------
   11. RESPONSIVE — ABOUT PAGE
   ---------------------------------------------------------- */
@media (max-width: 1199px) {
    .sx-intro__stat-card--1,
    .sx-intro__stat-card--2 { left: 0; }
    .sx-intro__badge { right: 0; }
}

@media (max-width: 991px) {
    .sx-hero { min-height: 420px; }
    .sx-hero__inner { padding: 100px 0 60px; }
    .sx-intro, .sx-story, .sx-mv, .sx-diff,
    .sx-app, .sx-process, .sx-why, .sx-cta { padding: 72px 0; }
    .sx-section-header { margin-bottom: 44px; }
    .sx-intro__stat-card { display: none; }
    .sx-intro__badge { right: 20px; bottom: -16px; width: 90px; height: 90px; }
    .sx-intro__badge-number { font-size: 18px; }
    .sx-timeline__line { left: 20px; }
    .sx-timeline__item--left,
    .sx-timeline__item--right { flex-direction: column; padding: 0 0 0 56px; }
    .sx-timeline__dot { left: 20px; top: 28px; transform: translateX(-50%); }
    .sx-process__step { width: 140px; }
    .sx-process__arrow { font-size: 14px; padding: 0; margin-top: 25px; }
}

@media (max-width: 767px) {
    .sx-intro__img-main { aspect-ratio: 3/2; }
    .sx-intro__badge { bottom: -12px; right: 10px; }
    .sx-mv__card { padding: 34px 26px; }
    .sx-process__flow { flex-direction: column; align-items: center; gap: 12px; }
    .sx-process__step { width: 100%; max-width: 300px; flex-direction: row; text-align: left; gap: 20px; }
    .sx-process__icon-wrap { margin-bottom: 0; flex-shrink: 0; }
    .sx-process__arrow { transform: rotate(90deg); margin: 0 auto; }
    .sx-app__phone { width: 260px; }
    .sx-app__phone-screen { min-height: 480px; }
    .sx-cta__actions { flex-direction: column; gap: 14px; }
    .sx-cta__actions .btn-default,
    .sx-cta__btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .sx-timeline__item--left,
    .sx-timeline__item--right { padding-left: 44px; }
    .sx-timeline__line { left: 16px; }
    .sx-timeline__dot { left: 16px; width: 12px; height: 12px; }
    .sx-timeline__card { padding: 20px; }
    .sx-diff__card { padding: 28px 22px; }
    .sx-why__card { padding: 26px 22px; }
    .sx-mv__card { padding: 28px 22px; }
}


/* ============================================================
   ABOUT PAGE v2 — ab- prefix  |  Uses theme CSS variables only
   ============================================================ */

/* ----------------------------------------------------------
   SHARED UTILITY
   ---------------------------------------------------------- */
.ab-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 14px;
}
.ab-label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    flex-shrink: 0;
}
.ab-label--light {
    color: var(--divider-color);
}
.ab-label--light::before {
    background: var(--divider-color);
}

/* ----------------------------------------------------------
   1. HERO
   ---------------------------------------------------------- */
.ab-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.ab-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--primary-color) 0%,
        rgba(25, 35, 36, 0.75) 50%,
        rgba(25, 35, 36, 0.4) 100%
    );
    z-index: 1;
}
.ab-hero .container {
    position: relative;
    z-index: 2;
}
.ab-hero__body {
    padding: 100px 0 70px;
}
.ab-hero__crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
}
.ab-hero__crumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.ab-hero__crumb a:hover { color: #fff; }
.ab-hero__crumb i { font-size: 10px; opacity: 0.5; }
.ab-hero__heading {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.ab-hero__heading em {
    font-style: normal;
    color: var(--accent-color);
}
.ab-hero__sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 44px;
}
.ab-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-divider-color);
    border-radius: 14px;
    padding: 20px 32px;
    display: inline-flex;
    gap: 0;
}
.ab-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.ab-hero__stat strong {
    font-size: 28px;
    font-weight: 900;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 4px;
}
.ab-hero__stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-align: center;
}
.ab-hero__stat-div {
    width: 1px;
    height: 40px;
    background: var(--dark-divider-color);
    flex-shrink: 0;
}
.ab-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.ab-hero__scroll span {
    display: block;
    width: 1.5px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    animation: ab-scroll-bounce 1.5s ease-in-out infinite;
}
.ab-hero__scroll span:nth-child(1) { animation-delay: 0s; }
.ab-hero__scroll span:nth-child(2) { animation-delay: 0.15s; }
.ab-hero__scroll span:nth-child(3) { animation-delay: 0.3s; }
@keyframes ab-scroll-bounce {
    0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
    50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ----------------------------------------------------------
   2. COMPANY INTRODUCTION
   ---------------------------------------------------------- */
.ab-intro {
    padding: 0;
    background: var(--white-color);
}
.ab-intro__media {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}
.ab-intro__fig {
    width: 100%;
    height: 100%;
    display: block !important;
    border-radius: 0;
}
.ab-intro__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.ab-intro__fig:hover img {
    transform: scale(1.04);
}
.ab-intro__media-tag {
    position: absolute;
    bottom: 28px;
    right: -1px;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: -6px 6px 24px rgba(0,0,0,0.2);
}
.ab-intro__content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.ab-intro__title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 22px;
}
.ab-intro__content > p {
    font-size: 16px;
    color: var(--accent-color);
    line-height: 1.8;
    margin-bottom: 14px;
}
.ab-intro__content > p strong {
    color: var(--primary-color);
}
.ab-intro__pillars {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 36px;
    padding: 24px;
    background: var(--secondery-color);
    border-radius: 14px;
    border: 1px solid var(--divider-color);
}
.ab-intro__pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}
.ab-intro__pillar-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.ab-intro__pillar:hover .ab-intro__pillar-icon {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* ----------------------------------------------------------
   3. OUR STORY
   ---------------------------------------------------------- */
.ab-story {
    padding: 90px 0;
    background: var(--secondery-color);
}
.ab-story__header {
    margin-bottom: 56px;
}
.ab-story__header h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 0;
}
.ab-story__intro-text {
    font-size: 16px;
    color: var(--accent-color);
    line-height: 1.75;
    margin-bottom: 0;
    padding-left: 30px;
}
.ab-story__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.ab-story__card {
    background: var(--white-color);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border-radius: 0;
}
.ab-story__card:first-child { border-radius: 14px 0 0 14px; }
.ab-story__card:last-child  { border-radius: 0 14px 14px 0; }
.ab-story__card:hover {
    background: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(25,35,36,0.18);
    z-index: 2;
    border-radius: 14px;
}
.ab-story__num {
    font-size: 72px;
    font-weight: 900;
    color: var(--divider-color);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.35s ease;
    pointer-events: none;
}
.ab-story__card:hover .ab-story__num {
    color: rgba(255,255,255,0.06);
}
.ab-story__year {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    background: var(--divider-color);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}
.ab-story__card:hover .ab-story__year {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}
.ab-story__card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    transition: color 0.35s ease;
    position: relative;
    z-index: 1;
}
.ab-story__card:hover h4 { color: var(--white-color); }
.ab-story__card p {
    font-size: 14px;
    color: var(--accent-color);
    line-height: 1.75;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}
.ab-story__card:hover p { color: rgba(255,255,255,0.65); }
.ab-story__card--accent {
    background: var(--primary-color);
    border-radius: 0 14px 14px 0;
}
.ab-story__card--accent .ab-story__num { color: rgba(255,255,255,0.06); }
.ab-story__card--accent .ab-story__year {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}
.ab-story__card--accent h4 { color: var(--white-color); }
.ab-story__card--accent p  { color: rgba(255,255,255,0.6); }

/* ----------------------------------------------------------
   4. MISSION & VISION
   ---------------------------------------------------------- */
.ab-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.ab-mv__mission {
    background: var(--primary-color);
    padding: 90px 70px;
}
.ab-mv__vision {
    background: #1e2c2e;
    padding: 90px 70px;
    border: 1px solid rgba(255,255,255,0.08);
}
.ab-mv__inner h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.ab-mv__mission .ab-mv__inner h2 { color: var(--white-color); }
.ab-mv__vision  .ab-mv__inner h2 { color: var(--white-color); }
.ab-mv__mission .ab-mv__inner > p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.ab-mv__vision  .ab-mv__inner > p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.ab-mv__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ab-mv__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}
.ab-mv__mission .ab-mv__list li { color: rgba(255,255,255,0.8); }
.ab-mv__vision  .ab-mv__list li { color: rgba(255,255,255,0.8); }
.ab-mv__list li i { font-size: 12px; flex-shrink: 0; }
.ab-mv__mission .ab-mv__list li i { color: var(--accent-color); }
.ab-mv__vision  .ab-mv__list li i { color: var(--accent-color); }

/* ----------------------------------------------------------
   5. WHAT MAKES US DIFFERENT
   ---------------------------------------------------------- */
.ab-diff {
    padding: 100px 0;
    background: var(--primary-color);
}
.ab-diff__top {
    margin-bottom: 52px;
    align-items: flex-end;
}
.ab-diff__top h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.1;
    margin: 0;
}
.ab-diff__intro-text {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 0;
    padding-left: 30px;
}
.ab-diff__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.ab-diff__item {
    display: flex;
    flex-direction: column;
    padding: 36px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.ab-diff__item:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.20);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    z-index: 2;
    border-radius: 14px;
}
.ab-diff__num {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    transition: color 0.35s ease;
}
.ab-diff__item:hover .ab-diff__num { color: rgba(255,255,255,0.05); }
.ab-diff__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}
.ab-diff__item:hover .ab-diff__icon {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: transparent;
}
.ab-diff__body {
    position: relative;
    z-index: 1;
}
.ab-diff__body h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 10px;
    transition: color 0.35s ease;
}
.ab-diff__item:hover .ab-diff__body h4 { color: var(--white-color); }
.ab-diff__body p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 0;
    transition: color 0.35s ease;
}
.ab-diff__item:hover .ab-diff__body p { color: rgba(255,255,255,0.6); }

/* ----------------------------------------------------------
   6. SHIFTIX APP
   ---------------------------------------------------------- */
.ab-app {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}
.ab-app::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,135,127,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.ab-app__content .section-title h3,
.ab-app__content > .ab-label {
    color: var(--accent-color);
}
.ab-app__content h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.15;
    margin-bottom: 20px;
}
.ab-app__content > p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 0;
}
.ab-app__features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ab-app__feat {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-divider-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.ab-app__feat:hover {
    background: rgba(124,135,127,0.1);
    border-color: rgba(124,135,127,0.3);
    transform: translateX(5px);
}
.ab-app__feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(124,135,127,0.15);
    border: 1px solid rgba(124,135,127,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.ab-app__feat:hover .ab-app__feat-icon {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: transparent;
}
.ab-app__feat h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 4px;
}
.ab-app__feat p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Phone Mockup */
.ab-app__mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 20px;
}
.ab-phone {
    width: 295px;
    background: #111a1b;
    border-radius: 44px;
    padding: 14px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.07),
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
    animation: ab-float 4s ease-in-out infinite;
}
@keyframes ab-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
.ab-phone__notch {
    width: 80px;
    height: 22px;
    background: #111a1b;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 10px;
}
.ab-phone__screen {
    background: #0e1a1b;
    border-radius: 30px;
    overflow: hidden;
    min-height: 520px;
}
.ab-phone__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 8px;
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}
.ab-phone__bar i { margin-left: 4px; }
.ab-phone__brand {
    background: var(--accent-color);
    padding: 12px 18px 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ab-phone__body {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ab-phone__greet {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.ab-phone__greet strong { color: var(--white-color); }
.ab-phone__vehicle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(124,135,127,0.12);
    border: 1px solid rgba(124,135,127,0.2);
    border-radius: 12px;
    padding: 12px 14px;
}
.ab-phone__vehicle small {
    display: block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}
.ab-phone__vehicle span {
    font-size: 13px;
    font-weight: 700;
    color: var(--white-color);
}
.ab-phone__health {
    font-size: 10px;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.2);
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ab-phone__section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
}
.ab-phone__ticket {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 9px 11px;
}
.ab-phone__ticket i {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.ab-phone__ticket div { flex: 1; }
.ab-phone__ticket div span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 1px;
}
.ab-phone__ticket div small {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
}
.ab-phone__badge {
    font-style: normal;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.ab-phone__badge--progress {
    background: rgba(251,146,60,0.12);
    color: #fb923c;
    border: 1px solid rgba(251,146,60,0.2);
}
.ab-phone__badge--done {
    background: rgba(74,222,128,0.1);
    color: #4ade80;
    border: 1px solid rgba(74,222,128,0.18);
}
.ab-phone__btns {
    display: flex;
    gap: 8px;
}
.ab-phone__btns button {
    flex: 1;
    padding: 9px 6px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--accent-color);
    color: var(--white-color);
    transition: opacity 0.3s;
}
.ab-phone__btns button:hover { opacity: 0.8; }
.ab-phone__btn-ghost {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.5) !important;
}
.ab-phone__bar-home {
    width: 90px;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 100px;
    margin: 12px auto 0;
}
/* floating chips */
.ab-phone__chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid var(--dark-divider-color);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    color: var(--white-color);
    white-space: nowrap;
}
.ab-phone__chip--1 { top: 60px;  left: -20px; }
.ab-phone__chip--2 { bottom: 80px; right: -20px; }
.ab-phone__chip i { color: var(--accent-color); }

/* ----------------------------------------------------------
   7. PROCESS FLOW
   ---------------------------------------------------------- */
.ab-process {
    padding: 100px 0;
    background: var(--secondery-color);
}
.ab-process__header {
    text-align: center;
    margin-bottom: 60px;
}
.ab-process__header h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin: 0;
}
.ab-process__strip {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.ab-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 130px;
    max-width: 180px;
    padding: 0 8px;
    position: relative;
}
.ab-process__circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white-color);
    border: 2px solid var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(25,35,36,0.07);
    margin-bottom: 10px;
}
.ab-process__step:hover .ab-process__circle {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(25,35,36,0.2);
}
.ab-process__line {
    position: absolute;
    top: 35px;
    left: calc(50% + 35px);
    right: calc(-50% + 35px);
    height: 2px;
    background: var(--divider-color);
    z-index: 1;
}
.ab-process__step--last .ab-process__line { display: none; }
.ab-process__num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 10px;
    opacity: 0.7;
}
.ab-process__step h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.3;
}
.ab-process__step p {
    font-size: 12px;
    color: var(--accent-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   8. WHY CHOOSE
   ---------------------------------------------------------- */
.ab-why {
    padding: 100px 0;
    background: var(--primary-color);
}
.ab-why__lead {
    padding-right: 40px;
}
.ab-why__lead h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.15;
    margin-bottom: 18px;
}
.ab-why__lead > p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 34px;
}
.ab-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ab-why__card {
    padding: 32px 28px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
}
.ab-why__card--filled {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.15);
}
.ab-why__card:not(.ab-why__card--filled):hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transform: translateY(-4px);
}
.ab-why__card--filled:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(25,35,36,0.3);
}
.ab-why__icon {
    font-size: 26px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 16px;
    transition: color 0.3s;
}
.ab-why__card--filled .ab-why__icon { color: rgba(255,255,255,0.5); }
.ab-why__card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 8px;
}
.ab-why__card--filled h4 { color: var(--white-color); }
.ab-why__card p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 0;
}
.ab-why__card--filled p { color: rgba(255,255,255,0.55); }

/* ----------------------------------------------------------
   9. CTA
   ---------------------------------------------------------- */
.ab-cta {
    padding: 110px 0;
    background: var(--secondery-color);
    position: relative;
    overflow: hidden;
}
.ab-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(124,135,127,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(124,135,127,0.10) 0%, transparent 55%);
    pointer-events: none;
}
.ab-cta .container { position: relative; z-index: 2; }
.ab-cta__body {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.ab-cta__body h2 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.ab-cta__body > p {
    font-size: 17px;
    color: var(--accent-color);
    line-height: 1.75;
    margin-bottom: 46px;
}
.ab-cta__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ab-cta__btns .btn-default {
    font-size: 15px;
    font-weight: 700;
    /* padding: 15px 38px; */
    background: var(--accent-color);
}
.ab-cta__btns .btn-default:hover { background: transparent; }
.ab-cta__outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 17px 46px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1em;
}
.ab-cta__outline:hover {
    color: var(--white-color);
    border-color: var(--primary-color);
    background: var(--primary-color);
    text-decoration: none;
}
.ab-cta__outline i { transition: transform 0.3s ease; }
.ab-cta__outline:hover i { transform: translateX(4px); }

/* ----------------------------------------------------------
   10. RESPONSIVE — ab- prefix
   ---------------------------------------------------------- */
@media (max-width: 1199px) {
    .ab-mv__mission, .ab-mv__vision { padding: 70px 50px; }
    .ab-intro__content { padding: 60px 40px; }
}

@media (max-width: 991px) {
    .ab-hero { min-height: 480px; }
    .ab-hero__body { padding: 90px 0 60px; }
    .ab-hero__stats { padding: 16px 20px; }
    .ab-hero__stat { padding: 0 20px; }

    .ab-intro__media { min-height: 360px; }
    .ab-intro__content { padding: 50px 30px; }

    .ab-mv { grid-template-columns: 1fr; }
    .ab-mv__mission, .ab-mv__vision { padding: 60px 40px; }

    .ab-story__grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .ab-story__card:first-child { border-radius: 14px 0 0 0; }
    .ab-story__card:nth-child(2) { border-radius: 0 14px 0 0; }
    .ab-story__card:nth-child(3) { border-radius: 0 0 0 14px; }
    .ab-story__card:last-child { border-radius: 0 0 14px 0; }

    .ab-diff__list { grid-template-columns: 1fr 1fr; }

    .ab-why__lead { padding-right: 0; margin-bottom: 40px; }

    .ab-phone__chip--1,
    .ab-phone__chip--2 { display: none; }
}

@media (max-width: 767px) {
    .ab-hero__heading { letter-spacing: -1px; }
    .ab-hero__stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 30px;
        width: 100%;
        text-align: center;
    }
    .ab-hero__stat-div { width: 60px; height: 1px; }

    .ab-story__grid { grid-template-columns: 1fr; }
    .ab-story__card { border-radius: 14px !important; }

    .ab-diff__intro-text { padding-left: 0; margin-top: 16px; }
    .ab-diff__list { grid-template-columns: 1fr; }

    .ab-why__grid { grid-template-columns: 1fr; }

    .ab-process__strip { flex-direction: column; align-items: center; gap: 12px; }
    .ab-process__step { flex-direction: row; text-align: left; gap: 18px; max-width: 100%; width: 100%; }
    .ab-process__circle { margin-bottom: 0; flex-shrink: 0; }
    .ab-process__line { display: none; }
    .ab-process__num { display: none; }

    .ab-cta__btns { flex-direction: column; gap: 14px; }
    .ab-cta__btns .btn-default,
    .ab-cta__outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .ab-intro__content { padding: 40px 24px; }
    .ab-mv__mission, .ab-mv__vision { padding: 50px 28px; }
    .ab-diff__item { padding: 28px 22px; }
    .ab-why__card { padding: 26px 22px; }
    .ab-phone { width: 265px; }
}
.contact-ph{
	color: #283132;
}

.home .project-item.product-center-card .project-content h3, .page-template-page-vehicles .project-item.product-center-card .project-content h3 {
    font-size: 17px;
    font-weight: 600;
}

.home .project-featured-image figure::before , .page-template-page-vehicles .project-featured-image figure::before {
    /* background: linear-gradient(360deg, rgb(0 0 0 / 27%) 0%, rgba(0, 0, 0, 0) 111.33%); */
	display: none;
}

.home .project-item.product-center-card, .page-template-page-vehicles .project-item.product-center-card{
	border: none;
	background: #fff;
    border: none;
    /* border-radius: 0px; */
}

.home .project-item.product-center-card:hover, .page-template-page-vehicles .project-item.product-center-card:hover {
	    transform: translateY(-10px);
		transition: transform 0.5s ease, box-shadow 0.5s ease;
		    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
}
.home .project-item.product-center-card .project-featured-image, .page-template-page-vehicles .project-item.product-center-card .project-featured-image {
	background: #fff;
	border-radius: 0px;
	padding:5px;
}

.home .project-item.product-center-card .project-content h3 a, .page-template-page-vehicles .project-item.product-center-card .project-content h3 a {
	text-align: center;
}

.home .project-item.product-center-card .project-content h3, .page-template-page-vehicles  .project-item.product-center-card .project-content h3{
	text-align: center;
}

.home .project-item.product-center-card .project-btn .arrow, .page-template-page-vehicles .project-item.product-center-card .project-btn .arrow {
    width: 50px;
    height: 50px;
}


.home .project-item.product-center-card .project-content h3 a {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-break: break-all;
    }