/* ----------------------------------------------------------------------------------------
* Brand         : Bagani - Premium Motorcycle Oils & Lubricants
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Service css
07. Our Story css
08. What We Do css
09. Our Work css
10. Our Process css
11. Our Pricing css
12. Our Testimonial css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Services Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Team Page css
23. Team Page css
24. Pricing Page css
25. Testimonial Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. 404 Page css
31. Responsive css
-------------------------------------------------------------------------------------- */

/* Love Nature — self-hosted display font */
@font-face {
	font-family: 'Love Nature';
	src: url('/webfonts/love-nature.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

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

:root{
	--primary-color			: #222222;
	--secondary-color		: #F5F5F5;
	--text-color			: #81848A;
	--accent-color			: #FFC107;
	--white-color			: #FFFFFF;
	--divider-color			: #EBEBEB;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Manrope", sans-serif;
	--heading-font			: "Love Nature", "Manrope", sans-serif;

	/* Nike-inspired Gutter System */
	--nike-gutter			: 16px;
}

html, body {
	overflow-x: hidden;
}

/* ── Sticky Footer ── */
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.bagani-main-content {
	flex: 1 0 auto;
}

/* ── Text Selection Highlight ── */
::selection {
	background: #FFC107;
	color: #222222;
}
::-moz-selection {
	background: #FFC107;
	color: #222222;
}

/* ── Active Nav Link ── */
.nav-link.active,
.nav-link:focus {
	color: #FFC107 !important;
}

@media (min-width: 768px) {
	:root {
		--nike-gutter: 24px;
	}
}

@media (min-width: 992px) {
	:root {
		--nike-gutter: 48px;
	}

	/* Desktop: disable Swiper transforms, show cards as 2×2 grid */
	.what-we-do-swiper{
		overflow: visible;
	}
	.what-we-do-swiper .swiper-wrapper{
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
		transform: none !important;
		transition: none !important;
	}
	.what-we-do-swiper .swiper-slide{
		width: calc(50% - 8px) !important;
		height: auto !important;
	}
}

/* Apply Nike Gutters to Main Containers */
.container, .container-fluid {
	padding-left: var(--nike-gutter) !important;
	padding-right: var(--nike-gutter) !important;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1440px !important;
	}
}

/* Product Grid Equal-Height Columns */
.project-item-box {
	display: flex;
}

/* Product Card Styles */
.product-card {
	background: var(--white-color);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(255,193,7,0.15);
}

.product-card .product-body {
	padding: 20px 25px 0;
	flex: 1;
}

.product-card .product-image {
	position: relative;
	padding: 30px;
	text-align: center;
	height: 240px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CC 100%);
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-card .product-image img {
	max-height: 220px;
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

/* ── Nike-style flat product items ─────────────────────────────────────── */
.bagani-product-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 0;
}

.bagani-product-img-wrap {
	display: block;
	background: transparent;
	height: 220px;
	overflow: hidden;
	flex-shrink: 0;
}

.bagani-product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 0;
	transition: transform 0.4s ease;
}

.bagani-product-img-wrap:hover img {
	transform: scale(1.05);
}

.bagani-product-info {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 4px 0;
}

.bagani-product-line {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.bagani-product-name {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin-bottom: 4px;
	line-height: 1.3;
	font-family: "Manrope", sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bagani-product-spec {
	font-size: 14px;
	color: #757575;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bagani-product-desc {
	flex: 1;
	font-size: 14px;
	color: #757575;
	margin-bottom: 0;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bagani-product-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #111;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: gap 0.3s ease;
}

.bagani-product-link:hover {
	gap: 10px;
	color: var(--accent-color);
}

/* Product Categories Filter */
.product-categories {
	text-align: center;
	margin-bottom: 40px;
}

.product-categories ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.product-categories ul li a {
	display: inline-block;
	padding: 8px 24px;
	border: 2px solid var(--divider-color);
	border-radius: 30px;
	color: var(--text-color);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.product-categories ul li a:hover,
.product-categories ul li a.active-btn {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: #222222;
}

/* Product Single Page */
.product-gallery {
	margin-bottom: 30px;
}

.product-gallery .main-image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
}

.product-gallery .main-image img {
	width: 100%;
	max-height: 500px;
	object-fit: contain;
	background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CC 100%);
	padding: 40px;
}

.product-info h1 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 10px;
}

.product-info .product-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.product-info .product-meta span {
	display: inline-block;
	padding: 5px 15px;
	background: var(--secondary-color);
	border-radius: 5px;
	font-size: 13px;
	font-weight: 600;
}

.product-specs-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

.product-specs-table th,
.product-specs-table td {
	padding: 12px 15px;
	border-bottom: 1px solid var(--divider-color);
	text-align: left;
}

.product-specs-table th {
	font-weight: 700;
	color: var(--primary-color);
	width: 40%;
}

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

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	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.2em;
	color: var(--primary-color);
}

/* Love Nature only on large display headings */
h1, h2 {
	font-family: var(--heading-font);
	font-weight: normal;
}

h3, h4, h5, h6 {
	font-family: var(--default-font);
}

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;
	font-size: 16px;
	font-weight: 600;
	line-height: 0.6em;
	text-transform: capitalize;
	color: var(--primary-color);
	background: rgba(255, 193, 7, 0.75);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border: 1px solid rgba(255, 193, 7, 0.4);
	border-radius: 10px;
	padding: 2px 40px 2px 2px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	box-shadow: 0 4px 24px rgba(255, 193, 7, 0.15);
}

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

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(-15px, -50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	transform: translate(-15px, -50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default span{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 8px;
	padding: 15px 20px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

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

.btn-default span::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover span::after{
	width: 100%;
	left: 0;
	right: auto;
}

/* Navigation Shop Button Overrides */
.nav-shop-btn .btn-default {
	padding: 1px 30px 1px 1px;
}
.nav-shop-btn .btn-default::before {
	width: 10px;
	height: 10px;
	background-size: 16px auto;
	transform: translate(-10px, -50%);
}
.nav-shop-btn .btn-default:hover::before {
	transform: translate(-10px, -50%) rotate(45deg);
}
.nav-shop-btn .btn-default span {
	font-size: 14px;
	padding: 10px 16px;
}

@media (max-width: 991px) {
    .nav-shop-btn {
        display: none !important;
    }
}

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

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

.btn-highlighted::before{
	background-image: url('../images/arrow-dark.svg');
}

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

.btn-highlighted span{
	color: var(--white-color );
	background-color: var(--accent-color);
}

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

.btn-highlighted span::after{
    background: var(--white-color);
}

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

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(15, 15, 15, 0.55);
	backdrop-filter: blur(28px) saturate(180%);
	-webkit-backdrop-filter: blur(28px) saturate(180%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s ease, backdrop-filter 0.8s ease, -webkit-backdrop-filter 0.8s ease;
}

.preloader.loaded {
	opacity: 0;
	backdrop-filter: blur(0px) saturate(100%);
	-webkit-backdrop-filter: blur(0px) saturate(100%);
	pointer-events: none;
}

.preloader.loaded .loading-container {
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.6s ease;
}

.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 #FFC107 transparent #FFC107;
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

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

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

#loading-icon img{
	width: 66px;
	height: 66px;
	object-fit: contain;
}

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

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

.section-row{
	position: relative;
	margin-bottom: 80px;
	z-index: 1;
}

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

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

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

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

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

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

.about-content-body{
	margin-top: 15px;
}

.about-content .section-title h2{
	color: var(--primary-color);
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 700;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	padding-left: 26px;
    margin-bottom: 15px;
}

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

.section-title h1{
	font-size: 70px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 50px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}


.section-title h1 span,
.section-title h2 span{
	font-weight: 400;
	color: #FFC107;
	background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FF8C00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h1,
.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		 ****/
/************************************/

/* ═══════════════════════════════════════════════════════════
   BAGANI NAVBAR — Nike PH-inspired two-tier header
   Top  : light gray pre-header with utility links
   Main : clean white sticky navbar, logo | nav | actions
═══════════════════════════════════════════════════════════ */

/* Fixed wrapper — holds pre-header + main navbar */
#bagani-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

#bagani-header-wrap.scrolled {
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────
   PRE-HEADER (Nike top utility bar)
   ──────────────────────────────────────────────────────── */
.nike-preheader {
  background: #f5f5f5;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nike-preheader .container {
  width: 100%;
}

.preheader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preheader-left {
  display: flex;
  align-items: center;
}

.preheader-brand {
  display: flex;
  align-items: center;
}

.preheader-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.preheader-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.preheader-right a {
  font-size: 11px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  padding: 4px 10px;
  transition: color 0.2s;
}

.preheader-right a:hover {
  color: #FFC107;
}

.preheader-divider {
  color: #ccc;
  font-size: 11px;
  user-select: none;
}


/* ────────────────────────────────────────────────────────
   MAIN HEADER (Nike main navbar)
   ──────────────────────────────────────────────────────── */
header.main-header {
  position: relative !important;
  z-index: auto !important;
}

header.main-header .header-sticky {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  background: rgba(20, 20, 20, 0.92) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
  z-index: 1050 !important;
}

header.main-header .header-sticky.hide,
header.main-header .header-sticky.active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: rgba(20, 20, 20, 0.45) !important;
  backdrop-filter: blur(28px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  animation: slideDownGlass 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideDownGlass {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar {
  padding: 16px 0;
  align-items: center;
  background: transparent !important;
  transition: padding 0.3s cubic-bezier(0.4,0,0.2,1);
}

.nike-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ── Logo ─────────────────────────────────── */
.main-header .navbar-brand {
  padding: 0;
  margin: 0;
  display: block !important;
  flex-shrink: 0;
}

.main-header .navbar-brand img {
  max-width: 140px;
  height: auto;
  transition: max-width 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Center Nav Links ─────────────────────── */
.main-menu {
  display: flex !important;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.main-menu .nav-menu-wrapper,
.main-menu .nav-menu-wrapper * {
  pointer-events: auto;
}

.main-menu .nav-menu-wrapper {
  flex: none;
  text-align: center;
}

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

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

.main-menu ul li.nav-item .nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  color: #dcdcdc;
  text-transform: capitalize;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.main-menu ul li.nav-item:first-child .nav-link {
  padding-left: 18px;
}

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

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

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 230px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  text-align: left;
  transition: all 0.25s ease;
}

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

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

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

.main-menu ul li.submenu ul li.submenu > a:after {
  content: '\f105';
  float: right;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu ul li.submenu > a:hover:after {
  transform: rotate(90deg);
}

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

.main-menu ul ul li.nav-item .nav-link {
  color: var(--primary-color);
  padding: 8px 20px !important;
  font-weight: 500;
  border-bottom: none;
  transition: all 0.2s ease;
}

.main-menu ul ul li .nav-link:hover,
.main-menu ul ul li .nav-link:focus {
  color: #FFC107;
  background-color: #f9f9f9;
  padding: 8px 20px 8px 24px !important;
}

/* ── Expandable Search Interaction ── */
.expandable-search {
  position: relative;
  width: 36px;
  height: 36px;
}

.expandable-search-input {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border-radius: 18px;
  border: 1.5px solid transparent;
  color: transparent;
  font-size: 14px;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s, color 0.4s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s;
  cursor: pointer;
}

.expandable-search-input::placeholder {
  color: transparent;
  transition: color 0.3s ease-in-out;
}

.expandable-search-input:focus,
.expandable-search-input:hover,
.expandable-search-input:not(:placeholder-shown) {
  width: 250px;
  color: #fff;
  padding: 0 36px 0 16px;
  cursor: text;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.expandable-search-input:focus::placeholder,
.expandable-search-input:hover::placeholder,
.expandable-search-input:not(:placeholder-shown)::placeholder {
  color: #888;
}

.expandable-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 12;
}

.expandable-search-btn i {
  font-size: 14px;
  transition: color 0.3s ease;
}

/* ── Search Dropdown ── */
.search-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  width: 250px;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  text-align: left;
}

.expandable-search-input:focus ~ .search-dropdown,
.expandable-search-input:not(:placeholder-shown) ~ .search-dropdown,
.expandable-search:focus-within .search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-dropdown-title {
  color: #FFC107;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
}

.search-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-dropdown-list li {
  margin-bottom: 8px;
}

.search-dropdown-list li:last-child {
  margin-bottom: 0;
}

.search-dropdown-list li a {
  display: block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.search-dropdown-list li a:hover {
  color: #FFC107;
}

/* ── Search Results ── */
.search-result-item a {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color 0.2s;
}
.search-result-item:last-child a {
  border-bottom: none;
}
.search-result-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.search-result-desc {
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}
.search-result-item a:hover .search-result-title {
  color: #FFC107;
}
.search-no-results {
  color: #888;
  font-size: 13px;
  padding: 4px 0;
}

/* ── Search Results Pane (scrollable, max 3 items) ── */
#search-results-pane {
  max-height: 210px;   /* ~3 items at ~70px each */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;                    /* Firefox */
  scrollbar-color: rgba(255,193,7,0.25) transparent; /* Firefox */
}

/* Chrome / Edge / Safari */
#search-results-pane::-webkit-scrollbar {
  width: 3px;
}
#search-results-pane::-webkit-scrollbar-track {
  background: transparent;
}
#search-results-pane::-webkit-scrollbar-thumb {
  background: rgba(255, 193, 7, 0.3);
  border-radius: 999px;
  transition: background 0.2s;
}
#search-results-pane::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 193, 7, 0.55);
}

@media (max-width: 991px) {


  .expandable-search-input:focus,
  .expandable-search-input:not(:placeholder-shown),
  .expandable-search:focus-within .expandable-search-input {
      position: absolute;
      right: 0; 
      top: 0;
      transform: none;
      width: 140px !important; /* Strictly limit width on mobile */
      z-index: 10;
  }
  
  .search-dropdown {
      width: 200px !important;
      right: 0;
      top: calc(100% + 10px);
  }
}

/* ── Right: Action Icons (Nike-style) ──────── */
.nike-nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nike-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.nike-nav-icon:hover {
  background: #333333;
  color: var(--accent-color);
  text-decoration: none;
}

.nike-nav-cta {
  display: inline-block;
  margin-left: 8px;
  padding: 8px 20px;
  background: #111;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nike-nav-cta:hover {
  background: #FFC107;
  color: #111 !important;
  transform: translateY(-1px);
}

/* ── Nike Search Drawer ────────────────────── */
.nike-search-drawer {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 16px 0;
  animation: nikeSearchSlide 0.3s ease;
}

.nike-search-drawer.open {
  display: block;
}

@keyframes nikeSearchSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nike-search-inner {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 10px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.nike-search-icon {
  color: #999;
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}

.nike-search-inner input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #111;
  font-family: var(--default-font);
}

.nike-search-inner input::placeholder {
  color: #999;
}

.nike-search-close {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.nike-search-close:hover {
  color: #111;
}

/* ── Scrolled State ────────────────────────── */
#bagani-header-wrap.scrolled header.main-header .header-sticky {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
}

/* Scrolled: keep navbar white and clean */
#bagani-header-wrap.scrolled .navbar {
  background: transparent !important;
  padding: 8px 0 !important;
}

#bagani-header-wrap.scrolled .main-header .navbar-brand img {
  max-width: 110px;
}

/* ── Old classes (backward compat) ─────────── */
.topbar {
  display: none; /* old topbar hidden, replaced by nike-preheader */
}

.topbar-contact-info,
.topbar-qoute-btn,
.site-logo,
.navbar-cta-btn {
  display: none !important;
}

.main-header .header-sticky.active-sticky-header.hide .navbar {
  padding: 12px 0;
}

.main-header .header-sticky.active-sticky-header.hide .navbar-brand {
  display: block;
  margin-right: 40px;
}

/* ── Social links (kept for backwards compat) ── */
.header-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

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

.header-social-links ul li a i {
  font-size: 20px;
}

/* ── Mobile menu ───────────────────────────── */
.responsive-menu,
.navbar-toggle {
  display: none;
}

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

.slicknav_btn {
  background: transparent;
  padding: 5px 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  border: none;
  text-decoration: none;
}

.slicknav_menutxt {
  display: none !important;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  height: 2px;
  width: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  margin: 5px auto !important;
  transition: all 0.2s ease;
}

.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%;
  left: 0;
  background: transparent;
  padding: 0;
}

.slicknav_nav {
  width: calc(100% - 32px);
  margin: 10px auto !important;
  padding: 10px 0 !important;
  background: #222222; /* Bagani Dark */
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5); /* Stronger shadow for dark mode */
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 14px 24px;
  color: #ffffff; /* White text */
  line-height: normal;
  margin: 4px 16px;
  border-radius: 8px !important;
  transition: all 0.2s ease;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: rgba(255, 193, 7, 0.1);
  color: #FFC107;
}

.slicknav_menu ul ul li a {
  padding: 12px 24px 12px 40px;
}

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

.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: #aaaaaa;
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

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

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


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

.hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, transparent 42.92%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	background-image: none;
}

body[data-page="home"] #header-spacer {
  display: none;
}

body[data-page="home"] .hero.hero-video {
  padding-top: 180px;
}

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

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

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
	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: 1;
}

.excellence-innovating-list{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
	margin-top: 150px;
	z-index: 1;
}

.excellence-innovating-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 100px;
}

.excellence-innovating-list ul li{
	position: relative;
	color: var(--white-color);
	padding-left: 40px;
}

.excellence-innovating-list ul li:before{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background: url('../images/icon-check.svg') no-repeat center left;
	background-size: cover;
}

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

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

.about-image{
	position: relative;
	display: flex;
	justify-content: end;
	padding-top: 200px;
	margin-right: 40px;
}

.about-single-img figure{
	display: block;
	border-radius: 20px;
	overflow: hidden;
	margin: 0;
}

.about-single-img img{
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}

.about-single-img--portrait figure{
	aspect-ratio: 5 / 7;
	max-width: 340px;
}

.about-single-img--portrait img{
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-us .col-lg-6:first-child{
	padding-right: 15px;
}

.about-img-1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 380px;
}

.about-img-2 figure,
.about-img-1 figure{
	display: block;
	border-radius: 40px;
}

.about-img-1 figure img{
	border-radius: 40px;
}

.about-img-2 img{
	border: 10px solid var(--white-color);
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 40px;
}

.company-experience{
	position: absolute;
	top: 50px;
	right: 0px;
	display: flex;
	align-items: center;
	max-width: 250px;
}

.company-experience-counter{
	width: 120px;
}

.company-experience-counter h2{
	font-size: 50px;
	color: var(--accent-color);
}

.company-experience-content p{
	font-size: 18px;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

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

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

.about-content-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

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

.about-content-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

/* About page: accent wrap for portrait image */
.about-img-accent-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-accent-wrap::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #FFC107;
    border-radius: 22px;
    z-index: 0;
    pointer-events: none;
}

.about-img-accent-wrap .about-single-img {
    position: relative;
    z-index: 1;
}

/* About page: eyebrow label above heading */
.about-label-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFC107;
    margin-bottom: 10px;
}

/* About page: 2x2 feature card grid */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 18px 16px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-feature-card:hover {
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.18);
    border-color: rgba(255, 193, 7, 0.4);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon img {
    width: 20px;
    height: 20px;
}

.about-feature-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 4px;
    line-height: 1.3;
}

.about-feature-body p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.genuine-rating-counter{
	background: var(--secondary-color);
	border-radius: 40px;
	padding: 50px;
	text-align: center;
}

.genuine-rating-counter .about-counter{
	margin-bottom: 5px;
}

.genuine-rating-counter .about-counter h2{
    background: url('../images/genuine-rating-counter-bg.jpg');
    background-size: cover;
	background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 80px;
	font-weight: 900;
}

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

.genuine-rating ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.genuine-rating ul li{
	margin-right: 5px;
}

.genuine-rating ul li:last-child{
	margin-right: 0;
}

.genuine-rating ul li i{
	color: var(--accent-color);
}

.genuine-rating-counter-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     06. Our Service css      ***/
/************************************/

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

.our-services:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3C0F0F;
	opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-services .container{
	position: relative;
	z-index: 1;
}

.our-services .section-title h2,
.our-services .section-title h3 {
    font-family: var(--heading-font);
}

.our-services-list{
	position: relative;
	z-index: 2;
	margin-top: -240px;
	background: #f5f5f5;
	padding: 60px 0 80px;
}

.services-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.services-list-title {
    font-size: 32px;
    font-weight: 700;
    color: #121212;
    margin: 0;
    font-family: var(--heading-font);
}

.services-list-nav {
    display: flex;
    gap: 12px;
}

.swiper-nav-btn {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    color: #121212;
    font-size: 18px;
    z-index: 20;
}

.swiper-nav-btn:hover {
    background: #FFC107;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255,193,7,0.3);
}

/* ── Services Slider ────────────────────────────────────── */
.services-slider-wrapper {
	position: relative;
}

.services-list-swiper {
	overflow: hidden;
	padding-bottom: 20px;
	padding-top: 10px; /* Slight padding for hover lift */
}

/* Flat Grid Reset */
.services-list-swiper .swiper-slide {
	height: auto;
}

/* Card Styling */
.services-list-swiper .service-item {
	position: relative;
	background: #fdfdfd;
	border: none;
	border-radius: 24px;
	padding: 40px 30px 45px 30px;
	box-shadow: 0 4px 18px 1px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	text-align: left;
	overflow: hidden;
}

/* Hover Effect */
.services-list-swiper .service-item:hover {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-6px);
}

.full-card-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* Icon Box - Right Aligned / Offset Styling */
.services-list-swiper .service-item .icon-box {
	margin: -20px -30px 40px auto; /* push heavily to top right to bleed out */
	width: 240px; /* Substantially bigger */
	height: 240px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
    /* Solid offset shadow applied to the wrapper to shadow the masked icon inside */
	filter: drop-shadow(-12px 14px 0px #d0d0d0);
    transition: filter 0.4s ease;
}

.services-list-swiper .service-item:hover .icon-box {
    filter: drop-shadow(-16px 18px 0px #c2c2c2);
}

.services-list-swiper .service-item .product-icon-mask {
	width: 100%;
	height: 100%;
	background-color: #111111; /* Default black icon */
	-webkit-mask-size: contain;
	-webkit-mask-position: right top;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: right top;
	mask-repeat: no-repeat;
	transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Horizontal flip for motor icon */
.services-list-swiper .service-item .icon-box.motor-icon .product-icon-mask {
	transform: scaleX(-1);
	-webkit-mask-position: center;
	mask-position: center;
}

/* Base scale hover */
.services-list-swiper .service-item:hover .product-icon-mask {
	transform: scale(1.15) translate(-6px, 6px);
}

/* Flipped scale hover */
.services-list-swiper .service-item:hover .icon-box.motor-icon .product-icon-mask {
	transform: scaleX(-1) scale(1.15) translate(6px, 6px);
}

/* Dynamic CSS Coloring on Hover using :has */
.services-list-swiper .service-item:hover:has(.accent-amihan) .product-icon-mask { background-color: #4A6CDB; }
.services-list-swiper .service-item:hover:has(.accent-laon) .product-icon-mask   { background-color: #C59A27; }
.services-list-swiper .service-item:hover:has(.accent-aman) .product-icon-mask   { background-color: #E76F00; }
.services-list-swiper .service-item:hover:has(.accent-anitun) .product-icon-mask { background-color: #2B6CC4; }
.services-list-swiper .service-item:hover:has(.accent-hilaya) .product-icon-mask { background-color: #D32F2F; }
.services-list-swiper .service-item:hover:has(.accent-hanan) .product-icon-mask  { background-color: #444444; }

/* Service Body Text */
.service-item .service-body {
	margin-top: auto; /* push text to bottom */
	margin-bottom: 0; 
	padding-right: 50px; /* leave space for the arrow button */
}

/* Typography Accent Colors */
.service-item .service-body .category-name {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 4px;
	line-height: 1.2;
}

.accent-amihan { color: #4A6CDB; } /* Blue */
.accent-laon   { color: #C59A27; } /* Gold/Yellow */
.accent-aman   { color: #E76F00; } /* Warm Orange */
.accent-anitun { color: #2B6CC4; } /* Royal Blue */
.accent-hilaya { color: #D32F2F; } /* Subtle Red */
.accent-hanan  { color: #444444; } /* Dark Neutral */

.service-item .service-body .product-type {
	font-size: 26px;
	font-weight: 800;
	color: #111111;
	line-height: 1.1;
	margin: 0;
}

/* Circular Call-to-action Button */
.service-item .service-footer {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 11;
}

.service-item .service-footer .service-btn {
	background: #ffffff;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #111111;
    border: 1px solid #e0e0e0;
	box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.service-item:hover .service-footer .service-btn {
	background: #FFC107;
    border-color: #FFC107;
	color: #111111;
	box-shadow: 0 6px 14px rgba(255, 193, 7, 0.35);
	transform: scale(1.05);
}

/* Mobile Adjustments for Cards */
@media (max-width: 768px) {
	.services-list-swiper .service-item {
		padding: 30px 20px 35px 20px;
	}
	.services-list-swiper .service-item .icon-box {
		height: 240px;
		width: 240px;
		margin: -20px -20px 40px auto;
	}
	.service-item .service-body .category-name {
		font-size: 18px;
	}
	.service-item .service-body .product-type {
		font-size: 22px;
	}
	.service-item .service-footer {
		bottom: 20px;
		right: 20px;
	}
	.service-item .service-footer .service-btn {
		width: 40px;
		height: 40px;
	}
}

/* Pagination */
.services-swiper-pagination {
	position: static !important;
	margin-top: 30px;
	text-align: center;
}

.services-swiper-pagination .swiper-pagination-bullet {
	width: 20px;
	height: 4px;
	border-radius: 2px;
	background: #FFC107;
	opacity: 0.3;
}

.services-swiper-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	width: 40px;
}

@media (max-width: 768px) {
    .services-list-title {
        font-size: 24px;
    }
}

/************************************/
/***       07. Our Story css      ***/
/************************************/

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

.our-story-header-img{
	display: flex;
	align-items: stretch;
	gap: 30px;
}

.our-story-header-img figure{
	flex: 0 0 calc(50% - 15px);
	width: calc(50% - 15px);
	min-width: 0;
	aspect-ratio: 1 / 0.71;
	display: block;
	border-radius: 40px;
	overflow: hidden;
	margin: 0;
	touch-action: manipulation;
}

.our-story-header-img figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

/* Our Story — CSS Grid layout */
.our-story-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"heading ."
		"image   right";
	column-gap: 40px;
	row-gap: 20px;
}

.osg-heading{ grid-area: heading; align-self: start; }
.osg-image  { grid-area: image;   align-self: start; }
.osg-right  { grid-area: right;   align-self: start; margin-top: 60px; }

.our-story-right{
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.our-story-right .our-story-content-body{
	margin-bottom: 0;
	padding-bottom: 0;
}

.our-story-dot{
	display: none;
}

.our-story-img{
	margin-right: 0;
}

.our-story-img figure,
.our-story-img img{
	width: 100%;
	display: block;
	border-radius: 40px;
}

.our-story-img img{
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

.our-story-content-body{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.our-story-content-body p:last-child{
	margin: 0;
}

.our-story-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}

.our-story-counter{
	width: calc(33.33% - 20px);
}

.our-story-counter h3{
	font-size: 50px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.our-story-counter p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.our-story-intro-video{
	display: flex;
	align-items: center;
}

.our-story-client-img{
	margin-right: 50px;
}

.our-story-client-img .client-image{
    display: inline-block;
	border: 1px solid var(--white-color);
	border-radius: 50%;
    margin-left: -18px;
	overflow: hidden;
}

.our-story-client-img .client-image:first-child{
    margin: 0;
}

.our-story-client-img .client-image figure{
	display: block;
}

.our-story-client-img .client-image img{
    max-width: 60px;
}

.video-play-button{
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button a{
	border: 6px solid var(--accent-color);
	border-radius: 50%;
	height: 66px;
	width: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

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

.video-play-button a i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

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

.video-play-button p{
	color: var(--primary-color);
	font-weight: 600;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***       08. What We Do css     ***/
/************************************/

.what-we-do{
	background: url('../images/what-we-do-bg.svg'), #3C0F0F;
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto;
}

.what-we-do .container-fluid{
	padding: 0 !important;
	margin: 0;
	max-width: 100%;
}

/* Desktop: 2 columns side by side; Mobile: stacked */
.what-we-do .row{
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 0 !important;
	padding: 0;
}

.what-we-do .row > [class*="col-"]{
	padding: 0 !important;
	margin: 0 !important;
	position: relative;
	overflow: hidden;
}

.what-we-do-content{
	padding: 60px 80px 50px;
	max-width: 1200px;
	margin: 0 auto;
}

.what-we-do-content .section-title h2{
	font-size: 32px;
}

/* ── What We Do Swiper ─────────────────────────────────────── */
/* Pagination hidden by default (shown on mobile only) */
.what-we-do-pagination{
	display: none;
}

.what-we-do-item{
	height: 100%;
	border: 1px solid var(--dark-divider-color);
	border-radius: 24px;
	padding: 20px;
}

.what-we-do-list-box-1 .what-we-do-item:nth-child(even){
	background: var(--dark-divider-color);
}

.what-we-do-list-box-2 .what-we-do-item:nth-child(odd){
	background: var(--dark-divider-color);
}

.what-we-do-item .icon-box{
	margin-bottom: 14px;
}

.what-we-do-item .icon-box img{
	max-width: 50px;
}

.what-we-do-item .icon-box i{
	font-size: 42px;
	color: transparent;
	-webkit-text-stroke: 1.8px #FFC107;
	text-stroke: 1.8px #FFC107;
	line-height: 1;
}

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

.what-we-item-content p{
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.what-we-do-footer{
	margin-top: 20px;
}

.what-we-do-footer p{
	color: var(--white-color);
	margin: 0;
}
.what-we-do-footer p span{
	color: var(--accent-color);
}
.what-we-do-image{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 480px;
	overflow: hidden;
}

.what-we-do-image figure{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.what-we-do-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}



/************************************/
/***       09. Our Work css       ***/
/************************************/

.our-work{
	padding: 100px 0 60px;
}

.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: 10px 60px;
	padding: 0;margin: 0;
}

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

.our-Project-nav ul li a:before{
    content: '/';
    position: absolute;
    top: 0;
	bottom: 0;
    right: -35px;
}

.our-Project-nav ul li:last-child a:before{
	display: none;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
	color: var(--accent-color);
}

.project-item{
	position: relative;
	height: calc(100% - 40px);
	margin-bottom: 40px;
	text-align: center;
	overflow: hidden;
}

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

.project-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.4s ease-in-out;
}

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

.project-tag{
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 2;
}

.project-tag a{
	position: relative;
	display: block;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	color: var(--white-color);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	text-transform: capitalize;
	padding: 10px 12px;
	overflow: hidden;
}

.project-tag  a::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
	opacity: 10%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-content{
	text-align: center;
}

.project-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

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

/************************************/
/***      10. Our Process css     ***/
/************************************/

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

.our-process-image{
	margin-right: 30px;
}

.our-process-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-process-image img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 40px;
}

.process-step-item{
	position: relative;
	/* border: 1px solid var(--divider-color); */
	border-radius: 40px;
	display: flex;
	align-items: center;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

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

.process-step-item::before{
	content: '';
    display: block;
    position: absolute;
    top: auto;
	bottom: 0;
	left: 0;
    right: 0;
    background: var(--accent-color);
	width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.process-step-item.active:before,
.process-step-item:hover:before{
	height: 100%;
	top: 0;
	bottom: auto;
}

.process-step-no{
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.process-step-no h2{
	font-size: 50px;
	font-weight: 700;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.process-step-content{
	position: relative;
	z-index: 1;
}

.process-step-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.process-step-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.process-step-item.active .process-step-content p,
.process-step-item.active .process-step-content h3,
.process-step-item.active .process-step-no h2,
.process-step-item:hover .process-step-content p,
.process-step-item:hover .process-step-content h3,
.process-step-item:hover .process-step-no h2{
	color: var(--white-color);
}

/************************************/
/***      11. Our Pricing css     ***/
/************************************/

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

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

.pricing-box::before{
	content: '';
	position: absolute;
	top: -25px;
	right: -25px;
	background-repeat: no-repeat;
	background-position: top  right;
	background-size: cover;
	width: 150px;
	height: 150px;
	z-index: 0;
}

.pricing-box.highlighted-box::before{
	filter: brightness(0) invert(1);
}

.pricing-box.box-1::before{
	background-image: url('../images/icon-pricing-box-1.svg');
}

.pricing-box.box-2::before{
	background-image: url('../images/icon-pricing-box-2.svg');
}

.pricing-box.box-3::before{
	background-image: url('../images/icon-pricing-box-3.svg');
}

.pricing-box.highlighted-box{
	background-color: var(--accent-color);
}

.pricing-title{
    margin-bottom: 60px;
}

.pricing-title h2{
    font-size: 60px;
	font-weight: 700;
    color: var(--accent-color);
	margin-bottom: 10px;
}

.pricing-box.highlighted-box .pricing-title h2{
    color: var(--white-color);
}

.pricing-title h2 sup{
	font-size: 30px;
}

.pricing-title h2 sub{
    font-size: 16px;
	font-weight: 400;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlighted-box .pricing-title h2 sub{
	color: var(--white-color);
}

.pricing-title h3{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
}

.pricing-box.highlighted-box .pricing-title h3{
    color: var(--white-color);
}

.pricing-list{
	margin-bottom: 60px;
}

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

.pricing-list ul li{
	width: 100%;
    position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
}

.pricing-box.highlighted-box .pricing-list ul li{
    color: var(--white-color);
}

.pricing-list ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.pricing-box.highlighted-box .pricing-list ul li::before{
    filter: brightness(0) invert(1);
}

.pricing-btn{
	line-height: 1em;
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
	font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***    12. Our Testimonial css   ***/
/************************************/

.our-testimonial{
	background: url('../images/testimonial-bg.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-testimonial-image{
	margin-right: 30px;
}

.our-testimonial-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-testimonial-image img{
	aspect-ratio:  1 / 1.05;
	border-radius: 40px;
	object-fit: cover;
}

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

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

.testimonial-item .testimonial-rating i{
	color: var(--accent-color);
}

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

.testimonial-content p{
	font-size: 20px;
	font-weight: 500;
	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: 10px;
}

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

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

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

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 2;
}

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

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


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

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

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

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

.testimonial-company-slider{
	border-top: 1px solid var(--divider-color);
	padding-top: 80px;
	margin-top: 80px;
}

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

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

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

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

/* ── Magazine Grid Layout — "Let's Read" Style ──────────────────────────── */
.mag-blog { padding: 80px 0; }
.mag-grid { row-gap: 40px; }

/* Shared tag pill */
.mag-tag {
  display: inline-block;
  background: #FFC107;
  color: #222222;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.mag-tag-sm { font-size: 10px; padding: 2px 8px; }

/* Shared read more */
.mag-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFC107;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .4px;
  margin-top: auto;
  padding-top: 10px;
  transition: gap 0.2s;
}
.mag-readmore:hover { color: #fff; gap: 10px; }
.mag-readmore-sm { font-size: 12px; }

/* Shared excerpt */
.mag-excerpt { font-size: 14px; color: #aaa; line-height: 1.6; margin: 0; }

/* ── SECTION 1: Featured + Sidebar ──────────────────────────────────────── */
.mag-top-row {
  border-radius: 20px;
  overflow: hidden;
  background: #232323;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.mag-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mag-featured-img {
  display: block;
  overflow: hidden;
  height: 320px;
  flex-shrink: 0;
}
.mag-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mag-featured:hover .mag-featured-img img { transform: scale(1.04); }

.mag-featured-body {
  display: flex;
  flex-direction: column;
  padding: 28px 32px 32px;
  flex: 1;
}
.mag-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.mag-meta-date {
  font-size: 12px;
  color: #777;
}
.mag-featured-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #fff;
}
.mag-featured-title a { color: #fff; text-decoration: none; }
.mag-featured-title a:hover { color: #FFC107; }

/* Sidebar */
.mag-sidebar-col { border-left: 1px solid #2e2e2e; }
.mag-sidebar { display: flex; flex-direction: column; height: 100%; }

.mag-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid #2e2e2e;
  transition: background 0.2s;
  flex: 1;
}
.mag-sidebar-item:last-child { border-bottom: none; }
.mag-sidebar-item:hover { background: #2a2a2a; }

.mag-sidebar-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.mag-sidebar-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.mag-sidebar-title a { color: #fff; text-decoration: none; }
.mag-sidebar-title a:hover { color: #FFC107; }
.mag-sidebar-excerpt {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mag-sidebar-date { font-size: 11px; color: #555; margin-top: 2px; }

.mag-sidebar-thumb {
  display: block;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
}
.mag-sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.mag-sidebar-item:hover .mag-sidebar-thumb img { transform: scale(1.08); }

/* ── SECTION 2: Full-bleed Overlay Cards ─────────────────────────────────── */
.mag-overlay-row { border-radius: 20px; overflow: hidden; }
.mag-overlay-card {
  position: relative;
  overflow: hidden;
  height: 360px;
}
.mag-overlay-img { display: block; height: 100%; }
.mag-overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mag-overlay-card:hover .mag-overlay-img img { transform: scale(1.06); }
.mag-overlay-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  pointer-events: none;
}
.mag-overlay-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mag-overlay-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}
.mag-overlay-title a { color: #fff; text-decoration: none; }
.mag-overlay-title a:hover { color: #FFC107; }
.mag-overlay-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── SECTION 3: Latest Articles ──────────────────────────────────────────── */
.mag-latest-section { padding-top: 8px; }
.mag-latest-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.mag-latest-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mag-latest-line { flex: 1; height: 1px; background: #333; }

.mag-latest-item {
  background: #232323;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mag-latest-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.mag-latest-img { display: block; overflow: hidden; height: 150px; }
.mag-latest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.mag-latest-item:hover .mag-latest-img img { transform: scale(1.06); }

.mag-latest-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mag-latest-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mag-latest-title a { color: #fff; text-decoration: none; }
.mag-latest-title a:hover { color: #FFC107; }
.mag-latest-date { font-size: 11px; color: #555; margin-top: auto; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .mag-sidebar-col { border-left: none; border-top: 1px solid #2e2e2e; }
  .mag-featured-img { height: 250px; }
  .mag-featured-body { padding: 22px 22px 26px; }
  .mag-featured-title { font-size: 20px; }
  .mag-overlay-card { height: 290px; }
  .mag-overlay-wrap:first-child .mag-overlay-card { border-radius: 0; }
  .mag-overlay-wrap:last-child .mag-overlay-card { border-radius: 0; }
}

@media (max-width: 767px) {
  .mag-blog { padding: 50px 0; }
  .mag-featured-img { height: 210px; }
  .mag-featured-body { padding: 18px 18px 22px; }
  .mag-featured-title { font-size: 18px; }
  .mag-overlay-card { height: 250px; }
  .mag-overlay-body { padding: 18px 20px; }
  .mag-overlay-title { font-size: 16px; }
  .mag-sidebar-item { padding: 16px 18px; }
  .mag-sidebar-thumb { width: 62px; height: 62px; }
  .mag-latest-img { height: 130px; }
}

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

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

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

.post-featured-image figure,
.post-featured-image a{
    display: block;
	border-radius: 40px;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.63;
    object-fit: cover;
	border-radius: 40px;
    transition: all 0.4s ease-in-out;
}

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

.post-item-body{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.post-item-content{
	width: 65%;
}

.post-item-content h2{
    font-size: 20px;
	font-weight: 400;
	font-family: var(--default-font);
	line-height: 1.4em;
}

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

.post-item-btn{
	text-align: right;
	margin-left: 20px;
}

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

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

.post-item-btn a img{
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.post-item-btn a:hover img{
	transform: rotate(45deg);
}

/* ── Product Image Lightbox ── */
.bagani-img-zoom-hint {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.bagani-img-lightbox:hover .bagani-img-zoom-hint {
    opacity: 1;
}

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

.main-footer{
	background: url(../images/warrior-light.svg), var(--primary-color);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 250px;
	padding: 100px 0 0;
}

.about-cta-section {
    background: url(../images/warrior-light.svg), var(--primary-color);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 250px;
    padding: 80px 0;
}

.footer-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title{
	margin-bottom: 0;
}



.about-footer{
	width: 100%;
	max-width: 300px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

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

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

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

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

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

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

.page-header{
	position: relative;
	background: linear-gradient(135deg, #0d0d0d 0%, #1c1c1c 50%, #2d2d2d 100%);
	padding: 200px 0 120px;
	margin-top: -80px;
	z-index: 0;
}

/* Modifier to remove background image inside product pages only */
.page-header.product-page-header {
	background-image: none !important;
	background-color: var(--primary-color) !important;
}

.page-header::before{
    display: none;
}

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

.page-header-box h1{
    color: var(--white-color);
    font-size: 70px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
    cursor: none;
}

.page-header-box h1 span{
	font-weight: 400;
	color: #FFC107;
	background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FF8C00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

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

.page-header-box ol li.breadcrumb-item.active{
	color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "\f111";
    font-family: "FontAwesome";
	font-size: 6px;
    color: var(--accent-color);
}

.our-mission-vision{
	position: relative;
	background-color: #3C0F0F;
	padding-bottom: 100px;
}

.our-mission-vision .section-title h2{
	font-size: 32px;
}

.mission-vision-bg{
	position: relative;
	background-color: #3C0F0F;
	padding: 100px 0 200px;
}

.mission-vision-bg:before{
    display: none;
}

.mission-vision-box{
	position: relative;
	border: 1px solid var(--dark-divider-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 40px;
	margin-top: -200px;
	overflow: hidden;
	z-index: 1;
	display: flex;
}

.mission-vision-nav {
	width: 25%;
	flex-shrink: 0;
	background-color: var(--white-color);
	border-right: 1px solid var(--divider-color);
}

.mission-vision-nav ul{
	list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
	overflow: hidden;
	height: 100%;
}

.mission-vision-nav ul li{
	width: 100%;
	position: relative;
    display: block;
}

.mission-vision-nav ul li:last-child{
	padding-right: 0;
}

.mission-vision-nav ul li .nav-link{
	display: flex;
	align-items: center;
	width: 100%;
    background: transparent;
	border: none;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
	padding: 30px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active,
.mission-vision-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color) !important;
	border-radius: 0;
}

.mission-vision-nav ul li .nav-link img{
	max-width: 40px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active img,
.mission-vision-nav ul li .nav-link:hover img{
	filter: brightness(0) invert(1);
}

.mission-vision-content-wrapper {
	width: 75%;
	background-color: var(--white-color);
}

.mission-vision-item{
	padding: 30px 40px;
}

/* Remove Bootstrap nav-tabs bottom border from mission/vision tabs */
#mvTab.nav-tabs {
	border-bottom: none;
}

#mvTab.nav-tabs .nav-link {
	border: none;
	border-radius: 0;
}

#mvTab.nav-tabs .nav-link.active {
	border: none;
}

.mission-vision-content-header{
	margin-bottom: 0;
}

.mission-vision-content-header p{
	margin: 0;
	font-family: 'Love Nature', sans-serif;
	font-weight: normal;
	font-size: 2rem;
	line-height: 1.3;
}

.mission-vision-content--value .mission-vision-content-header {
	margin-bottom: 0;
	max-width: 700px;
}

.mission-vision-content--value .mission-vision-content-header p {
	margin-bottom: 16px;
	line-height: 1.75;
}

.mission-vision-content--value .mission-vision-content-header p:last-child {
	margin-bottom: 0;
}

.mission-vision-content-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.mission-vision-content-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.mission-vision-content-list ul li:last-child{
	margin-bottom: 0;
}

.mission-vision-content-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.mission-vision-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.mission-vision-image img{
	width: 100%;
	aspect-ratio: 1 / 0.63;
	object-fit: cover;
	border-radius: 40px;
}

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

.our-history-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.our-history-nav{
	width: calc(30% - 25px);
}

.our-history-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	overflow: hidden;
}

.our-history-nav ul li{
	width: 100%;
	position: relative;
    display: inline-block;
	text-align: center;
}

.our-history-nav ul li:last-child{
	border: none;
}

.our-history-nav ul li .nav-link{
	display: block;
	width: 100%;
    background: transparent;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
    transition: all 0.3s ease-in-out;
}

.our-history-nav ul li .nav-link.active,
.our-history-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
}

.our-history-item{
	width: calc(70% - 25px);
}

.our-history-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.our-history-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

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

.our-history-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.our-history-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-history-image img{
    width: 100%;
	aspect-ratio: 1 / 0.96;
    object-fit: cover;
    border-radius: 40px;
}

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

.our-features-boxes{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	overflow: hidden;
}

.our-features-item{
	position: relative;
	width: 50%;
	padding: 50px;
	overflow: hidden;
}

.our-features-item:nth-child(1n + 1){
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.our-features-item:nth-child(2n + 2){
	border-right: none;
}

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

.our-features-item:hover::before{
    top: 0;
    border-radius: 0;
    opacity: 1;
}

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

.our-features-item .icon-box img{
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

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

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

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

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

.our-features-item.features-image-box{
	border: none;
	padding: 0;
}

.our-features-item.features-image-box figure{
	display: block;
	height: 100%;
}

.our-features-item.features-image-box img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.485;
    object-fit: cover;
}

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

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

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

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

.team-image figure{
	position: relative;
}

.team-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.93%, rgba(0, 0, 0, 0.8) 95.83%);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-member-item:hover .team-image figure::before{
	opacity: 1;
	visibility: visible;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

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

.team-social-icon{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	margin: 0 auto; 
	transform: translateY(100%);
	text-align: center;
	z-index: 2;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon{
	bottom: 20px;
	transform: translateY(0);
}

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

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 20px;
}

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

.team-social-icon ul li a{
    color: var(--white-color);
	cursor: pointer;
    transition: all 0.3s ease-in-out;
}

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

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

.team-content{
	text-align: center;
}

.team-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.team-content h3:hover{
	color: var(--accent-color);
}

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

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

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

.our-faqs-images{
	position: relative;
}

.our-faqs-img figure{
	position: relative;
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-faqs-img figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(34, 34, 34, 0) 64.31%, rgba(34, 34, 34, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.faqs-img-cta-box{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.faqs-img-cta-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.faqs-img-cta-box ul li{
	display: inline-block;
	margin-right: 40px;
}

.faqs-img-cta-box ul li:last-child{
	margin-right: 0;
}

.faqs-img-cta-box ul li a img{
	max-width: 30px;
	margin-right: 15px;
}

.faqs-img-cta-box ul li a{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faqs-img-cta-box ul li:hover a{
	color: var(--accent-color);
}

.our-faq-section .accordion-item{
	padding: 0;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
}

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

.our-faq-section h2.accordion-header {
	font-family: var(--default-font);
}

.our-faq-section .accordion-header .accordion-button{
	font-family: var(--default-font) !important;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: var(--white-color);
	padding: 15px 50px 15px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
	background: var(--accent-color);
   	color: var(--white-color);
   	border-bottom: 1px solid var(--dark-divider-color);
}

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

.our-faq-section .accordion-item .accordion-button::after, 
.our-faq-section .accordion-item .accordion-button.collapsed::after{
    content: '\f077';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);    
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
    color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-body{
	background: var(--accent-color);
	padding: 15px 50px 15px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

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

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

.page-services .service-item{
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.page-services .service-item:hover{
	border-color: var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
}

/************************************/
/***   17. Services Single css    ***/
/************************************/

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

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

.service-catagery-list{
	border: 1px solid var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
	box-shadow: 0px 4px 30px 0px #0000000A;
	overflow: hidden;
}

.service-catagery-list h3{
	font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 20px 30px;
}

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

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

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

.service-catagery-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

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

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

.service-catagery-list ul li a:hover:before{
	transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box{
	position: relative;
	background-image: none;
	background-color: #121212;
    border-radius: 20px;
	padding: 40px;
    overflow: hidden;
	z-index: 1;
}

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

.sidebar-cta-logo{
	position: relative;
	margin-bottom: 30px;
}

.sidebar-cta-logo img{
    width: 100%;
	max-width: 160px;	
}

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

.sidebar-cta-content h3{
    font-size: 40px;
	font-weight: 300;
	color: var(--white-color);
    margin-bottom: 10px;
}

.sidebar-cta-content h3 span{
	font-weight: 700;
}

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

.sidebar-cta-contact-list{
	position: relative;
}

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

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

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	margin-right: 15px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	overflow: hidden;
	z-index: 1;
}

.sidebar-cta-contact-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	opacity: 16%;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	z-index: 0;
}

.sidebar-cta-contact-item img{
	position: relative;
    max-width: 24px;
	z-index: 1;
}

.cta-contact-item-title h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
	text-transform: none;
}

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

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

.service-featured-image figure{
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.service-featured-image img{
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

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

.service-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-entry h2 span{
    font-weight: 400;
	color: #FFC107;
	background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FF8C00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

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

.service-entry ul li{
	position: relative;
	width: calc(33.33% - 20px);
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

.service-entry ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

.service-entry-box{
	display: flex;
	gap: 80px 30px;
	flex-wrap: wrap;
	margin: 40px 0;
}

.service-entry-item{
	position: relative;
	width: calc(50% - 15px);
}

.service-entry-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--divider-color);
	height: 1px;
	width: 100%;
	transform: translateY(40px);
}

.service-entry-item:nth-last-child(-n + 2)::before{
	display: none;
}

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

.service-entry-item .icon-box img{
	max-width: 50px;
}

.service-entry-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.service-entry-item-content p{
	margin-bottom: 0;
}

.service-entry-images{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

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

.service-entry-img figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.service-entry-img img{
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	border-radius: 40px;
}

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

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

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

.page-blog .post-featured-image img{
    aspect-ratio: 1 / 0.91;
}

.page-blog .post-item .post-item-body{
	display: block;
}

.page-blog .post-item .post-item-content{
	width: 100%;
	margin-bottom: 20px;
}

.post-readmore-btn a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: var(--accent-color);
	padding-right: 34px;
	transition: all 0.3s ease-in-out;
}

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

.post-readmore-btn a::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.post-readmore-btn a:hover::before{
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(0);
}

.page-pagination{
    margin-top: 10px;
    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(--divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	border-radius: 40px;
	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: 70px;
}

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

.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(../images/icon-blockquote.svg), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 30px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	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: 10px;
    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: 10px;
    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-projects{
	padding: 100px 0 60px;
}

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

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

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

.project-detail-box{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.project-detail-title{
	background-color: var(--accent-color);
	padding: 20px 30px;
}

.project-detail-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

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

.project-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

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

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

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

.project-detail-item .icon-box img{
	max-width: 20px;
}

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

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

.project-detail-content p{
	margin-bottom: 0;
}

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

.project-single-image figure{
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.project-single-image img{
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

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

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

.project-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.project-entry h2 span{
    font-weight: 400;
	color: #FFC107;
	background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FF8C00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

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

.project-entry ul li{
	position: relative;
	width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

.project-entry ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

.project-query-item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 60px;
}

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

.project-query-item:nth-of-type(even){
	flex-direction: row-reverse;
}

.project-query-content{
	width: calc(50% - 15px);
}

.project-query-box ul{
	margin-bottom: 0;
}

.project-query-box ul li{
	width: 100%;
}

.project-query-img{
	width: calc(50% - 15px);
}

.project-query-img figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.project-query-img img{
	width: 100%;
	aspect-ratio: 1 / 0.73;
	object-fit: cover;
	border-radius: 40px;
}

/************************************/
/***      22. Team Page css       ***/
/************************************/

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

/************************************/
/***      23. Team Single css     ***/
/************************************/

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

.team-member-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 30px;
}

.team-member-box{
	background-color: var(--white-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border: 1px solid var(--secondary-color);
	border-radius: 40px;
	padding: 30px;
	margin-bottom: 60px;
}

.team-member-image{
	margin-bottom: 30px;
}

.team-member-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.team-member-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

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

.team-member-name{
	text-align: center;
	margin-bottom: 20px;
}
	
.team-member-name h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-member-name p{
	text-transform: capitalize;
	margin: 0;
}

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

.team-member-social-list ul li{
	display: inline-block;
    margin-right: 20px;
}

.team-member-social-list ul li:last-child{
	margin: 0;
}

.team-member-social-list ul li a{
	color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-member-social-list ul li a:hover{
    color: var(--primary-color);
}

.team-member-social-list ul li a i{
    font-size: 20px;
    color: inherit;
}

.team-detail-box{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	overflow: hidden;
}

.team-detail-title{
	background-color: var(--accent-color);
	padding: 22px 30px;
}

.team-detail-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-detail-list{
	padding: 30px;
}

.team-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

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

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

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

.team-detail-item .icon-box img{
	max-width: 20px;
}

.team-detail-content{
	width: calc(100% - 60px);
}

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

.team-detail-content p{
	margin-bottom: 0;
}

.team-member-info,
.team-member-skills-feature{
	margin-bottom: 60px;
}

.team-member-content h2{
	font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
}

.team-member-content h2 span{
    font-weight: 400;
	color: #FFC107;
	background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FF8C00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.team-member-content p{
	margin-bottom: 20px;
}

.team-member-content p:last-child{
	margin-bottom: 0;
}

.team-member-skills-feature{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-member-skills,
.team-member-feature{
	width: calc(50% - 15px);
}

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

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

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

.skills-progress-bar .skill-data .skill-title{
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
    font-size: 15px;
    font-weight: 400;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
    overflow: hidden;
}

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

.team-member-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member-content ul li{
    position: relative;
	width: 100%;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 40px;
}

.team-member-content ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

/************************************/
/***     24. Pricing Page css     ***/
/************************************/

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

/************************************/
/***   25. Testimonial Page css   ***/
/************************************/

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

.client-testimonial-item{
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 40px;
	margin-bottom: 30px;
}

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

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

.client-testimonial-rating i{
	color: var(--accent-color);
}

.client-testimonial-content p{
	margin-bottom: 0;
}

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

.client-testimonial-author-content{
	width: calc(100% - 55px);
	display: flex;
	align-items: center;
}

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

.client-author-image figure{
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.client-author-image img{
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

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

.client-author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
	margin: 0;
}

.client-testimonial-quote{
	margin-left: 15px;
}

.client-testimonial-quote img{
	max-width: 40px;
}

/************************************/
/***     26. 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{
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

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

.video-gallery-image{
	border-radius: 20px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***      28. FAQs Page css       ***/
/************************************/

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

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

.faq-catagery-list{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

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

.faq-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

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

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

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

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	transform: translateY(-50%);
    background: url('../images/arrow-dark.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
	transform: translateY(-50%) rotate(45deg);
}

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

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

/************************************/
/***   29. Contact Us Page css    ***/
/************************************/

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

.contact-information{
	margin-right: 40px;
}

.contact-info-item{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
    margin-bottom: 40px;
}

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

.contact-info-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 10px;
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
    margin-right: 20px;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-color: transparent;
}

.contact-info-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    background: var(--primary-color);
    border-radius: 10px;
    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 img{
	position: relative;
    max-width: 30px;
	z-index: 1;
}

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

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

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

.contact-us-form{
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 40px;
    padding: 40px;
}

.contact-us-form .section-title h2{
	font-family: "Manrope", sans-serif;
	font-weight: 700;
}

.contact-form .form-control{
    font-size: 16px;
	font-weight: 400;
    background-color: var(--white-color);
    color: var(--text-color);
	border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    padding: 17px 15px;
}

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

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

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/************************************/
/***      30. 404 Page css        ***/
/************************************/

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

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

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

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

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

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

/************************************/
/***      31. Responsive css      ***/
/************************************/

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

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


}

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

	.what-we-do-content{
		padding: 60px 40px 50px;
	}


}

@media only screen and (max-width: 991px) {
  .slicknav_menu .slicknav_icon-bar {
    background-color: #ffffff !important;
  }
	
	.btn-default span{
		padding: 12px 15px;
	}

	.topbar{
		padding: 15px 0;
	}

	/* Nike pre-header: hide on tablet/mobile */
	.nike-preheader {
		display: none;
	}

	.site-logo{
		display: none;
	}

	.topbar-contact-info{
		justify-content: center;
	}

	.topbar-contact-info ul{
		margin-right: 40px;
		padding-right: 40px;
	}

	.topbar-contact-info ul li .icon-box{
		width: 35px;
		height: 35px;
		margin-right: 15px;
	}

	.topbar-contact-info li .icon-box img{
		max-width: 20px;
	}

	.topbar-contact-info ul li p{
		font-size: 18px;
		width: calc(100% - 50px);
	}

	.navbar{
		padding: 10px 0;
	}

	.main-header .navbar-brand{
		display: block !important;
	}

	.main-header .navbar-brand img{
		max-width: 120px;
	}

	/* Hide CTA and search on mobile, keep just icons */
	.nike-nav-cta {
		display: none !important;
	}

	.nike-nav-actions {
		margin-left: auto;
		margin-right: 10px;
	}

	/* Hide desktop nav links on mobile — hamburger menu handles it */
	.main-menu,
	.collapse.navbar-collapse.main-menu {
		display: none !important;
	}

	/* Hide search drawer on mobile */
	.nike-search-drawer {
		display: none !important;
	}

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

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

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

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

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

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

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

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

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

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

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

	.header-social-links{
		display: none;
	}

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

	.hero.hero-slider-layout .hero-slide{
		padding: 100px 0 150px;
	}

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

	.excellence-innovating-list{
		padding-top: 30px;
		margin-top: 80px;
	}

	.excellence-innovating-list ul{
		gap: 20px 30px;
	}

	.excellence-innovating-list ul li{
		font-size: 14px;
		padding-left: 30px;
	}

	.excellence-innovating-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.about-us{
		padding: 50px 0;
		background-size: 50% auto;
	}

	.about-features-grid {
		grid-template-columns: 1fr;
	}

	.about-img-accent-wrap::before {
		display: none;
	}

	.about-image{
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
		padding-top: 120px;
	}

	.company-experience{
		top: 30px;
		max-width: 195px;
	}

	.company-experience-counter h2{
		font-size: 40px;
	}

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

	.about-img-2 img{
		width: 100%;
		height: auto;
	}

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

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

	.about-content-list ul li{
		padding-left: 30px;
	}

	.about-content-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.genuine-rating-counter{
		padding: 40px;
	}

	.genuine-rating-counter .about-counter h2{
		font-size: 60px;
	}

	.genuine-rating-counter .genuine-rating{
		margin-bottom: 10px;
	}

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

	.our-services-list{
		margin-top: -140px;
	}

	.services-list-box{
		padding: 40px;
	}

	.services-list-box .service-item{
		width: calc(50% - 30px);
	}

	.services-list-box .service-item:nth-child(2n + 2):after{
		display: none;
	}

	.service-item .icon-box{
		margin-bottom: 20px;
	}

	.service-item .icon-box img{
		max-width: 50px;
	}

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

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

	.our-story .section-row{
		margin-bottom: 30px;
	}

	.our-story-grid{
		grid-template-columns: 1fr;
		grid-template-areas:
			"heading"
			"image"
			"right";
		row-gap: 16px;
	}

	.osg-right{
		margin-top: 0;
	}

	.our-story-right{
		gap: 20px;
	}

	.our-story-header-img{
		margin-top: 0;
	}

	.our-story-img{
		margin-right: 0px;
		margin-bottom: 0;
	}

	.our-story-img img{
		aspect-ratio: 1 / 0.55;
	}

	.our-story-content-body{
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.our-story-counters{
		margin-bottom: 40px;
	}

	.our-story-counter h3{
		font-size: 40px;
	}

	.our-story-counter p{
		font-size: 18px;
	}

	.our-story-client-img .client-image img{
		max-width: 50px;
	}

	.what-we-do{
		background-position: bottom 50% left;
	}

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

	.what-we-do-item{
		padding: 30px 20px;
	}

	.what-we-do-item .icon-box{
		margin-bottom: 20px;
	}

	.what-we-do-footer{
		margin-top: 30px;
	}

	/* Swiper active on mobile */
	.what-we-do-swiper{
		overflow: hidden;
	}

	.what-we-do-pagination{
		display: block;
		position: static !important;
		margin-top: 30px;
		text-align: center;
	}

	/* Image banner: fixed height on mobile (stacks below content) */
	.what-we-do-image{
		height: 360px;
		min-height: auto;
	}



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

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

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

	.our-Project-nav ul{
		gap: 10px 30px;
	}

	.our-Project-nav ul li a:before{
		right: -20px;
	}

	.our-Project-nav ul li a{
		font-size: 14px;
	}

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

	.project-tag{
		top: 15px;
		left: 15px;
	}

	.project-tag a{
		font-size: 14px;
	}

	.project-image figure{
		border-radius: 20px;
	}

	.project-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 30px;
	}

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

	.our-process-image{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-process-image img{
		aspect-ratio: 1 / 0.73;
		border-radius: 30px;
	}

	.process-step-item{
		border-radius: 30px;
		padding: 20px;
	}

	.process-step-no h2{
		font-size: 40px;
	}

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

	.pricing-box{
		border-radius: 30px;
		padding: 30px;
	}

	.pricing-box::before{
		width: 100px;
		height: 100px;
	}

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

	.pricing-title h2{
		font-size: 45px;
	}

	.pricing-title h2 sup{
		font-size: 24px;
	}

	.pricing-list{
		margin-bottom: 40px;
	}

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

	.pricing-benefit-list{
		margin-top: 10px;
	}

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

	.our-testimonial-image{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-testimonial-image figure,
	.our-testimonial-image img{
		aspect-ratio: 1 / 0.8;
		border-radius: 30px;
	}

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

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

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

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 46px;
		height: 46px;
	}

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

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

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

	.post-featured-image figure, 
	.post-featured-image a,
	.post-featured-image img{
		aspect-ratio: 1 / 0.73;
		border-radius: 30px;
	}

	.post-item-content{
		width: auto;
	}

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

	.post-item-btn{
		margin-left: 10px;
	}

	.post-item-btn a{
		width: 40px;
		height: 40px;
	}

	.main-footer{
		background-size: 50% auto;
		padding: 50px 0 0;
	}

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

	.about-footer{
		max-width: 100%;
		margin-bottom: 30px;
	}

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

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

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

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

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

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

	.mission-vision-box{
		border-radius: 30px;
		margin-top: -150px;
		flex-direction: column;
	}

	.mission-vision-nav {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--divider-color);
	}
	
	.mission-vision-nav ul {
		flex-direction: row;
	}
	
	.mission-vision-content-wrapper {
		width: 100%;
	}

	.mission-vision-nav ul li .nav-link{
		font-size: 18px;
		padding: 20px;
	}

	.mission-vision-nav ul li .nav-link img{
		max-width: 30px;
		margin-right: 10px;
	}

	.mission-vision-item{
		padding: 30px;
	}

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

	.mission-vision-content-header{
		margin-bottom: 20px;
	}

	.mission-vision-content-list ul li{
		margin-bottom: 15px;
	}

	.mission-vision-image figure{
		border-radius: 30px;
	}

	.mission-vision-image img{
		aspect-ratio: 1 / 0.53;
		border-radius: 30px;
	}

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

	.our-history-box{
		gap: 30px;
	}

	.our-history-item,
	.our-history-nav{
		width: 100%;
	}

	.our-history-nav ul li .nav-link{
		padding: 20px;
	}

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

	.our-history-list ul li{
		margin-bottom: 15px;
	}

	.our-history-image figure{
		border-radius: 30px;
	}

	.our-history-image img{
		aspect-ratio: 1 / 0.56;
		border-radius: 30px;
	}

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

	.our-features-boxes{
		border-radius: 30px;
	}

	.our-features-item{
		padding: 20px;
	}

	.our-features-item .icon-box{
		margin-bottom: 20px;
	}

	.features-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

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

	.team-image img{
		aspect-ratio: 1 / 1.1;
	}

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

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

	.our-faqs-img{
		margin-bottom: 30px;
	}

	.our-faqs-img figure{
		border-radius: 30px;
	}

	.our-faqs-img figure img{
		aspect-ratio: 1 / 0.69;
		border-radius: 30px;
	}

	.faqs-img-cta-box{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 18px;
	}

	.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{
		margin-bottom: 30px;
	}

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

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

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

	.sidebar-cta-logo{
		margin-bottom: 20px;
	}

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

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

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

	.service-featured-image figure{
		border-radius: 30px;
	}

	.service-featured-image img{
		aspect-ratio: 1 / 0.6;
		border-radius: 30px;
	}

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

	.service-entry h2{
		font-size: 40px;
	}

	.service-entry-box{
		gap: 40px 30px;
		margin: 20px 0;
	}

	.service-entry-item::before{
		transform: translateY(20px);
	}

	.service-entry-item .icon-box{
		margin-bottom: 20px;
	}

	.service-entry-item .icon-box img{
		max-width: 40px;
	}

	.service-entry-item-content h3{
		margin-bottom: 15px;
	}

	.service-entry-img figure,
	.service-entry-img img{
		aspect-ratio: 1 / 0.89;
		border-radius: 30px;
	}

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

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

	.page-blog .post-featured-image img{
		aspect-ratio: 1 / 0.81;
	}

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

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

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

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

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

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

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

	.tag-links{
		font-size: 22px;
	}

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

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

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

	.project-detail-box{
		margin-bottom: 30px;
	}

	.project-detail-title{
		padding: 15px 30px;
	}

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

	.project-detail-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

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

	.project-single-image figure{
		border-radius: 30px;
	}

	.project-single-image img{
        aspect-ratio: 1 / 0.6;
		border-radius: 30px;
    }

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

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

	.project-entry h2{
		font-size: 40px;
	}

	.project-entry ul{
		gap: 10px;
	}

	.project-entry ul li{
		width: calc(50% - 5px);
		padding-left: 30px;
		font-size: 14px;
	}

	.project-entry ul li::before{
		width: 20px;
		height: 20px;
	}

	.project-query-item{
		margin-bottom: 30px;
	}

	.project-query-box ul{
		margin-bottom: 0;
	}

	.project-query-box ul li{
		width: 100%;
	}

	.project-query-img figure,
	.project-query-img img{
		border-radius: 30px;
	}

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

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

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

	.team-member-box{
		padding: 20px;
		margin-bottom: 30px;
	}

	.team-member-image{
		margin-bottom: 20px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.85;
		object-position: top center;
	}

	.team-detail-title{
		padding: 15px 20px;
	}

	.team-detail-list{
		padding: 20px;
	}

	.team-detail-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.team-member-info,
	.team-member-skills-feature{
		margin-bottom: 30px;
	}

	.team-member-content h2{
		font-size: 34px;
	}

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

	.skills-progress-bar .skillbar .skill-progress{
		height: 12px;
	}

	.team-member-content ul li{
		padding-left: 30px;
	}

	.team-member-content ul li::before{
		width: 20px;
		height: 20px;
	}

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

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

	.client-testimonial-item{
		padding: 30px;
	}

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

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

	.client-author-image{
		margin-right: 10px;
	}

	.client-author-image img{
		width: 50px;
		height: 50px;
		border-radius: 10px;
	}

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

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

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

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

	.page-faqs{
		padding: 50px 0;
	}
	
	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.faq-catagery-list{
		margin-bottom: 30px;
	}
	
	.faq-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.faq-catagery-list ul li a::after{
		width: 22px;
		height: 22px;
	}
	
	.our-faq-section.page-faq-accordion{
		margin-bottom: 30px;
	}	

	.page-contact-us{
		padding: 50px 0;
		background-size: 50% auto;
	}

	.contact-information{
		margin-right: 0;
		margin-bottom: 30px;
	}

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

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

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

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

	.contact-us-form{
		border-radius: 30px;
		padding: 30px;
	}

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

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

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

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

	.topbar{
        padding: 10px 0;
    }

	.topbar-contact-info ul{
        margin-right: 0px;
        padding-right: 0px;
		border: none;
    }

	.topbar-contact-info ul li .icon-box{
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

	.topbar-contact-info li .icon-box img{
        max-width: 16px;
    }

	.topbar-contact-info ul li p{
        font-size: 14px;
        width: calc(100% - 40px);
	}

	.topbar-qoute-btn{
		display: none;
	}

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

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

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

	.excellence-innovating-list ul{
		gap: 15px;
	}

	.excellence-innovating-list ul li{
		width: 100%;
	}

	.about-image{
		max-width: 100%;
		padding-top: 90px;
	}

	.about-img-1{
		max-width: 200px;
	}

	.about-img-2 figure,
	.about-img-1 figure{
		border-radius: 30px;
	}

	.about-img-2 img,
	.about-img-1 figure img{
		border-radius: 30px;
	}

	.about-img-2{
		max-width: 250px;
	}
	
	.company-experience{
		display: block;
		top: 15px;
	}

	.company-experience-counter{
		width: 100%;
	}

	.company-experience-counter h2{
        font-size: 30px;
    }

	.company-experience-content{
		width: 100%;
	}

	.company-experience-content p{
        font-size: 14px;
    }

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

	.genuine-rating-counter{
		border-radius: 30px;
        padding: 30px;
    }

	.genuine-rating-counter .about-counter h2{
		font-size: 40px;
	}

	.services-list-box{
		border-radius: 30px;
        padding: 20px 15px;
		gap: 30px 10px;
    }

	.services-list-box .service-item{
        width: 100%;
    }

	.services-list-box .service-item:after{
		display: none;
	}

	.service-body,
	.service-item .icon-box{
        margin-bottom: 15px;
    }

	.service-body{
		margin-bottom: 20px;
	}

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

	.service-item .service-footer a{
		width: 50px;
		height: 50px;
		border-radius: 50%;
	}

	.our-story-img figure,
	.our-story-img img,
	.our-story-header-img figure,
	.our-story-header-img figure img{
		border-radius: 20px;
	}

	.our-story-content-body{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

	.our-story-counters{
		gap: 15px;
		margin-bottom: 30px;
	}

	.our-story-counter{
		width: calc(33.33% - 10px);
	}

	.our-story-counter h3{
        font-size: 30px;
    }

	.our-story-counter p{
		font-size: 16px;
	}

	.our-story-client-img{
		margin-right: 30px;
	}

	.video-play-button a{
		height: 56px;
		width: 56px;
		margin-right: 10px;
	}

	.what-we-do-item{
		border-radius: 30px;
		width: 100%;
	}

	/* Keep mobile slides visually consistent even when text length differs. */
	.what-we-do-swiper .swiper-slide{
		height: auto;
		display: flex;
	}

	.what-we-do-swiper .what-we-do-item{
		min-height: 210px;
		display: flex;
		flex-direction: column;
	}

	.what-we-do-swiper .what-we-item-content h3{
		min-height: 2.6em;
	}

	.what-we-do-swiper .what-we-item-content p{
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.what-we-do-list-box-2 .what-we-do-item:nth-child(odd){
		background: transparent;
	}

	.what-we-do-list-box-2 .what-we-do-item:nth-child(even){
		background: var(--dark-divider-color);
	}

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

	.project-tag a{
		padding: 8px 10px;
	}

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

	.process-step-no{
		margin-right: 10px;
	}

	.process-step-no h2{
        font-size: 30px;
    }

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

	.pricing-box{
        padding: 30px 20px;
    }

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

	.pricing-title h2{
        font-size: 30px;
    }

	.pricing-title h2 sup{
        font-size: 18px;
    }

	.pricing-title h3{
		font-size: 18px;
	}

	.pricing-list{
        margin-bottom: 30px;
    }

	.pricing-list ul li{
		padding-left: 30px;
	}

	.pricing-list ul li::before{
		width: 20px;
		height: 20px;
	}

	.pricing-benefit-list ul{
        gap: 10px 15px;
    }

    .pricing-benefit-list ul li{
        width: calc(50% - 7.5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img{
        max-width: 18px;
        margin-right: 5px;
    }

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

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

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

	.testimonial-btn{
		position: initial;
		justify-content: left;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 40px;
		height: 40px;
	}

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

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

	.main-footer{
        background-size: 100% auto;
    }

	.footer-header{
		display: block;
	}



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

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

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

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

	.mission-vision-nav ul li .nav-link{
		display: grid;
		justify-content: center;
        font-size: 16px;
        padding: 10px;
    }

	.mission-vision-nav ul li .nav-link img{
        max-width: 25px;
        margin: 0 auto;
		margin-bottom: 5px;
    }

	.mission-vision-item{
        padding: 20px 15px;
    }

	.mission-vision-content-list ul li{
		font-size: 14px;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.mission-vision-content-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.mission-vision-image img{
        aspect-ratio: 1 / 0.73;
    }

	.our-history-nav ul li .nav-link{
        padding: 10px;
		font-size: 18px;
    }

	.our-history-list ul li{
		font-size: 14px;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.our-history-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.our-history-image img{
        aspect-ratio: 1 / 0.76;
    }

	.our-features-item{
       width: 100%;
    }

	.our-features-item:nth-child(1n + 1){
		border-right: none;
	}

	.our-features-item.features-image-box img{
		aspect-ratio: 1 / 0.81;
	}

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

	.our-faqs-img figure img{
        aspect-ratio: 1 / 0.89;
    }

	.faqs-img-cta-box ul li{
		margin-right: 0px;
		margin-bottom: 5px;
	}

	.faqs-img-cta-box ul li:last-child{
		margin-bottom: 0;
	}

	.faqs-img-cta-box ul li a img{
		max-width: 24px;
		margin-right: 10px;
	}

	.faqs-img-cta-box ul li a{
		font-size: 18px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 16px;
		padding: 12px 35px 12px 12px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after{
		right: 12px;
		font-size: 14px;
	}

	.our-faq-section .accordion-item .accordion-body{
		background: var(--accent-color);
		padding: 12px;
	}

	.page-services .service-item{
		border-radius: 30px;
		padding: 20px 15px;
	}

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

	.service-catagery-list ul{
		padding: 20px;
	}

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

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

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

	.cta-contact-item-title h3{
		font-size: 18px;
	}

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

	.service-entry h2{
        font-size: 28px;
    }

	.service-entry-item{
		width: 100%;
	}

	.service-entry-item:nth-last-child(-n + 2)::before{
		display: block;
	}

	.service-entry-item:last-child::before{
		display: none;
	}

	.service-entry-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

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

	.service-entry ul li{
		width: 100%;
		padding-left: 30px;
	}

	.service-entry ul li::before{
		width: 20px;
		height: 20px;
	}

	.service-entry-img{
		width: 100%;
	}

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

	.post-entry blockquote{
		background-position: 15px 15px;
        padding: 65px 15px 15px 15px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.project-detail-title{
        padding: 15px 20px;
    }

	.project-detail-title h3{
		font-size: 18px;
	}

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

	.project-detail-content h3{
		margin-bottom: 0;
	}

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

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

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

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

	.project-entry ul li{
		width: 100%;
    }

	.project-query-content,
	.project-query-img{
		width: 100%;
	}

	.project-query-item{
		gap: 20px;
	}

	.project-query-box ul{
        margin-bottom: 0;
    }

	.team-member-image img{
        aspect-ratio: 1 / 0.99;
    }

	.team-member-name{
		margin-bottom: 15px;
	}

	.team-member-name h3{
		font-size: 18px;
	}

	.team-detail-title h3{
		font-size: 18px;
	}

	.team-member-info,
	.team-member-skills-feature{
        margin-bottom: 20px;
    }

	.team-member-content h2{
        font-size: 28px;
		margin-bottom: 15px;
    }

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

	.team-member-skills-feature{
		gap: 20px;
	}

	.team-member-skills,
	.team-member-feature{
		width: 100%;
	}

	.client-testimonial-item{
		border-radius: 30px;
		padding: 20px;
	}

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

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

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

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

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

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

	.contact-us-form{
        padding: 20px;
    }

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

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

/* Nav buttons hidden on mobile — swipe is enough */
@media (max-width: 767px) {
	.services-swiper-prev,
	.services-swiper-next {
		display: none;
	}
}

/* ═══════════════════════════════════════════════════════════
   Mobile Hamburger Menu (Tablet & Below)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .main-menu {
    display: none !important;
  }
  .responsive-menu,
  .navbar-toggle {
    display: block !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   Bagani Nike Shop Custom Layout
   ═══════════════════════════════════════════════════════════ */
.bagani-nike-shop {
    background-color: #ffffff;
    color: #111111;
    padding: 40px 0 80px 0;
    overflow: visible;
    position: relative;
}

.nike-shop-container {
    max-width: 1400px; /* Expansive layout */
}

/* ───────────────────────────────────────────────
   Top Bar
   ─────────────────────────────────────────────── */
.nike-shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.topbar-count {
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.filter-toggle-btn {
    background: transparent;
    border: none;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.3s;
}
.filter-toggle-btn:hover { color: #FFC107; }

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-dropdown label { color: #555555; margin: 0; }

.sort-dropdown select {
    background: transparent;
    border: none;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}
.sort-dropdown select option { background: #ffffff; color: #111111; }

/* ───────────────────────────────────────────────
   Main Layout Grid
   ─────────────────────────────────────────────── */
.nike-shop-main {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    position: relative;
}

.bagani-nike-shop.sidebar-hidden .nike-shop-main {
    grid-template-columns: 0px 1fr;
    gap: 0;
}

/* ───────────────────────────────────────────────
   Sidebar
   ─────────────────────────────────────────────── */
.nike-shop-sidebar {
    position: sticky;
    top: 100px;
    height: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    align-self: start;
    transition: opacity 0.3s ease;
}
.nike-shop-sidebar::-webkit-scrollbar { width: 6px; }
.nike-shop-sidebar::-webkit-scrollbar-track { background: transparent; }
.nike-shop-sidebar::-webkit-scrollbar-thumb { background: #888; border-radius: 999px; }
.nike-shop-sidebar::-webkit-scrollbar-thumb:hover { background: #555; }

.bagani-nike-shop.sidebar-hidden .nike-shop-sidebar {
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.filter-group {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111;
}

.filter-body {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Checkboxes */
.filter-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 15px;
    color: #555555;
    user-select: none;
    transition: color 0.2s;
    margin: 0;
}
.filter-checkbox:hover { color: #111111; }
.filter-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }

.checkmark {
    position: absolute; top: 50%; left: 0; transform: translateY(-50%);
    height: 18px; width: 18px; background-color: transparent;
    border: 1px solid #cccccc; border-radius: 4px; transition: all 0.2s;
}
.filter-checkbox input:checked ~ .checkmark { background-color: #FFC107; border-color: #FFC107; }
.checkmark:after { content: ""; position: absolute; display: none; }
.filter-checkbox input:checked ~ .checkmark:after { display: block; }
.filter-checkbox .checkmark:after {
    left: 6px; top: 2px; width: 5px; height: 10px;
    border: solid #ffffff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* ───────────────────────────────────────────────
   Product Grid & Cards
   ─────────────────────────────────────────────── */
.nike-shop-grid { display: block; width: 100%; min-width: 0; }

.project-item-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-item-box {
    overflow: hidden;
}

.product-card { background: transparent; border: none; height: 100%; perspective: 1000px; }
.product-card-inner {
    background: #ffffff; border-radius: 12px; padding: 0; position: relative; overflow: hidden;
    height: 100%; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.product-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.product-card-inner:hover .product-image img { transform: scale(1.08); }

.product-badge {
    position: absolute; top: 16px; left: 16px; background: #FFC107; color: #222222;
    font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 4px; z-index: 2;
    text-transform: uppercase; letter-spacing: 1px;
}

.product-image {
    width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.product-image img { width: 100%; height: 100%; object-fit: cover; padding: 0; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.product-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.product-line { color: #FFC107; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-name { color: #111111; font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.product-spec { color: #555555; font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.product-desc {
    color: #666666; font-size: 14px; line-height: 1.6; margin-bottom: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.product-footer { padding: 0 24px 24px 24px; margin-top: auto; }
.product-link {
    color: #111111; font-size: 15px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s ease;
}
.product-link i { transition: transform 0.3s; }
.product-card-inner:hover .product-link { color: #FFC107; }
.product-card-inner:hover .product-link i { transform: translateX(4px); }

/* ───────────────────────────────────────────────
   Mobile Breakpoint
   ─────────────────────────────────────────────── */
.mobile-close-btn { display: none; }
.mobile-sidebar-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); z-index: 10001; backdrop-filter: blur(4px);
}

@media (max-width: 991px) {
    .nike-shop-topbar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .topbar-actions { width: 100%; justify-content: space-between; }
    .nike-shop-sidebar {
        position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; max-height: 100vh;
        background: #ffffff; z-index: 10002; margin: 0; transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 30px 40px 30px; box-shadow: 10px 0 30px rgba(0,0,0,0.1); opacity: 1; pointer-events: none;
    }
    .bagani-nike-shop.mobile-sidebar-open .nike-shop-sidebar { left: 0; pointer-events: all; }
    .bagani-nike-shop.mobile-sidebar-open .mobile-sidebar-overlay { display: block; }
    .mobile-close-btn {
        display: block; position: absolute; top: 20px; right: 20px;
        background: transparent; border: none; color: #111111; font-size: 24px; cursor: pointer;
    }

    /* Tighten shop container padding on mobile so grid fills viewport like Nike */
    .bagani-nike-shop .nike-shop-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .bagani-nike-shop {
        padding: 20px 0 60px 0;
    }

    .nike-shop-main {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* 2-column product grid on mobile — edge-to-edge like Nike */
    .project-item-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .bagani-product-img-wrap { height: 200px; background: transparent; }
    .project-item-box { padding-left: 0 !important; padding-right: 0 !important; margin-bottom: 0 !important; }
    .bagani-product-info { padding: 10px 2px 0; }
    .bagani-product-name { font-size: 13px; min-height: auto; }
    .bagani-product-spec { font-size: 12px; margin-bottom: 2px; }
    .bagani-product-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 2px;
    }
    .bagani-product-line { font-size: 11px; margin-bottom: 2px; }
    .bagani-product-link { font-size: 12px; }
}

/* =====================================================================
   PERFORMANCE OPTIMIZATIONS
   - Disable heavy effects for low-end devices and user preferences
   ===================================================================== */

/* Disable all animations/transitions for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.parallaxie { background-attachment: scroll !important; }
}

/* Disable backdrop-filter blur on mobile (expensive GPU operation) */
@media (max-width: 991px) {
	header.main-header .header-sticky,
	header.main-header .header-sticky.hide,
	header.main-header .header-sticky.active {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}
}

/* Disable parallax on mobile (already gated in JS but also disable via CSS) */
@media (max-width: 991px) {
	.parallaxie {
		background-attachment: scroll !important;
	}

	/* Home products band: keep the image focal area framed on tablet/mobile. */
	.our-services.parallaxie {
		background-position: 66% center !important;
	}
}

@media (max-width: 767px) {
	.our-services.parallaxie {
		background-position: 72% center !important;
	}
}

/* ── News page: section headers ───────────────────────────────────────────── */
.news-section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 4px solid #FFC107;
}
.news-section-head-inner { flex-shrink: 0; }
.news-section-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFC107;
  margin-bottom: 5px;
}
.news-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.news-section-sub {
  font-size: 12px;
  color: #666;
  margin: 5px 0 0;
  line-height: 1.5;
}
.news-section-divider {
  flex: 1;
  height: 1px;
  background: #252525;
  min-width: 0;
}

/* ── Oil Industry News: section wrapper ───────────────────────────────────── */
.mag-industry-section {
  margin-top: 80px;
  padding-top: 64px;
  position: relative;
}
.mag-industry-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #2d2d2d 20%, #2d2d2d 80%, transparent);
}
.mag-industry-section .news-section-head { border-left-color: #FFC107; }
.mag-industry-section .news-section-eyebrow { color: #FFC107; }

/* ── News Feed Cards (shared grid cards) ───────────────────────────────────── */
.news-feed-item {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 22px;
  overflow: hidden;
	border: 1px solid #e7e7e7;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.news-feed-item:hover {
	border-color: #d3d3d3;
  transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.news-feed-thumb {
	display: block;
	width: 100%;
	height: 232px;
  overflow: hidden;
}
.news-feed-thumb a { display: block; height: 100%; }
.news-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.news-feed-item:hover .news-feed-thumb img { transform: scale(1.07); }

.news-feed-item--stack { cursor: default; }
.news-feed-item.has-image.news-feed-item--stack { cursor: pointer; }
.news-feed-thumb--stack { border-radius: 0; }

.news-feed-noimage {
	width: 100%;
	height: 232px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 22% 24%, rgba(255, 193, 7, 0.2), transparent 40%),
		linear-gradient(160deg, #f2f2f2 0%, #e6e6e6 100%);
	border-bottom: 1px solid #e9e9e9;
}

.news-feed-noimage i {
	font-size: 26px;
	color: rgba(0, 0, 0, 0.45);
}

.news-feed-item.no-image {
	border-color: #e2e2e2;
}

.news-feed-item.no-image .news-feed-body {
	padding: 18px 22px 22px;
}

.news-feed-item.no-image .news-feed-title {
	-webkit-line-clamp: 3;
}

.news-feed-item.no-image .news-feed-excerpt {
	-webkit-line-clamp: 3;
}
.news-feed-body {
	flex: 1;
	padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
	gap: 10px;
  min-width: 0;
}
.news-feed-body--stack {
	padding: 18px 22px 22px;
}
.news-feed-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.news-feed-source {
	background: #f0f6ff;
	color: #1b6ca8;
	font-size: 10px;
  font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.news-feed-date { font-size: 12px; color: #6d6d6d; }
.news-feed-title {
	font-size: 16px;
	font-weight: 700;
	color: #1d2430;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
	-webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-feed-title a { color: #1d2430; text-decoration: none; }
.news-feed-title a:hover { color: #FFC107; }
.news-feed-excerpt {
	font-size: 13px;
	color: #5f6672;
	line-height: 1.7;
  margin: 0;
  display: -webkit-box;
	-webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-feed-link {
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
	font-size: 13px;
	color: #ff9800;
  text-decoration: none;
  font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
  transition: color 0.2s, gap 0.2s;
}
.news-feed-link:hover { color: #FFC107; gap: 8px; }

.news-refresh-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 12px 0 16px;
	padding: 10px 22px;
	border-radius: 6px;
	border: 1.5px solid rgba(255, 193, 7, 0.55);
	background: transparent;
	color: #ffc107;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Shimmer sweep */
.news-refresh-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		110deg,
		transparent 20%,
		rgba(255, 193, 7, 0.18) 50%,
		transparent 80%
	);
	transform: translateX(-100%);
	transition: transform 0.55s ease;
	pointer-events: none;
}
.news-refresh-btn:hover::before {
	transform: translateX(100%);
}
.news-refresh-btn:hover {
	border-color: rgba(255, 193, 7, 0.85);
	box-shadow: 0 0 14px rgba(255, 193, 7, 0.12);
}

/* Indeterminate progress bar */
.news-refresh-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -35%;
	width: 35%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #ffc107, transparent);
	opacity: 0;
}
.news-refresh-btn.is-loading {
	border-color: rgba(255, 193, 7, 0.7);
	box-shadow: 0 0 16px rgba(255, 193, 7, 0.1);
	pointer-events: none;
	cursor: not-allowed;
}
.news-refresh-btn.is-loading::after {
	opacity: 1;
	animation: news-refresh-bar 1.3s ease-in-out infinite;
}
@keyframes news-refresh-bar {
	0%   { left: -35%; }
	100% { left: 110%; }
}

.news-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
	flex-wrap: wrap;
}

.news-page-btn {
	min-width: 40px;
	height: 36px;
	padding: 0 10px;
	border-radius: 10px;
	border: 1px solid #d6d6d6;
	background: #fff;
	color: #2c2c2c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2px;
	transition: all 0.2s ease;
}

.news-page-btn:hover {
	border-color: rgba(255, 193, 7, 0.5);
	color: #ffc107;
}

.news-page-btn.is-active {
	background: #ffc107;
	color: #111;
	border-color: #ffc107;
}

.news-page-btn[disabled] {
	opacity: 0.35;
	cursor: not-allowed;
}

@media (max-width: 767px) {
  .news-feed-item { flex-direction: column; }
  .news-feed-thumb { width: 100%; height: 160px; }
	.news-feed-noimage { width: 100%; height: 120px; border-right: 0; border-bottom: 1px solid #e9e9e9; }
  .news-feed-body { padding: 16px 18px; }
	.news-refresh-btn { align-self: flex-start; }
	.news-pagination { justify-content: flex-start; }
  .news-section-heading { font-size: 22px; }
  .mag-industry-section { margin-top: 56px; padding-top: 48px; }
}

/* ── News page: recovered + 2026 UI styles ───────────────────────────────── */

/* Section intro (replaces old news-section-head) */
.news-section-intro {
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid #ffc107;
}
.mag-industry-section .news-section-intro { border-left-color: #FFC107; }
.mag-industry-section .news-section-intro .news-section-eyebrow { color: #FFC107; }
.mag-industry-section .news-section-heading span { color: #FFC107; }
.news-section-intro .news-section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffc107;
  margin-bottom: 8px;
}
.news-section-heading {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.1;
}
.news-section-heading span { color: #ffc107; }
.news-section-desc {
	font-size: 13px;
  color: #888;
  margin: 0 0 16px;
  line-height: 1.6;
}
.news-section-rule {
  height: 1px;
  background: linear-gradient(to right, #2a2a2a, transparent);
  margin-top: 8px;
}

/* Article detail meta row — no gap between tag and date */
.bagani-article-meta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}
.bagani-article-date {
  font-size: 12px;
  color: #777;
  padding-left: 10px;
}

/* Category bar label */
.mag-cat-bar {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  background: #FFC107;
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* Read Article link */
.mag-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFC107;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
}
.mag-read-link:hover { color: #fff; gap: 10px; }
.mag-read-link i { font-size: 11px; }

/* Featured card — full-bleed hero overlay */
.mag-featured {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  display: block;
}
.mag-featured-img {
  display: block;
  position: absolute;
  inset: 0;
  height: 100%;
  flex-shrink: unset;
}
.mag-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mag-featured:hover .mag-featured-img img { transform: scale(1.06); }
.mag-featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.65) 38%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
  z-index: 1;
}
.mag-featured-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: none;
  flex: unset;
}
.mag-featured-title {
  font-size: clamp(22px, 2.4vw, 30px);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.mag-featured-excerpt {
  font-size: 14px;
  color: #aaa;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.mag-featured-date {
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mag-top-row { min-height: 460px; }
.mag-top-row--solo { min-height: 500px; }

/* Sidebar enhancements */
.mag-sidebar-col { background: #151515; }
.mag-sidebar { gap: 12px; padding: 14px; }
.mag-sidebar-item {
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  background: #1f1f1f;
  color: inherit;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.mag-sidebar-item:hover {
  background: #262626;
  border-color: rgba(255,193,7,0.35);
  transform: translateY(-1px);
}
.mag-sidebar-item:focus-visible { outline: 2px solid #ffc107; outline-offset: -2px; }
.mag-sidebar-thumb { width: 96px; height: 96px; border-radius: 12px; }
.mag-sidebar-date { color: #888; }

/* Overlay row + card */
.mag-overlay-row { --bs-gutter-x: 14px; --bs-gutter-y: 14px; margin-top: 30px; border-radius: 16px; }
.mag-overlay-card { border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
.mag-overlay-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  pointer-events: none;
}
.mag-overlay-body { padding: 24px 28px; gap: 8px; }

/* Video play badge */
.news-feed-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}
.news-feed-play i {
  font-size: 18px;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.news-feed-thumb { position: relative; }

/* has-image modifier */
.news-feed-item.has-image { cursor: pointer; }

/* External news modal */
.ext-news-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
	background: rgba(14, 18, 26, 0.64);
	backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.ext-news-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.ext-news-modal-box {
	background: #ffffff;
	border-radius: 24px;
  overflow: hidden;
  width: 100%;
	max-width: 760px;
  position: relative;
	border: 1px solid #e6e6e6;
	box-shadow: 0 28px 80px rgba(8, 11, 18, 0.24);
}
.ext-news-modal-close {
  position: absolute;
	top: 14px; right: 14px;
  z-index: 10;
	width: 34px; height: 34px;
  border-radius: 50%;
	background: rgba(255,255,255,0.92);
	border: 1px solid #d7d7d7;
	color: #222;
	font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ext-news-modal-close:hover { background: #fff8e1; border-color: #ffc107; color: #111; }
.ext-news-modal-hero {
  position: relative;
	height: 300px;
  overflow: hidden;
}
.ext-news-modal-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ext-news-modal-hero-overlay {
  position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(13,18,27,0.72) 0%, rgba(13,18,27,0.22) 42%, transparent 72%);
}
.ext-news-modal-hero-meta {
	position: absolute; bottom: 18px; left: 20px;
  display: flex; align-items: center; gap: 12px;
}
.ext-news-modal-source {
	background: rgba(240,246,255,0.95);
	color: #1b6ca8;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
  text-transform: uppercase; letter-spacing: 1px;
}
.ext-news-modal-date {
	font-size: 12px;
	color: rgba(255,255,255,0.92);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
}
.ext-news-modal-content { padding: 26px 28px 34px; }
.ext-news-modal-title {
	font-size: 28px;
	font-weight: 800;
	color: #1d2430;
	margin: 0 0 14px;
	line-height: 1.28;
}
.ext-news-modal-divider { height: 1px; background: #ececec; margin-bottom: 16px; }
.ext-news-modal-excerpt {
	font-size: 14px;
	color: #5f6672;
	line-height: 1.78;
	white-space: pre-line;
}
.ext-news-modal-hero--video { height: 320px; }
.ext-news-modal-video { width: 100%; height: 100%; border: none; display: block; }
.ext-news-modal-hero-meta--video { left: 16px; bottom: 12px; }
@media (max-width: 575px) {
	.ext-news-modal-hero { height: 220px; }
  .ext-news-modal-hero--video { height: 220px; }
  .ext-news-modal-content { padding: 20px 18px 28px; }
	.ext-news-modal-title { font-size: 21px; }
}

/* Desktop: keep consistent card media height */
@media (min-width: 768px) { .news-feed-thumb { height: 232px; } }

/* Responsive: featured overlay */
@media (max-width: 991px) {
  .mag-top-row { min-height: 380px; }
  .mag-featured { min-height: 380px; }
  .mag-featured-body { padding: 22px 22px 28px; }
}
@media (max-width: 767px) {
  .mag-top-row { min-height: 300px; }
  .mag-featured { min-height: 300px; }
  .mag-featured-body { padding: 18px 18px 22px; }
  .mag-top-row--solo .mag-featured { min-height: 340px; }
  .news-section-heading { font-size: 22px; }
}

/* ── Bagani Filter: redesigned pill chips ────────────────────────────────── */
.bagani-filter-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 16px;
	border-bottom: 1px solid #e2e2e2;
}
.bagani-filter-chip {
	border: 1.5px solid #d7d7d7;
	background: #fff;
	color: #2b2b2b;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.bagani-filter-chip span {
  font-size: 11px;
  font-weight: 700;
	color: #7a7a7a;
}
.bagani-filter-chip:hover {
	border-color: rgba(255,193,7,0.55);
	color: #111;
	background: #fff8e1;
}
.bagani-filter-chip.is-active {
  background: #ffc107;
  border-color: #ffc107;
  color: #111;
}
.bagani-filter-chip.is-active span { color: rgba(0,0,0,0.6); }
.bagani-filter-chip:focus-visible { outline: 2px solid #ffc107; outline-offset: 2px; }
@media (max-width: 767px) {
  .bagani-filter-chip { padding: 6px 12px; font-size: 11px; }
  .news-refresh-btn { align-self: flex-start; }
}



/* ── TDS Product Page Sections ────────────────────────────────────────────── */
.tds-section-label {
	display: inline-block;
	background: var(--primary-color);
	color: var(--accent-color);
	font-family: var(--default-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 7px 36px 7px 16px;
	margin-bottom: 18px;
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
	min-width: 160px;
}

/* Product Benefits list */
.tds-benefits-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}
.tds-benefits-list li {
	padding: 7px 0 7px 22px;
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	line-height: 1.65;
	font-size: 15px;
}
.tds-benefits-list li:last-child { border-bottom: none; }
.tds-benefits-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 7px;
	color: var(--accent-color);
	font-size: 20px;
	line-height: 1.3;
}
.tds-benefits-list li strong {
	color: var(--primary-color);
}

/* Application / Approvals paragraphs */
.tds-text-block {
	margin-bottom: 28px;
	line-height: 1.75;
	font-size: 15px;
}
.tds-text-block p { margin-bottom: 12px; }
.tds-text-block p:last-child { margin-bottom: 0; }

/* Available Sizes grid */
.tds-sizes-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}
.tds-size-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background: var(--primary-color);
	border: 1px solid var(--accent-color);
	padding: 14px 12px 10px;
	border-radius: 4px;
	min-width: 72px;
	text-align: center;
}
.tds-size-item img {
	width: 34px;
	height: 42px;
	filter: invert(75%) sepia(60%) saturate(600%) hue-rotate(5deg) brightness(1.1);
}
.tds-size-item .size-label {
	font-family: var(--default-font);
	font-size: 10px;
	font-weight: 700;
	color: var(--accent-color);
	text-transform: uppercase;
	line-height: 1.3;
	letter-spacing: 0.5px;
}

/* Typical Properties table with optional multi-grade header */
.tds-props-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 28px;
	font-size: 14px;
}
.tds-props-table thead tr {
	background: var(--primary-color);
	color: var(--accent-color);
}
.tds-props-table thead th {
	padding: 10px 14px;
	font-weight: 700;
	font-size: 13px;
	text-align: left;
	border: 1px solid rgba(200,160,0,0.3);
}
.tds-props-table tbody tr:nth-child(odd) { background: rgba(184,150,12,0.06); }
.tds-props-table tbody tr:nth-child(even) { background: rgba(184,150,12,0.12); }
.tds-props-table tbody th {
	padding: 9px 14px;
	font-weight: 600;
	color: var(--primary-color);
	border: 1px solid rgba(0,0,0,0.08);
	text-align: left;
	width: 45%;
}
.tds-props-table tbody td {
	padding: 9px 14px;
	border: 1px solid rgba(0,0,0,0.08);
	color: var(--primary-color);
	text-align: center;
}

@media (max-width: 576px) {
	.tds-sizes-grid { gap: 8px; }
	.tds-size-item { min-width: 60px; padding: 10px 8px 8px; }
	.tds-size-item img { width: 28px; height: 34px; }
	.tds-size-item .size-label { font-size: 9px; }
	.tds-section-label { font-size: 11px; }
}

/* ── Product grid override (highest specificity — must stay last) ──────────
   Forces 3-column grid on desktop, 2-column on mobile, regardless of any
   Bootstrap or legacy rules that could override .project-item-boxes.
   ─────────────────────────────────────────────────────────────────────── */
#sanity-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
}

#sanity-products-grid > .project-item-box {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

#sanity-products-grid > .project-item-box.filter-hidden {
    display: none !important;
    visibility: hidden !important;
}

#sanity-products-grid > .project-item-box .bagani-product-item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

#sanity-products-grid > .project-item-box .bagani-product-img-wrap {
    height: 220px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: transparent !important;
}

#sanity-products-grid > .project-item-box .bagani-product-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    display: block !important;
}

#sanity-products-grid > .project-item-box .bagani-product-info {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 14px 4px 0 !important;
}

#sanity-products-grid > .project-item-box .bagani-product-footer {
    margin-top: auto;
}

@media (max-width: 991px) {
    #sanity-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    #sanity-products-grid > .project-item-box .bagani-product-img-wrap {
        height: 200px !important;
    }
}

/* ── Download Button — uiverse.io kamehame-ha/kind-otter-31 style ─────── */
.product-dl-btn {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--default-font);
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    height: 44px;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* Red fill that expands from left on hover */
.product-dl-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 100%;
    background: #e53935;
    border-radius: 8px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.product-dl-btn:hover::before {
    width: 100%;
}

.product-dl-btn .dl-icon-box {
    width: 44px;
    height: 44px;
    background: #e53935;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.product-dl-btn .dl-icon-box svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-dl-btn:hover .dl-icon-box svg {
    transform: translateY(2px) scale(1.1);
}

.product-dl-btn .dl-text {
    padding: 0 18px 0 12px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.product-dl-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.35);
}

/* ── Card Download Link (product grid) ─────────────────────────────── */
.bagani-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

/* Desktop: show full text, hide short icon labels */
.dl-full { display: inline; }
.dl-short { display: none; }

.card-dl-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #FFC107;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--default-font);
    display: inline-flex;
    align-items: center;
    transition: color 0.25s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-dl-link::before {
    content: '—';
    display: inline-block;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    margin-right: 0;
    transition: max-width 0.25s ease, opacity 0.2s ease, margin-right 0.25s ease;
}

.card-dl-link:hover {
    color: #e53935;
}

.card-dl-link:hover::before {
    opacity: 1;
    max-width: 20px;
    margin-right: 5px;
}

/* ── Download Request Modal ─────────────────────────────────────────── */
.dl-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dl-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.dl-modal-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 40px 40px;
    width: 100%;
    max-width: 560px;
    position: relative;
    transform: translateY(28px) scale(0.98);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    max-height: 90vh;
    overflow-y: auto;
}

.dl-modal-overlay.active .dl-modal-card {
    transform: translateY(0) scale(1);
}

.dl-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    padding: 0;
}

.dl-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.dl-modal-title {
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 6px;
}

.dl-modal-title span {
    color: var(--accent-color);
}

.dl-modal-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 28px;
}

.dl-field {
    font-size: 15px !important;
    padding: 14px 16px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #333 !important;
    box-shadow: none !important;
    transition: border-color 0.2s !important;
}

.dl-field:focus {
    border-color: var(--accent-color) !important;
    outline: none !important;
}

.dl-field::placeholder {
    color: #bbb !important;
}

.dl-field-error {
    border-color: #e53935 !important;
    background-color: #fff8f8 !important;
}

.dl-field-error:focus {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12) !important;
}

.dl-field-msg {
    display: block;
    font-size: 12px;
    color: #e53935;
    margin-top: 4px;
    padding-left: 2px;
}

.dl-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #1c1c1c;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.25s, color 0.25s;
    font-family: var(--default-font);
    letter-spacing: 0.3px;
}

.dl-submit-btn:hover {
    background: var(--accent-color);
    color: #1c1c1c;
}

@media (max-width: 576px) {
    .dl-modal-card {
        padding: 36px 22px 28px;
        border-radius: 18px;
    }

    .dl-modal-title {
        font-size: 22px;
    }
}

/* ── Mobile-only fixes (≤991px) ──────────────────────────────────────────── */
@media (max-width: 991px) {
    /* Product detail page: hide sidebar (Product Lines + Need Help) */
    .page-service-single .service-sidebar {
        display: none;
    }

    /* Product detail page: center Download PDF button when line badge is hidden */
    .product-meta-bar {
        justify-content: center;
    }

    /* Product detail page: hide the category/line badge (e.g. AMIHAN) */
    .product-line {
        display: none;
    }

    /* Product listing cards: compact footer on mobile */
    .bagani-product-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
        gap: 0;
    }
    .card-dl-link {
        font-size: 12px;
    }
    .bagani-product-footer .bagani-product-link {
        font-size: 12px;
    }
    /* Toggle labels: hide full text, show short icon text on mobile */
    .dl-full { display: none !important; }
    .dl-short { display: inline !important; }

    /* Product listing cards: make image fill the full card (Nike-style) */
    .bagani-product-img-wrap {
        border-radius: 0;
    }
    .project-item-box {
        flex-direction: column;
    }
}
