body{
	margin: 0;
	background: #f5f5f5;
	font-family: Arial, Helvetica, sans-serif;
}
 
/* =========================
TOP HEADER
========================= */

.top-header{
	background: #efefef;
	border-top: 5px solid #f0b400;
	padding: 18px 0;
	min-height: 80px; 
}

.contact-box{
	display: flex;
	align-items: center;
	gap: 14px;
}

.contact-icon{
	width: 58px;
	height: 58px;
	background: #39415b;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
}

.contact-content small{
	background: #39415b;
	color: #fff;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 6px;
}

.contact-content h4{
	margin: 0;
	color: #39415b;
	font-size: 20px;
	font-weight: 700;
}

.logo img{
	max-height: 110px;
}

/* =========================
NAVBAR
========================= */

.main-navbar{
	background: #39415b;
	padding: 0;
}

.main-navbar .nav-link{
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	padding: 20px 18px !important;
	transition: .3s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active{
	color: #f0b400;
}

.navbar-toggler{
	border: none;
	color: #fff;
	font-size: 32px;
}

.navbar-toggler:focus{
	box-shadow: none;
}

/* MOBILE MENU */

@media(max-width:991px){
  
	.contact-box{
		justify-content: center;
		text-align: left;
	}

	.logo{
		text-align: center;
	}

	.logo img{
		max-height: 90px;
	}

	.navbar-collapse{
		background: #39415b;
		padding: 20px;
	}

	.main-navbar .nav-link{
		padding: 14px 0 !important;
		border-bottom: 1px solid rgba(255,255,255,0.08);
	}

	.navbar-nav{
		width: 100%;
	}

}

/* EXTRA SMALL DEVICES */

@media(max-width:576px){

	.contact-box{
		flex-direction: column;
		text-align: center;
		display: none;
	}

	.contact-content h4{
		font-size: 18px;
	}

	.main-navbar .nav-link{
		font-size: 16px;
	}
	.top-header{ 
		height: 130px;
	}

}

.dropdown-menu{
	border: none;
	border-radius: 0;
	background: #4a536f;
	padding: 0;
}

.dropdown-item{
	color: #fff;
	padding: 12px 20px;
	font-weight: 600;
}

.dropdown-item:hover{
	background: #f0b400;
	color: #fff;
}

@media(max-width:991px){

	.dropdown-menu{
		background: #31384f;
		margin-left: 15px;
		border-left: 3px solid #f0b400;
	}

}


/* =========================
HERO SLIDER
========================= */

.hero-slider{
	position: relative;
}

.hero-item{
	position: relative;
	height: 70vh;
	min-height: 700px;
	overflow: hidden;
}

.hero-image{
	position: absolute;
	inset: 0;
}

.hero-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

 
/* Content */

.hero-content{
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
}

.hero-box{
	position: relative;
	background: #FAA81B;
	background: linear-gradient(90deg, rgba(250, 168, 27, 1) 0%, rgba(244, 225, 34, 1) 100%);
	padding: 30px 180px ;
	width: 50%; 
	z-index: 88;
	clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%);
}

.hero-box small{
	display: block;
	font-size: 18px;
	font-weight: 800;
	color: #000;
	margin-bottom: 18px;
	letter-spacing: 1px;
}

.hero-box h1{
	font-size: 48px;
	line-height: 1;
	font-weight: 900;
	color: #000;
	margin-bottom: 35px;
	text-transform: uppercase;
}

/* Button */

.hero-btn{
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	color: #39415b;
	text-decoration: none;
	padding: 14px 24px;
	border-radius: 50px;
	font-size: 20px;
	font-weight: 700;
	transition: .3s;
}

.hero-btn i{
	font-size: 32px;
}

.hero-btn:hover{
	transform: translateY(-3px);
	color: #000;
}

/* Right Box */

.quote-box{
	position: absolute;
	right: 8%;
	bottom: 0%;
	width: 230px;
	height: 230px;
	background: #f3d313;
	z-index: 99;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;
}

.quote-icon{
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.quote-icon i{
	font-size: 42px;
	color: #000;
}

.quote-box h3{
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
}

/* Owl Nav */

.owl-nav{
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
}

.owl-nav button{
	width: 55px;
	height: 55px;
	border-radius: 50% !important;
	background: #fff !important;
	margin: 0 8px !important;
	transition: .3s;
}

.owl-nav button:hover{
	background: #f3d313 !important;
}

.owl-nav span{
	font-size: 34px;
	line-height: 0;
	color: #000;
}

/* Responsive */

@media(max-width:991px){

	.hero-item{
		height: auto;
		min-height: 500px;
	}

	.hero-box{
		width: 100%;
		padding: 50px 40px;
		clip-path: none;
	}

	.hero-box h1{
		font-size: 42px;
	}

	.quote-box{
		width: 180px;
		height: 180px;
		right: 20px;
		bottom: 20px;
		display: none;
	}

}

@media(max-width:576px){

	.hero-box{
		padding: 40px 25px;
	}

	.hero-box h1{
		font-size: 34px;
	}

	.hero-btn{
		font-size: 16px;
	}

	.quote-box{
		position: relative;
		right: auto;
		bottom: auto;
		margin: 30px auto 0;
	}

}

.occupational-section{
	background: url('../img/banner-image-2.jpg') center center/cover no-repeat;
}

.bg-overlay{
	position: absolute;
	inset: 0;
	background: rgba(25,30,45,0.82);
}

.service-icon{
	width: 70px;
	height: 70px;
	background: #f4cb08;
	color: #111;
	font-size: 2rem;
}

.arrow-btn{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #fff;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: #1d2233;
}

.service-card{
	position: relative;
	background: #f1f1f1;
	padding: 35px 25px 25px;
	border-radius: 30px;
	border-top: 3px solid #f4cb08;
	transition: 0.3s ease;
	height: 100%;
}

.service-card:hover{
	transform: translateY(-8px);
}

.number-badge{
	position: absolute;
	top: -18px;
	left: 20px;
	background: #f4cb08;
	color: #111;
	font-weight: 700;
	padding: 10px 15px;
	border-radius: 10px;
	font-size: 1.2rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card h4{
	font-weight: 700;
	margin-bottom: 18px;
	color: #1d2233;
}

.service-card p{
	margin-bottom: 0;
	line-height: 1.8;
	color: #444;
}

@media(max-width:768px){

	.occupational-section{
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.arrow-btn{
		display: none !important;
	}

	.service-card{
		border-radius: 20px;
	}

}



/* Section Setup */
.services-section {
	background-color: #fca91c; /* Matches the vibrant orange background */
	padding: 60px 20px;
	font-family: 'Arial', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
}

.services-container {
	display: flex;
	width: 100%;
	max-width: 1200px;
	gap: 40px;
	align-items: center;
}

/* Left Column: Image styling with the semi-circle frame cut */
.image-card-wrapper {
	flex: 1.2;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
}

.image-card {
	width: 100%;
	height: 380px;
	border-radius: 0 200px 200px 0; /* Creates the semi-circle right edge */
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, 0.5); /* Soft light border */
}

.image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Right Column: 2x2 White Grid */
.services-grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

/* Individual Card Styling */
.service {
	background-color: #ffffff;
	border-radius: 24px; /* Softly rounded corners */
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	aspect-ratio: 1 / 1; /* Keeps them perfectly square */
}

.service:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon customization */
.icon-box {
	width: 85px;
	height: 85px;
}

.icon-box svg {
	width: 100%;
	height: 100%;
	stroke: #d06228; 
}

/* Typography & Links */
.service h3 {
	color: #1e293b;
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 15px 0 5px 0;
}

.more-link {
	color: #334155;
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #1e293b;
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.more-link:hover {
	color: #d06228;
	border-color: #d06228;
}

/* Responsive adjustments for tablets and mobile devices */
@media (max-width: 900px) {
	.services-container {
		flex-direction: column;
	}

	.image-card-wrapper {
		width: 100%;
		justify-content: center;
	}

	.image-card {
		border-radius: 24px; /* Remove the semi-circle cut on small screens for better framing */
		height: 250px;
	}

	.services-grid {
		width: 100%;
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.services-grid {
		grid-template-columns: 1fr; /* Stack into a single column on tight phone screens */
	}
	.service-card {
		aspect-ratio: auto;
	}
}


/* Base Styles & Container Setup */
.about-section {
	padding: 80px 20px;
	background-color: #fafafa;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #2d3748;
	display: flex;
	justify-content: center;
}

.about-container {
	width: 100%;
	max-width: 1200px;
}

/* Section Header Styles */
.about-header {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	align-items: flex-start;
}

.header-left {
	flex: 1;
}

.sub-title {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #d06228; /* Professional secondary accent color */
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.header-left h2 {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.15;
	color: #1a202c;
	margin: 0;
}

.header-right {
	flex: 1.2;
}

.header-right p {
	font-size: 1.1rem;
	line-height: 1.65;
	color: #4a5568;
	margin: 0;
}

.section-divider {
	border: 0;
	height: 1px;
	background-color: #e2e8f0;
	margin-bottom: 50px;
}

/* Two-Column Grid Content Layout */
.about-content-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	margin-bottom: 60px;
	align-items: start;
}

.content-left h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1a202c;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 20px;
}

.content-left p {
	font-size: 1rem;
	line-height: 1.6;
	color: #4a5568;
	margin-bottom: 20px;
}

/* Vision Box Styling */
.vision-box {
	background-color: #fff;
	border-left: 4px solid #d06228;
	padding: 25px;
	margin-top: 35px;
	border-radius: 0 12px 12px 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.vision-box h4 {
	margin: 0 0 10px 0;
	font-size: 0.95rem;
	letter-spacing: 1px;
	color: #1a202c;
}

.vision-box p {
	margin: 0;
	font-style: italic;
	font-size: 0.95rem;
	color: #4a5568;
	line-height: 1.5;
}

/* Right Side Services Grid */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.category-card {
	background-color: #ffffff;
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	border: 1px solid #edf2f7;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.category-icon {
	font-size: 2rem;
	margin-bottom: 15px;
}

.category-card h5 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 10px 0;
}

.category-card p {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #718096;
	margin: 0;
}

/* Bottom Value/Stat Bar Layout */
.about-footer-bar {
	display: flex;
	justify-content: space-around;
	background-color: #1a202c; /* Slick Dark Theme Block */
	color: #ffffff;
	padding: 30px 20px;
	border-radius: 12px;
	text-align: center;
}

.footer-stat-item display {
	display: flex;
	flex-direction: column;
}

.footer-stat-item strong {
	display: block;
	font-size: 1.25rem;
	color: #ffffff;
	margin-bottom: 4px;
}

.footer-stat-item span {
	font-size: 0.9rem;
	color: #a0aec0;
}

/* Responsive Configurations (Tablets and Mobile Devices) */
@media (max-width: 992px) {
	.about-header {
		flex-direction: column;
		gap: 20px;
	}

	.about-content-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 600px) {
	.header-left h2 {
		font-size: 2rem;
	}

	.categories-grid {
		grid-template-columns: 1fr;
	}

	.about-footer-bar {
		flex-direction: column;
		gap: 25px;
	}

	.about-section {
		padding: 50px 15px;
	}
}


/* Header Structural Layout */
.breadcrumb-header {
	position: relative;
	width: 100%;
	/* Replace with your preferred industrial/corporate background banner image */
	background-image: url('../img/about-us-bg-img.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 20px; /* Controls the height/breathing room of the banner */
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	box-sizing: border-box;
}

/* Dark Tint Overlay Layer */
.header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26, 32, 44, 0.85) 0%, rgba(45, 55, 72, 0.7) 100%);
	z-index: 1;
}

/* Content Container Alignment */
.breadcrumb-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	z-index: 2; /* Ensures text stays layered on top of the overlay tint */
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Typography & Titles */
.page-title {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.5px;
}

/* Breadcrumb Navigation Lists */
.breadcrumb-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 500;
}

/* Divider Arrow Structure */
.breadcrumb-item:not(:last-child)::after {
	content: "/";
	margin: 0 12px;
	color: #a0aec0; /* Subdued gray slash */
	font-size: 0.9rem;
}

/* Links and Interactive States */
.breadcrumb-link {
	color: #e2e8f0;
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumb-link:hover {
	color: #fca91c; /* Matches your brand orange highlight accent on hover */
}

/* Current Page Static Label */
.breadcrumb-current {
	color: #fca91c; /* Highlights the active page clearly */
	font-weight: 600;
}

/* Responsive Configurations (Tablets & Mobile Screen Breakpoints) */
@media (max-width: 768px) {
	.breadcrumb-header {
		padding: 60px 15px;
	}

	.page-title {
		font-size: 2rem;
	}

	.breadcrumb-item {
		font-size: 0.85rem;
	}
}

 
/* Base Layout Setup & Colors */
.contact-page { 
	margin: 0;
	padding: 80px 20px 40px 20px;
	min-height: 100vh;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;

	/* Creates the split background effect (Top Dark Blue, Bottom Yellow-Orange) */
	background: #343d52;
}

/* Page Header Typography */
.contact-header {
	text-align: center;
	color: #ffffff;
	margin-bottom: 50px;
	max-width: 600px;
	z-index: 2;
}

.contact-header h1 {
	font-size: 3rem;
	font-weight: 300;
	letter-spacing: 2px;
	margin: 0 0 15px 0; 
}

.contact-header p {
	font-size: 1.1rem;
	color: #cbd5e1;
	line-height: 1.5;
	margin: 0;
}

/* Main Grid Layout */
.contact-container {
	display: flex;
	width: 100%;
	max-width: 1000px;
	gap: 30px;
	justify-content: center;
	z-index: 2;
	margin-bottom: 60px;
}

/* Modern Glassmorphism Card Style */
.glass-card {
	flex: 1;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	color: #ffffff;
}

.glass-card h2 {
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-top: 0;
	margin-bottom: 30px;
}

/* Form Styles */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	color: #ffffff;
	font-size: 1rem;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #cbd5e1;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #fca91c;
	background: rgba(255, 255, 255, 0.1);
}

/* Styled Solid Submit Button */
.btn-submit {
	background-color: #fca91c;
	color: #1e293b;
	border: none;
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.1s ease;
	margin-top: 10px;
}

.btn-submit:hover {
	background-color: #e59510;
}

.btn-submit:active {
	transform: scale(0.98);
}

/* Right-side Info Card Items */
.info-card {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Adjust colors when cards transition over the bottom yellow background */
.info-card .info-text p,
.info-card .social-block h3 {
	/* Subtle dark color shift strategy to ensure high accessibility contrast */
	color: rgba(255, 255, 255, 0.95);
}

/* Adapt look dynamically if layout crosses paths */
.info-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.info-icon {
	font-size: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-text h3 {
	margin: 0 0 6px 0;
	font-size: 1.2rem;
	font-weight: 600;
}

.info-text p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Social Icon Blocks */
.social-block {
	margin-top: auto; /* Pushes block down to bottom of card content */
}

.social-block h3 {
	margin: 0 0 15px 0;
	font-size: 1.2rem;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: #1e293b; /* Dark fill icons for contrast */
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.9rem;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
	background-color: #fca91c;
	color: #1e293b;
	transform: translateY(-3px);
}


/* Container Layout Setup */
.products-principles-page {
	background-color: #f8fafc;
	padding: 80px 20px;
	font-family: 'Segoe UI', system-ui, sans-serif;
	color: #1e293b;
	display: flex;
	justify-content: center;
}

.pp-container {
	width: 100%;
	max-width: 1200px;
}

/* Category Headers styling */
.product-section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 45px auto;
}

.pp-subtitle {
	font-size: 0.85rem;
	font-weight: 700;
	color: #fca91c;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.product-section-header h2 {
	font-size: 2.2rem;
	color: #343d52;
	margin: 8px 0 15px 0;
	font-weight: 800;
}

.product-section-header p {
	color: #64748b;
	font-size: 1.05rem;
	line-height: 1.5;
}

.margin-top-lg {
	margin-top: 90px;
}

/* Primary Top Products Layout */
.products-showcase-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.product-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	border: 1px solid #e2e8f0;
	transition: transform 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-img-holder {
	height: 240px;
	background-color: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product-img-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-details {
	padding: 25px;
}

.prod-cat {
	font-size: 0.8rem;
	font-weight: 700;
	color: #fca91c;
	text-transform: uppercase;
}

.product-details h3 {
	font-size: 1.25rem;
	color: #343d52;
	margin: 8px 0 12px 0;
	font-weight: 700;
}

.product-details p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

/* Split Column Block: Principles + Featured Hardware */
.principles-banner-block {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	background-color: #343d52; /* Contrast dark theme card */
	border-radius: 24px;
	padding: 50px;
	color: #ffffff;
	align-items: center;
	box-shadow: 0 15px 35px rgba(52, 61, 82, 0.15);
}

.principles-content h2 {
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 0;
}

.yellow-line-accent {
	width: 140px;
	height: 4px;
	background-color: #fca91c;
	margin: 15px 0 35px 0;
	border-radius: 2px;
}

.principles-checkmark-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px 20px;
}

.principles-checkmark-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.check-icon {
	background: #fca91c;
	color: #343d52;
	font-weight: 900;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	flex-shrink: 0;
}

.principles-checkmark-list strong {
	display: block;
	color: #ffffff;
	font-size: 1rem;
	margin-bottom: 2px;
}

.principles-checkmark-list div {
	font-size: 0.85rem;
	color: #cbd5e1;
	line-height: 1.4;
}

/* Featured Device Layout */
.featured-device-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
}

.device-img-holder {
	height: 220px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.device-img-holder img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.device-info {
	padding: 25px;
}

.featured-tag {
	background-color: #fca91c;
	color: #343d52;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
}

.device-info h3 {
	font-size: 1.3rem;
	margin: 15px 0 10px 0;
}

.device-info p {
	color: #cbd5e1;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

/* Ventilation Bags Block Layout */
.ventilation-bags-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bag-card {
	background-color: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.bag-img-holder {
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fafafa;
	border-radius: 12px;
	margin-bottom: 15px;
}

.bag-img-holder img {
	max-height: 90%;
	max-width: 90%;
	object-fit: contain;
}

.bag-specs h3 {
	font-size: 1.15rem;
	color: #343d52;
	margin: 0 0 12px 0;
}

.bag-specs p {
	margin: 4px 0;
	font-size: 0.88rem;
	color: #64748b;
}

/* Responsive Adaptive Layouts for Tablet & Mobile views */
@media (max-width: 992px) {
	.products-showcase-grid,
	.ventilation-bags-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.principles-banner-block {
		grid-template-columns: 1fr;
		padding: 35px;
	}
}

@media (max-width: 680px) {
	.products-showcase-grid,
	.ventilation-bags-grid {
		grid-template-columns: 1fr;
	}

	.principles-checkmark-list {
		grid-template-columns: 1fr;
	}

	.product-section-header h2,
	.principles-content h2 {
		font-size: 1.8rem;
	}
}



/* Container & Global Variables */
.mandielink-services-page {
	background-color: #fca91c;
	padding: 80px 20px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}

.services-wrapper {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* --- TOP HERO SECTION --- */
.services-hero-row {
	display: flex;
	gap: 40px;
	align-items: center;
}

.hero-image-wrapper {
	flex: 1.2;
}

.hero-image-card {
	width: 100%;
	height: 380px;
	border-radius: 0 200px 200px 0;
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.features-grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.feature-card {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	aspect-ratio: 1 / 1;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.feature-icon-box {
	font-size: 2rem;
	color: #d06228;
}

.feature-card h3 {
	color: #1e293b;
	font-size: 1.1rem;
	font-weight: 800;
	margin: 15px 0 5px 0;
}

.feature-more-link {
	color: #475569;
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid #1e293b;
	padding-bottom: 2px;
}

/* --- PORTABLE ROW GRID LIST SYSTEM --- */
.supplies-list-section {
	background-color: #ffffff;
	border-radius: 24px;
	padding: 45px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.supplies-header h2 {
	color: #243048;
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 10px 0;
}

.title-accent-line {
	width: 140px;
	height: 4px;
	background-color: #fca91c;
	border-radius: 2px;
	margin-bottom: 15px;
}

.supplies-subtitle {
	font-size: 1.05rem;
	color: #475569;
	font-weight: 600;
	margin-bottom: 30px;
}

/* Portable Flex Grid Container wrapper mimicking bootstrap rows */
.compact-grid-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
	row-gap: 15px; /* Clean gap spacing between stacked rows */
}

/* Desktop sizing: col-md-4 handles 3 items per row (100% / 3) */
.col-md-4 {
	box-sizing: border-box;
	padding-right: 10px;
	padding-left: 10px;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

/* Mini Item Block Content */
.supply-pill-item {
	background-color: #edf2f7;
	padding: 12px 18px;
	border-radius: 12px; /* Uniform subtle rounded corner */
	display: flex;
	align-items: center;
	gap: 12px;
	height: 100%; /* Keeps boxes standard height regardless of text lines */
	box-sizing: border-box;
}

.pill-dot {
	width: 10px;
	height: 10px;
	background-color: #fca91c;
	border-radius: 50%;
	flex-shrink: 0;
}

.supply-pill-item p {
	margin: 0;
	font-size: 0.92rem;
	color: #243048;
	font-weight: 700;
	line-height: 1.3;
}

/* --- VIEWPORT BREAKPOINTS (MEDIA QUERIES) --- */

/* Tablet Sizing Breakpoint */
@media (max-width: 992px) {
	.services-hero-row {
		flex-direction: column;
	}
	.hero-image-card {
		border-radius: 20px;
		height: 260px;
	}
	.features-grid {
		width: 100%;
	}

	/* col-sm-6 handles exactly 2 items per row over intermediate screen widths */
	.compact-grid-row .col-sm-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

/* Mobile Devices Sizing Breakpoint */
@media (max-width: 576px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
	.feature-card {
		aspect-ratio: auto;
	}

	/* Collapse fully into single fluid rows on screen sizes below 576px wide */
	.compact-grid-row .col-sm-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}



/* Layout Global Settings */
.construction-section {
	padding: 60px 20px;
	background-color: #ffffff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex;
	justify-content: center;
}

.container {
	width: 100%;
	max-width: 1200px;
}

.row-grid {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	row-gap: 30px;
}

/* col-sm-4 Structural Layout (3 across on desktop viewports) */
.col-sm-4 {
	box-sizing: border-box;
	padding-right: 15px;
	padding-left: 15px;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.service-block-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid #edf2f7;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Arched Corner Cutout Image Design */
.block-image-wrapper {
	width: 100%;
	height: 220px;
	overflow: hidden;
	border-radius: 0 100px 100px 0; /* Arched right side corner curve mapping */
	background-color: #f1f5f9;
	border-bottom: 3px solid #edf2f7;
}

.block-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Inner Text Area */
.block-content {
	padding: 25px 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1; /* Pushes button section to uniform bottom positions */
}

.block-header h2 {
	margin: 0 0 10px 0;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
}

.title-top {
	font-size: 1.6rem;
	font-weight: 800;
	color: #243048; /* Slate Blue Theme Font Color */
	letter-spacing: -0.5px;
}

.title-main {
	font-size: 1.4rem;
	font-weight: 700;
	color: #243048;
}

.accent-line-yellow {
	width: 100px;
	height: 4px;
	background-color: #fca91c;
	border-radius: 2px;
	margin-bottom: 18px;
}

.block-description {
	font-size: 0.92rem;
	line-height: 1.6;
	color: #4a5568;
	margin: 0 0 25px 0;
}

/* Button Structural Layout Placement */
.action-btn-wrapper {
	margin-top: auto; /* Pushes buttons to perfectly align on the grid line */
	padding-top: 15px;
}

.service-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fca91c; /* Brand Accent Industrial Gold Code */
	color: #243048;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 12px 20px;
	border-radius: 8px;
	width: 100%; /* Spans full internal card width like block layout links */
	box-sizing: border-box;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

.service-action-btn i {
	font-size: 1.1rem;
	transition: transform 0.2s ease;
}

/* Interactive Link States */
.service-action-btn:hover {
	background-color: #e59510;
}

.service-action-btn:hover i {
	transform: translateX(4px); /* Interactive slide micro-animation on arrow icon */
}

.service-action-btn:active {
	transform: scale(0.99);
}

/* --- ADAPTIVE RESPONSIVE GRID OVERRIDES --- */
@media (max-width: 992px) {
	.col-sm-4 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 640px) {
	.col-sm-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.block-image-wrapper {
		border-radius: 0;
		height: 190px;
	}
}




/* --- GLOBAL THEME SYSTEM --- */
body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #ffffff;
	color: #334155;
	box-sizing: border-box;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

/* Reusable UI Components */
.tagline {
	font-size: 0.85rem;
	font-weight: 700;
	color: #fca91c; /* Industrial Gold */
	letter-spacing: 2px;
	display: block;
	margin-bottom: 12px;
}

.dark-tag {
	color: #475569;
}

.accent-line {
	width: 100px;
	height: 4px;
	background-color: #fca91c;
	border-radius: 2px;
	margin-bottom: 25px;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.center-text {
	text-align: center;
}

.section-header {
	max-width: 700px;
	margin-bottom: 60px;
}
.section-header h2 {
	font-size: 2.4rem;
	color: #343d52;
	font-weight: 800;
	margin: 0 0 10px 0;
}
.section-header p {
	color: #64748b;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* --- SECTION 1: HERO OVERVIEW (SLATE BLUE BACKGROUND) --- */
.company-hero {
	background-color: #343d52; /* Slate Blue Core Color */
	color: #ffffff;
	padding: 100px 0;
}

.hero-split {
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-text-block {
	flex: 1.2;
}

.hero-text-block h1 {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 20px 0;
	letter-spacing: -1px;
}

.lead-text {
	font-size: 1.2rem;
	line-height: 1.6;
	color: #cbd5e1;
	font-weight: 500;
	margin-bottom: 20px;
}

.hero-text-block p {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #94a3b8;
	margin: 0;
}

.hero-img-side {
	flex: 0.8;
	display: flex;
	justify-content: center;
}

/* Brand Distinct Arched Crop Effect */
.brand-arched-frame {
	width: 100%;
	max-width: 400px;
	height: 440px;
	border-radius: 0 220px 220px 0; /* Arched curvature styling */
	overflow: hidden;
	border: 5px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.brand-arched-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- SECTION 2: FOUR PIPELINE CARD PILLARS --- */
.pillars-section {
	padding: 100px 0;
	background-color: #f8fafc;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.pillar-card {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 35px 25px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.pillar-icon {
	font-size: 2.5rem;
	color: #fca91c;
	margin-bottom: 20px;
	line-height: 1;
}

.pillar-card h3 {
	font-size: 1.25rem;
	color: #343d52;
	font-weight: 800;
	letter-spacing: 0.5px;
	margin: 0 0 12px 0;
}

.pillar-card p {
	font-size: 0.92rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* --- SECTION 3: THE 6 CORPORATE PRINCIPLES GRID --- */
.principles-deep-dive {
	padding: 100px 0;
	background-color: #ffffff;
}

/* Multi-Column Layout Rows */
.row-grid {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	row-gap: 30px;
}

/* Portable col-sm-4 standard grid settings (3 columns across) */
.col-sm-4 {
	box-sizing: border-box;
	padding-right: 15px;
	padding-left: 15px;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.principle-card {
	background-color: #ffffff;
	border-left: 4px solid #343d52; /* Unique dark left border marker */
	padding: 30px;
	height: 100%;
	box-sizing: border-box;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
	border-radius: 0 16px 16px 0;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.principle-card:hover {
	border-left-color: #fca91c; /* Highlights orange on cursor hover */
	background-color: #f8fafc;
}

.principle-num {
	font-size: 2rem;
	font-weight: 900;
	color: rgba(52, 61, 82, 0.1);
	line-height: 1;
	margin-bottom: 10px;
}

.principle-card h3 {
	font-size: 1.3rem;
	color: #343d52;
	font-weight: 700;
	margin: 0 0 12px 0;
}

.principle-card p {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.6;
	margin: 0;
}

/* --- RESPONSIVE WORKPORT ADJUSTMENTS --- */

@media (max-width: 1024px) {
	.hero-split {
		flex-direction: column;
		gap: 50px;
		text-align: center;
	}
	.hero-text-block h1 {
		font-size: 2.6rem;
	}
	.accent-line {
		margin-left: auto;
	margin-right: auto;
	}
	.brand-arched-frame {
		border-radius: 24px;
	height: 350px;
	}

	.pillars-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.col-sm-4 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 640px) {
	.hero-text-block h1 {
		font-size: 2.2rem;
	}
	.section-header h2 {
		font-size: 1.9rem;
	}

	.pillars-grid {
		grid-template-columns: 1fr;
	}
	.col-sm-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}




/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25d366; /* Official WhatsApp Green */
	color: #ffffff;
	border-radius: 50%;
	text-align: center;
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 9999; /* Ensures it floats above all other elements */
	text-decoration: none;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover and Click Interactions */
.whatsapp-float:hover {
	background-color: #20ba5a;
	transform: translateY(-5px);
	color: #ffffff;
}

.whatsapp-float:active {
	transform: scale(0.9);
}

/* Iconic Centering Adjustment */
.whatsapp-float i {
	line-height: 1;
}

/* Ambient Pulsing Glow Effect */
.whatsapp-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #25d366;
	border-radius: 50%;
	z-index: -1;
	opacity: 0.75;
	animation: waPulse 2s infinite;
}

@keyframes waPulse {
	0% {
		transform: scale(1);
		opacity: 0.75;
	}
	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		font-size: 26px; /* Scales down slightly for clean mobile viewport sizing */
	}
}








































.main-footer{
	background: #151821;
	color: #cfd6dc;
	padding: 70px 0 0;
}

.footer-title{
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 30px;
}

.logo{
	width: 160px;
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	display: block;
	margin: 0 auto;
	margin-bottom: 15px;
}

.logo span{
	color: #f9a51b;
}

.footer-text{
	line-height: 1.8;
	color: #b7c2c8;
	font-size: 15px;
	margin-bottom: 25px;
}

.social-icons a{
	color: #cfd6dc;
	margin-right: 18px;
	font-size: 18px;
	transition: 0.3s;
}

.social-icons a:hover{
	color: #f9a51b;
}

.footer-links{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links li{
	margin-bottom: 14px;
}

.footer-links a{
	color: #cfd6dc;
	text-decoration: none;
	transition: 0.3s;
	font-size: 15px;
}

.footer-links a:hover{
	color: #f9a51b;
	padding-left: 5px;
}

.footer-links i{
	color: #f9a51b;
	margin-right: 10px;
	font-size: 12px;
}

.contact-info{
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-info li{
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	color: #cfd6dc;
}

.contact-info i{
	color: #f9a51b;
	font-size: 18px;
	margin-top: 3px;
}

.newsletter-form{
	display: flex;
	margin-top: 25px;
	overflow: hidden;
	border-radius: 8px;
}

.newsletter-form input{
	flex: 1;
	border: none;
	padding: 14px 16px;
	background: #183241;
	color: #fff;
	outline: none;
}

.newsletter-form button{
	border: none;
	background: #f9a51b;
	color: #fff;
	padding: 0 28px;
	font-weight: 700;
	transition: 0.3s;
}

.newsletter-form button:hover{
	background: #6ab53f;
}

.copyright{
	background: #0f2d3b;
	margin-top: 70px;
	padding: 24px 0;
	text-align: center;
	color: #b5bec4;
	font-size: 15px;
}

@media(max-width:991px){
	.footer-column{
		margin-bottom: 40px;
	}
}

