:root {
	/* Colors */
	/* #002866; */
	--topbar-bg: #002866;
	--topbar-text: #ffffff;
	/* #E13833 #37b8f9 #619cf2 */
	--subbar-part1-bg: #F2A228;
	--subbar-part2-bg: #ffffff;
	--subbar-part3-bg: #f8f9fa;
	--subbar-text: #212529;

	--font-icon: #b0b5b6;

	/* Font Sizes */
	--topbar-font-size: 16px;
	--subbar-font-size: 16px;

	--slider-box-btn-bg: #e13833;
	--slider-box-btn-text: #ffffff;
	--slider-box-overlay: rgba(0, 0, 0, 0.45);
	--slider-box-red: #e60023;
	--slider-box-white: #fff;

	--swiper-navigation-color: #e60023;
	--swiper-theme-color: #e60023;

	--primary-heading: #00002C;

	--secondary-button-bg: #002866;
	--secondary-button-text: #fff;

	--ad-bg: #002866;
	--ad-text: #fff;

	--highlight-text: #e60023;

	--footer-sec-1-bg: #002866;
	--footer-sec-2-bg: #002155;

	--category-primary: #2c3e50;
	--category-secondary: #34495e;
	--category-accent: #e74c3c;
	--category-text: #ecf0f1;
	--category-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

	--product-model-one-primary: #2c3e50;
	--product-model-one-secondary: #34495e;
	--product-model-one-accent: #3498db;
	--product-model-one-light: #ecf0f1;
	--product-model-one-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);

	--content-section-primary: #2c3e50;
	--content-section-secondary: #34495e;
	--content-section-accent: #3498db;
	--content-section-light: #ecf0f1;
	--content-section-border: #e4e4e4;

	--spec-label: #e60023;
	--numeric-text: #212529;

	--specification-primary: #2c3e50;
	--specification-secondary: #34495e;
	--specification-accent: #3498db;
	--specification-light: #ecf0f1;
	--specification-border: #e4e4e4;

	--industry-primary: #2c3e50;
	--industry-secondary: #34495e;
	--industry-accent: #3498db;
	--industry-light: #ecf0f1;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}

/* Reset + Base */
body {
	font-family: 'Manrope', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f8f9fa;
}

/* Top Bar */
.topbar {
	background-color: var(--topbar-bg);
	color: var(--topbar-text);
	font-size: var(--topbar-font-size);
	padding: 10px 0;
	width: 100%;
}

.topbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
}

.topbar-contact {
	display: flex;
	gap: 20px;
}

.topbar-email,
.topbar-address {
	display: flex;
	align-items: center;
}

.topbar-email i,
.topbar-address i {
	margin-right: 8px;
	color: var(--font-icon);
}

.topbar-social a {
	color: var(--topbar-text);
	margin-left: 15px;
	font-size: 20px;
	transition: color 0.3s;
}

.topbar-social a:hover {
	color: #ffcc00;
}

/* Sub Bar Container */
.sub-bar-container {
	width: 100%;
	background: linear-gradient(to right,
			var(--subbar-part1-bg) 20%,
			var(--subbar-part2-bg) 20%,
			var(--subbar-part2-bg) 80%,
			var(--subbar-part3-bg) 80%);
}

.sub-bar {
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

/* Part 1 (Logo) */
.sub-bar-part1 {
	flex: 0 0 20%;
	background-color: var(--subbar-part1-bg);
	display: flex;
	align-items: center;
	padding: 10px;
	position: relative;
	overflow: hidden;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.sub-bar-part1::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 0;
	width: 30px;
	height: 100%;
	background-color: var(--subbar-part1-bg);
	z-index: 1;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.sub-bar-logo {
	color: white;
	font-weight: 800;
	font-size: 24px;
	z-index: 2;
}

/* Part 2 (Navigation) */
.sub-bar-part2 {
	flex: 0 0 60%;
	background-color: var(--subbar-part2-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 20px;
}

.sub-bar-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px;
	position: relative;
}

.sub-bar-nav li {
	position: relative;
}

.sub-bar-nav a {
	text-decoration: none;
	color: var(--subbar-text);
	font-weight: 600;
	font-size: var(--subbar-font-size);
	transition: color 0.3s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
}

.sub-bar-nav a:hover {
	color: #dc3545;
}

/* Dropdown (Desktop) */
ul#mainNav li a i {
	font-size: 12px;
}

.sub-bar-dropdown {
	position: absolute;
	top: calc(100% + 30px);
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-width: 200px;
	border-radius: 6px;
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
	z-index: 1000;
	margin-top: -15px;
	padding-top: 15px;
}

.sub-bar-nav li.dropdown-open>.sub-bar-dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.sub-bar-dropdown::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, #dc3545, #ffc107);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.sub-bar-nav li.dropdown-open>.sub-bar-dropdown::before {
	transform: scaleX(1);
}

.sub-bar-dropdown li {
	padding: 10px 20px;
	transition: background 0.3s ease;
	position: relative;
}

.sub-bar-dropdown li:hover {
	background-color: #f1f1f1;
}

/* Flyout submenu (2nd level+) */
.sub-bar-dropdown .sub-bar-dropdown {
	top: 0;
	left: 100%;
	opacity: 0;
	transform: translateX(10px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.sub-bar-dropdown li:hover>.sub-bar-dropdown {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

/* Part 3 (Phone) */
.sub-bar-part3 {
	flex: 0 0 20%;
	background-color: var(--subbar-part3-bg);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 15px 20px;
	gap: 15px;
}

.sub-bar-phone-icon {
	font-size: 32px;
	color: #dc3545;
}

.sub-bar-phone-text {
	display: flex;
	flex-direction: column;
	text-align: right;
}

.sub-bar-phone-text span:first-child {
	font-size: 14px;
	color: #6c757d;
}

.sub-bar-phone-text span:last-child {
	font-weight: 700;
	font-size: 18px;
	color: var(--subbar-text);
}

/* Hamburger Toggle */
.sub-bar-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--subbar-text);
	cursor: pointer;
}


/* .slider-box-section {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slider-box-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slider-box-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--slider-box-overlay);
}

.slider-box-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding-top: 12%;
}

.slider-box-row1 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.slider-box-row2 {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.slider-box-row3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}

.slider-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--slider-box-btn-bg);
  color: var(--slider-box-btn-text);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.slider-box-btn:hover {
  background: #c12a27;
  transform: translateY(-2px);
} */


.slider-box-slider {
	max-height: 600px;
	overflow: hidden;
	position: relative;
	font-family: 'Poppins', sans-serif;
}

.slider-box-slide {
	height: 600px;
	display: flex;
}

.slider-box-content {
	max-width: 700px;
}

.slider-box-subtitle {
	font-size: 16px;
	font-weight: 400;
	color: var(--slider-box-white);
	margin-bottom: 10px;
}

.slider-box-title {
	font-size: 60px;
	font-weight: 800;
	color: var(--slider-box-white);
	line-height: 1.2;
	margin-bottom: 20px;
}

.slider-box-desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--slider-box-white);
	margin-bottom: 30px;
}

.slider-box-btn {
	display: inline-block;
	background: var(--slider-box-red);
	color: var(--slider-box-white);
	font-size: 16px;
	font-weight: 500;
	padding: 16px 24px;
	border-radius: 25px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.slider-box-btn:hover {
	background: #c5001e;
	color: var(--slider-box-white);
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}


/* Section Wrapper */
#sec-about, #sec-about2 {
	padding: 100px 0;
}

#sec-about2 { background-color: #eeeaea; }

.section-about-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.section-about-left,
.section-about-right {
	flex: 0 0 50%;
}

.section-about-fullimg {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

/* Responsive */
@media (max-width: 991.98px) {
	.section-about-container {
		flex-direction: column;
	}

	.section-about-left,
	.section-about-right {
		flex: 0 0 100%;
	}
}

.section-about-r-container {
	font-family: 'Poppins', sans-serif;
	max-width: 900px;
}

.section-about-r-box {
	display: inline-block;
	padding: 10px 15px;
	border: 1px solid #6c757d;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 400;
	color: var(--primary-heading);
}

.section-about-r-heading {
	font-size: 35px;
	font-weight: 700;
	margin: 20px 0 10px 0;
	text-align: left;
	color: var(--primary-heading);
}

.section-about-r-text {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	text-align: left;
	margin-bottom: 20px;
	color: var(--primary-heading);
}

.section-about-r-highlight {
	color: var(--highlight-text);
	font-weight: 500;
}

.section-about-r-btn {
	display: inline-block;
	background-color: var(--secondary-button-bg);
	color: var(--secondary-button-text);
	padding: 16px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
}

.sec-ad-section {
	width: 100%;
	padding: 100px 0;
	background-color: var(--ad-bg);
	color: var(--ad-text);
	font-family: 'Poppins', sans-serif;
}

.sec-ad-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 20px;
	/* inner padding for content */
}

.sec-ad-left {
	flex: 0 0 70%;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
}

.sec-ad-right {
	flex: 0 0 30%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.sec-core-section {
	padding: 100px 0;
	font-family: 'Manrope', sans-serif;
	background: none;
	/* transparent as you said */
}

.sec-core-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
	padding: 0 20px;
}

/* Rounded title */
.sec-core-title-box {
	display: inline-block;
	background: #f2f2f2;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}

/* Main heading */
.sec-core-heading {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 60px;
	text-align: center;
	line-height: 1.4;
}

/* Owl Carousel Card */
.sec-core-card {
	background: #fff;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.sec-core-content {
	padding: 30px;
	flex: 1 1 auto;
	/* content grows */
	display: flex;
	flex-direction: column;
}

.sec-core-icon img {
	width: 75px !important;
	height: auto;
	margin-bottom: 20px;
}

.sec-core-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 21px;
	font-weight: 600;
	margin: 15px 0;
	text-align: left;
}

.sec-core-card-text {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: left;
}

.sec-core-btn {
	display: inline-block;
	background-color: #002866;
	color: #fff;
	padding: 12px 28px;
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
	margin-top: auto;
	align-self: flex-start;
}

.sec-core-btn:hover {
	background-color: #001a40;
}

/* Bottom image - FIX */
.sec-core-img {
	width: 100%;
	height: 200px;
	/* 🔑 lock image height */
	overflow: hidden;
	margin-top: auto;
}

.sec-core-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* keeps all images uniform */
	display: block;
}

/* Owl Carousel Fix */
.owl-carousel .sec-core-card {
	height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
	.sec-core-heading {
		font-size: 28px;
	}

	.sec-core-img {
		height: 150px;
		/* smaller image on mobile */
	}
}

/* Make carousel items stretch */
.owl-stage {
	display: flex !important;
}

.owl-item {
	display: flex;
	height: auto !important;
}

.sec-core-card {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	height: 100% !important;
	/* force fill */
}

.sec-core-heading {
	line-height: 45px;
}

/* Logo Section */
.sec-logo {
	padding: 10px 0;
	background: #f9f9f9;
	/* optional */
	overflow: hidden;
}

/* Logo Item */
.sec-logo-item {
	min-width: 200px;
	padding: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	border: 2px solid #ccc;
	/* full border around */
	border-radius: 8px;
	/* optional rounded corners */
	box-sizing: border-box;
	background: #fff;
	/* makes it pop */
}

/* Logo Images */
.sec-logo-item img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	/*filter: grayscale(100%);
	opacity: 0.7;*/
	transition: all 0.3s ease;
}

.sec-logo-item img:hover {
	filter: grayscale(0%);
	opacity: 1;
}


/* Footer Section */
.sec-footer {
	width: 100%;
	padding: 100px 0;
	position: relative;
	font-family: 'Manrope', sans-serif;
	color: #fff;

	/* multiple backgrounds: image first, gradient second */
	background-image:
		url('../media/home/footer.png'),
		linear-gradient(to right,
			var(--footer-sec-1-bg) 0%,
			var(--footer-sec-1-bg) 33.33%,
			var(--footer-sec-2-bg) 33.33%,
			var(--footer-sec-2-bg) 66.66%,
			var(--footer-sec-1-bg) 66.66%,
			var(--footer-sec-1-bg) 100%);

	background-repeat: no-repeat, no-repeat;
	background-position: left bottom, left top;
	background-size: auto, cover;
}

.sec-footer-container {
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

/* Columns */
.sec-footer-col {
	flex: 1 1 0;
	min-width: 220px;
	position: relative;
}


/* Ensure logo and text are above background image */
.sec-footer-col-1 img,
.sec-footer-col-1 p {
	position: relative;
	z-index: 2;
}

/* Typography */
.sec-footer h2 {
	font-weight: bold !important;
	font-size: 23px;
	font-weight: 400;
	margin-bottom: 15px;
}

.sec-footer p,
.sec-footer li {
	font-size: 16px;
	line-height: 1.6;
	margin: 5px 0;
}

.sec-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Industrial Products grid (part 2) */
.sec-footer-grid {
	display: flex;
	gap: 40px;
}

.sec-footer-copyright {
	width: 100%;
	background-color: #DDDDDD;
	padding: 20px 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #002866;
}

.sec-footer-copyright-container {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

footer p {
	line-height: 25px;
}


/* Typography */
.contact-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: #002866;
}

.contact-subtitle {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 20px;
	margin-top: 8px;
	color: #444;
}

/* Inputs */
.contact-input {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	border-radius: 8px;
	padding: 12px;
	border: 1px solid #ddd;
	transition: all 0.3s ease;
}

.contact-input:focus {
	border-color: #002866;
	box-shadow: 0 0 8px rgba(0, 40, 102, 0.3);
}

/* Button */
.contact-btn {
	background: #002866;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	padding: 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.contact-btn:hover {
	background: #001a44;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cards */
.contact-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-icon {
	font-size: 36px;
	color: #002866;
	margin-bottom: 15px;
	transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
	transform: scale(1.2);
}

.contact-card-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	color: #002866;
}

.contact-card-text {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #555;
	line-height: 25px;
}

/* Map */
.contact-map iframe {
	width: 100%;
	height: 450px;
	border: none;
}

/* Animations */
.contact-animate-fade {
	animation: fadeIn 1s ease-in-out;
}

.contact-animate-left {
	animation: slideInLeft 1s ease;
}

.contact-animate-right {
	animation: slideInRight 1s ease;
}

.contact-animate-up {
	animation: slideInUp 1s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.category-breadcrumb {
	background: transparent;
	padding: 20px 15px;
	border-radius: 8px;
	margin-bottom: 25px;
	text-decoration: none;
	background-color: gainsboro;
}

.category-breadcrumb a {
	text-decoration: none;
}

.category-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "›";
}

.category-header {
	text-align: center;
	margin-bottom: 40px;
}

.category-title {
	color: var(--category-primary);
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
	font-size: 2rem;
}

.category-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--category-accent);
}

.category-subtitle {
	color: var(--category-secondary);
	margin-top: 15px;
}

.category-container {
	margin-bottom: 40px;
}

.category-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: var(--category-shadow);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
	position: relative;
	overflow: hidden;
}

.category-image img {
	width: 100%;
	height: auto;
	transition: all 0.5s ease;
}

.category-card:hover .category-image img {
	transform: scale(1);
}

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
	opacity: 0.8;
	transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
	opacity: 0.9;
}

.category-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.category-name {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--category-primary);
	margin-bottom: 15px;
}

.category-description {
	color: #7f8c8d;
	margin-bottom: 20px;
	flex-grow: 1;
	font-size: 18px;
	line-height: 25px;
}

.category-btn {
	background: var(--category-primary);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
	text-align: center;
	width: 50%;
	margin: 20px auto 0;
	font-size: 1rem;
	margin-bottom: 20px;
}

.category-btn:hover {
	background: var(--category-accent);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.category-card:hover .category-btn {
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.category-stats {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #eee;
	padding-top: 15px;
	margin-top: 15px;
}

.category-stat {
	text-align: center;
	color: #7f8c8d;
}

.category-stat-number {
	font-weight: 700;
	color: var(--category-primary);
	font-size: 1.2rem;
}

.product-model-one-title {
	color: var(--product-model-one-primary);
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
}

.product-model-one-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--product-model-one-accent);
}

.product-model-one-subtitle {
	color: var(--product-model-one-secondary);
	margin-top: 15px;
}

.product-model-one-container {
	margin-bottom: 40px;
}

.product-model-one-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: var(--product-model-one-shadow);
	height: 100%;
	position: relative;
}

.product-model-one-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.product-model-one-image {
	position: relative;
	overflow: hidden;

}

.product-model-one-image img {
	width: 100%;
	height: auto;
	transition: all 0.5s ease;
	padding: 20px;
}

.product-model-one-card:hover .product-model-one-image img {
	transform: scale(1.08);
}

.product-model-one-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-model-one-card:hover .product-model-one-overlay {
	opacity: 1;
}

.product-model-one-action {
	background: white;
	color: var(--product-model-one-primary);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 8px;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s ease;
	cursor: pointer;
}

.product-model-one-card:hover .product-model-one-action {
	opacity: 1;
	transform: translateY(0);
}

.product-model-one-action:hover {
	background: var(--product-model-one-accent);
	color: white;
	transform: scale(1.1);
}

.product-model-one-content {
	padding: 20px;
	text-align: center;
}

.product-model-one-name {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--product-model-one-primary);
	margin-bottom: 10px;
}

.product-model-one-category {
	color: #95a5a6;
	font-size: 0.9rem;
	margin-bottom: 15px;
}

.product-model-one-price {
	color: var(--product-model-one-accent);
	font-weight: 700;
	font-size: 1.4rem;
}

.product-model-one-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--product-model-one-accent);
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 10;
}

.product-model-one-rating {
	color: #f39c12;
	margin: 10px 0;
}

@media (max-width: 992px) {
	.product-model-one-card {
		margin-bottom: 20px;
	}
}

.product-model-one-filter {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.product-model-one-filter-btn {
	background: white;
	border: none;
	padding: 8px 20px;
	margin: 0 8px 10px;
	border-radius: 20px;
	font-weight: 600;
	color: var(--product-model-one-secondary);
	transition: all 0.3s ease;
}

.product-model-one-filter-btn:hover,
.product-model-one-filter-btn.active {
	background: var(--product-model-one-accent);
	color: white;
}

.content-section-container {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

/* .content-section-image-container {
    height: 100%;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c3e50;
}

.content-section-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

/* .content-section-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px;
} */

.content-section-image-container {
	height: 100%;
	padding: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
}

.content-section-image-container img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.content-section-image-overlay {
	display: none;
}

.content-section-image-overlay h2 {
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 2.2rem;
}

.content-section-image-overlay p {
	font-size: 1.2rem;
	opacity: 0.9;
}

.content-section-container .row {
	align-items: center;
	/* Vertically center columns */
}

.content-section-content {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Vertically center content */
	height: 100%;
}

.content-section-content p {
	line-height: 1.5rem;
	font-size: 18px;
}

.content-section-heading {
	color: var(--content-section-primary);
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
	font-size: 25px;
	line-height: 2rem;
}

.content-section-heading:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--content-section-accent);
}

.content-section-list {
	padding-left: 0px;
	counter-reset: item;
	/* Reset counter for ordered list */
}

.content-section-list ol {
	padding-left: 0;
	/* Remove default padding */
	list-style: none;
	/* Remove default numbering */
}

.content-section-list li {
	margin-bottom: 5px;
	padding-left: 30px;
	/* Add space for custom numbers */
	position: relative;
	font-size: 1.1rem;
	line-height: 1.4;
	counter-increment: item;
	/* Increment counter */
	font-weight: bold;
}

.content-section-list li::before {
	content: counter(item) ".";
	/* Use counter for numbers */
	position: absolute;
	left: 0;
	top: 0;
	color: var(--numeric-text);
	font-weight: 700;
	font-size: 1.3rem;
}

.content-section-list strong {
	color: var(--content-section-primary);
	display: block;
	margin-bottom: 5px;
}

.content-section-divider {
	height: 3px;
	width: 40px;
	background: var(--content-section-accent);
	margin: 25px 0;
}

.content-section-btn {
	background: var(--content-section-accent);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 20px;
	display: inline-block;
	text-decoration: none;
}

.content-section-btn:hover {
	background: var(--content-section-primary);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-label {
	font-weight: bold;
	color: var(--spec-label);
	/* Blue color */
	display: inline;
	/* Ensure it stays on the same line */
}

.product-note {
	background-color: #f8f9fa;
	border-left: 4px solid #3498db;
	padding: 15px 20px;
	margin-top: 20px;
	border-radius: 0 8px 8px 0;
}

.product-note p {
	margin: 0;
	color: #2c3e50;
	font-size: 1.1rem;
	line-height: 1.6;
	font-style: italic;
}

.content-section-btn {
	background: #3498db;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.content-section-btn:hover {
	background: #2c3e50;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specification-container {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.specification-header {
	text-align: center;
	padding: 30px;
	background: linear-gradient(to right, #2c3e50, #3498db);
	color: white;
}

.specification-title {
	font-weight: 700;
	margin-bottom: 10px;
}

.specification-subtitle {
	opacity: 0.9;
}

.specification-image {
	text-align: center;
	padding: 30px;
}

.specification-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;

}

.specification-content {
	padding: 0 30px 30px;
}

.specification-section {
	margin-bottom: 30px;
}

.specification-heading {
	color: var(--specification-primary);
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--specification-accent);
}

.specification-list {
	margin-bottom: 20px;
}

.specification-item {
	margin-bottom: 15px;
	padding-left: 20px;
	position: relative;
	line-height: 1.3rem;
}

.specification-item:before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--specification-accent);
	font-weight: bold;
}

.specification-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.specification-table th,
.specification-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid var(--specification-border);
}

.specification-table th {
	background-color: var(--specification-light);
	color: var(--specification-primary);
	font-weight: 600;
}

.specification-table tr:hover {
	background-color: #f8f9fa;
}

.specification-label {
	font-weight: 600;
	color: var(--specification-primary);
	display: inline-block;
	min-width: 180px;
}

.specification-back-btn {
	background: var(--specification-primary);
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	margin: 20px 0;
}

.specification-back-btn:hover {
	background: var(--specification-accent);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specification-container.row {
	align-items: center;
	/* Vertically center columns */
}

.specification-image {
	display: flex;
	align-items: center;
	/* Vertically center image */
	justify-content: center;
	/* Horizontally center image */
	height: 100%;
}

.specification-image img {
	max-height: 80vh;
	/* Limit image height */
	width: auto;
	max-width: 100%;
}

.industry-container {
	max-width: 1200px;
	margin: 0 auto;
}

.industry-header {
	text-align: center;
	margin-bottom: 50px;
}

.industry-title {
	color: var(--industry-primary);
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
}

.industry-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--industry-accent);
}

.industry-subtitle {
	color: var(--industry-secondary);
	margin-top: 15px;
}

.industry-card {
	background: white;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	height: 100%;
	border: 1px solid #f0f0f0;
}

.industry-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.industry-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #db3466, rgb(240, 93, 124));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 2rem;
	transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, #e74c3c, #db346c);
}

.industry-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--industry-primary);
	margin-bottom: 0;
}

.industry-card:hover .industry-name {
	color: var(--industry-accent);
}

#sec-industry {
    padding: 100px 0;
	background-color: #f2f2f2;
}

footer a { color: #d6dada; }
footer strong { font-weight: bold; }


.terms-conditions {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	line-height: 1.6;
	color: #333;
	border: 1px solid #2c3e50;
	border-radius: 20px;
}
.terms-conditions h1 {
	color: #2c3e50;
	border-bottom: 2px solid #3498db;
	padding-bottom: 10px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.terms-conditions h2 {
	color: #34495e;
	margin-top: 30px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bold;
}
.terms-conditions h2 i {
	color: #3498db;
	font-size: 1.2em;
}
.terms-conditions p {
	margin-bottom: 15px;
}
.terms-conditions ul {
	margin-bottom: 15px;
	padding-left: 0;
	list-style: none;
}
.terms-conditions li {
	margin-bottom: 12px;
	padding-left: 60px;
	position: relative;
	display: flex;
	align-items: flex-start;
}
.terms-conditions li i {
	position: absolute;
	left: 30px;
	top: 6px;
	color: #3498db;
	font-size: 16px;
	width: 20px;
	text-align: center;
}
.contact-info {
	background: #d0e0f0;
	padding: 20px;
	border-radius: 5px;
	border-left: 4px solid #3498db;
}
.last-updated {
	color: #7f8c8d;
	font-style: italic;
	margin-top: 40px;
	background: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
	text-align: center;
}
.section-icon {
	background: #3498db;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}
.icon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin: 20px 0;
}
.icon-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: transform 0.3s ease;
}
.icon-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.icon-item i {
	color: #3498db;
	font-size: 20px;
	margin-top: 2px;
}

div.contact-info strong, div.terms-conditions strong { font-weight: bold; }

.privacy-policy {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	line-height: 1.6;
	color: #333;
	border: 1px solid #2c3e50;
	border-radius: 20px;
}
.privacy-policy h1 {
	color: #2c3e50;
	border-bottom: 2px solid #3498db;
	padding-bottom: 10px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.privacy-policy h2 {
	color: #34495e;
	margin-top: 30px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bold;
}
.privacy-policy h2 i {
	color: #3498db;
	font-size: 1.2em;
	width: 30px;
}
.privacy-policy p {
	margin-bottom: 15px;
	padding-left: 30px;
}
.privacy-policy p strong {
	font-weight: bold;
}
.privacy-policy ul {
	margin-bottom: 15px;
	padding-left: 0;
	list-style: none;
}
.privacy-policy li {
	margin-bottom: 12px;
	padding-left: 60px;
	position: relative;
	display: flex;
	align-items: flex-start;
}
.privacy-policy li i {
	position: absolute;
	left: 30px;
	top: 6px;
	color: #3498db;
	font-size: 16px;
	width: 25px;
	text-align: center;
}
.feature-list {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
}