
body {
	font-family: 'Roboto', Arial, sans-serif;
	background: #F5F7FA;
	color: #2F2F2F;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.container {
	max-width: 1140px;
}

.hero {
	height: 60vh;
	min-height: 350px;
	background: linear-gradient(rgba(11,61,145,0.7),rgba(47,47,47,0.7)),
		url('https://images.unsplash.com/photo-1581091012184-5c43f0a3b2a3');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card {
	border: none;
	border-radius: 1rem;
	overflow: hidden;
	transition: box-shadow 0.3s;
}
.card:hover {
	box-shadow: 0 8px 32px rgba(11,61,145,0.15);
}

.card-img-top {
	background: #F5F7FA;
	padding: 2rem 1rem 0 1rem;
	height: 220px;
	object-fit: contain;
}

/* Product Card Image - Perfect fit, no spacing, no scaling */
.product-card-img {
	background: #F5F7FA;
	height: 280px;
	object-fit: contain;
	object-position: center;
	padding: 0;
	width: 100%;
	display: block;
	border-radius: 1rem 1rem 0 0;
}

/* Product Card Body - Balanced with image size */
.card-body {
	padding: 1rem 1rem;
	flex-grow: 0;
	border-radius: 0 0 1rem 1rem;
}

.card-title {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0;
	color: #0B3D91;
	line-height: 1.3;
	min-height: auto;
	display: block;
	padding-bottom: 0;
	text-align: center;
}

.card-text {
	display: none;
}

/* ========================================
   PRODUCT CATEGORY CARDS - products.html
   ======================================== */
.product-category-card {
	transition: all 0.3s ease;
	border-radius: 1rem;
	overflow: hidden;
	background: white;
}

.product-category-card:hover {
	box-shadow: 0 12px 40px rgba(11,61,145,0.2) !important;
	transform: translateY(-5px);
}

.product-category-image {
	overflow: hidden;
	height: 200px;
	background: #F5F7FA;
}

.product-category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.product-category-card:hover .product-category-image img {
	transform: scale(1.05);
}

.product-category-card .card-body {
	padding: 1.5rem;
	background: white;
}

.product-category-card .card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #0B3D91;
	margin-bottom: 0.75rem;
	text-align: left;
}

.product-category-card .card-text {
	display: block;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.navbar {
	font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

.navbar-brand {
	font-size: 1.5rem;
	color: #FFC107 !important;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Navbar Logo - Placeholder image */
.navbar-logo {
	height: 45px;
	width: 45px;
	border-radius: 0.35rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
	transform: scale(1.08);
}

.nav-link.active, .nav-link:focus, .nav-link:hover {
	color: #FFC107 !important;
}

.btn-warning {
	background: #FFC107;
	color: #0B3D91;
	border: none;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.btn-warning:hover {
	background: #e6b200;
	color: #fff;
}

@keyframes whatsappBounce {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-8px) scale(1.05);
	}
}

@keyframes whatsappGlow {
	0%, 100% {
		box-shadow: 0 4px 16px rgba(37,211,102,0.15);
	}
	50% {
		box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 30px rgba(37,211,102,0.2);
	}
}

.whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25D366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	transition: all 0.3s ease;
	animation: whatsappBounce 2s ease-in-out infinite, whatsappGlow 2s ease-in-out infinite;
}

.whatsapp i {
	font-size: 2em;
	transition: transform 0.3s ease;
}

.whatsapp:hover {
	background: #1F8E6E;
	color: white;
	transform: scale(1.15);
	box-shadow: 0 8px 30px rgba(37,211,102,0.6);
	animation: none;
}

.whatsapp:hover i {
	transform: rotate(10deg);
}

footer {
	font-size: 1rem;
	letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonial-card {
	border: none;
	border-radius: 1rem;
	background: white;
	padding: 2rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
	box-shadow: 0 8px 24px rgba(11,61,145,0.15);
	transform: translateY(-5px);
}

.testimonial-text {
	font-style: italic;
	color: #555;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	font-weight: 600;
	color: #0B3D91;
	margin-bottom: 0.25rem;
}

.testimonial-role {
	font-size: 0.9rem;
	color: #888;
}

/* Achievement Counters */
.achievement-section {
	background: linear-gradient(135deg, #0B3D91 0%, #1a5bc0 100%);
	color: white;
	padding: 4rem 0;
}

.counter-box {
	text-align: center;
	padding: 2rem;
}

.counter-number {
	font-size: 2.5rem;
	font-weight: 700;
	font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
	color: #FFC107;
	margin-bottom: 0.5rem;
}

.counter-label {
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.counter-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	opacity: 0.9;
}

/* Animation for counter */
@keyframes rotateIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.counter-box.animate {
	animation: rotateIn 0.6s ease-out;
}

/* Industries Grid */
.industry-card {
	text-align: center;
	padding: 2rem;
	border-radius: 1rem;
	background: white;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.industry-card:hover {
	box-shadow: 0 8px 24px rgba(11,61,145,0.2);
	transform: translateY(-5px);
}

.industry-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #0B3D91;
}

.industry-card h5 {
	color: #0B3D91;
	margin-bottom: 0.75rem;
	font-size: 1.2rem;
}

.industry-card p {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* Why Choose Cards */
.why-choose-card {
	text-align: center;
	padding: 2rem;
	border-radius: 1rem;
	background: white;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.why-choose-card:hover {
	box-shadow: 0 8px 24px rgba(11,61,145,0.2);
	transform: translateY(-5px);
}

.why-choose-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #0B3D91;
}

.why-choose-card h5 {
	color: #0B3D91;
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
}

.why-choose-card p {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* Service Cards */
.service-card {
	border: none;
	border-radius: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	height: 100%;
}

.service-card:hover {
	box-shadow: 0 8px 24px rgba(11,61,145,0.2);
	transform: translateY(-5px);
}

.service-icon {
	font-size: 2.5rem;
	color: #FFC107;
	margin-bottom: 1rem;
}

.service-card-body {
	padding: 2rem;
}

.service-card h5 {
	color: #0B3D91;
	margin-bottom: 0.75rem;
	font-size: 1.15rem;
}

.service-card p {
	color: #666;
	margin-bottom: 0;
	font-size: 0.95rem;
}

/* Form Styles */
.form-section {
	background: #f8f9fa;
	padding: 3rem 0;
}

.form-group-title {
	color: #0B3D91;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.form-control, .form-select {
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
	border-color: #0B3D91;
	box-shadow: 0 0 0 0.2rem rgba(11,61,145,0.15);
	outline: none;
}

.form-section {
	padding: 4rem 0;
	background: #F5F7FA;
}

.form-group-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0B3D91;
	margin-top: 2rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #FFC107;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-section {
	background: linear-gradient(135deg, #0B3D91 0%, #1a5bc0 100%);
	color: white;
	padding: 4rem 0;
	text-align: center;
	margin: 4rem 0;
}

.cta-heading {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-subtext {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.cta-btn {
	padding: 12px 32px;
	font-size: 1.05rem;
	font-weight: 600;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.cta-btn-primary {
	background: #FFC107;
	color: #0B3D91;
	border: 2px solid #FFC107;
}

.cta-btn-primary:hover {
	background: transparent;
	color: #FFC107;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(255,193,7,0.3);
}

.cta-btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.cta-btn-secondary:hover {
	background: white;
	color: #0B3D91;
	transform: translateY(-2px);
}

/* Hero Section Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeInUp 0.8s ease-out;
}

.hero-animation {
	animation: fadeInUp 1s ease-out 0.2s both;
	max-width: 100%;
	height: auto;
}

/* ========================================
   RESPONSIVE SPACING UTILITIES
   Mobile-first margin and padding adjustments
   ======================================== */

/* Responsive margin bottom utilities */
@media (max-width: 767px) {
	.mb-5 {
		margin-bottom: 1.5rem !important;
	}
	
	.mb-4 {
		margin-bottom: 1.25rem !important;
	}
	
	.mb-3 {
		margin-bottom: 1rem !important;
	}
	
	.mb-2 {
		margin-bottom: 0.75rem !important;
	}
	
	.mt-5 {
		margin-top: 1.5rem !important;
	}
	
	.mt-4 {
		margin-top: 1.25rem !important;
	}
	
	.pt-5 {
		padding-top: 1.5rem !important;
	}
	
	.pb-5 {
		padding-bottom: 1.5rem !important;
	}
	
	.g-4 {
		--bs-gutter-x: 0.75rem;
		--bs-gutter-y: 0.75rem;
	}
	
	.g-3 {
		--bs-gutter-x: 0.5rem;
		--bs-gutter-y: 0.5rem;
	}
}

@media (max-width: 479px) {
	.mb-5 {
		margin-bottom: 1.2rem !important;
	}
	
	.mb-4 {
		margin-bottom: 1rem !important;
	}
	
	.mb-3 {
		margin-bottom: 0.75rem !important;
	}
	
	.mb-2 {
		margin-bottom: 0.5rem !important;
	}
	
	.mt-5 {
		margin-top: 1.2rem !important;
	}
	
	.mt-4 {
		margin-top: 1rem !important;
	}
	
	.pt-5 {
		padding-top: 1.2rem !important;
	}
	
	.pb-5 {
		padding-bottom: 1.2rem !important;
	}
}



/* Desktop: 1024px and above */
@media (min-width: 1024px) {
	.py-5 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	
	.py-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}
}

/* Tablet: 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
	h1, .display-4 {
		font-size: 2.5rem !important;
		line-height: 1.2;
	}
	
	h2 {
		font-size: 1.95rem !important;
		line-height: 1.2;
	}
	
	h3 {
		font-size: 1.5rem !important;
	}
	
	h4 {
		font-size: 1.25rem !important;
	}
	
	h5 {
		font-size: 1.1rem !important;
	}
	
	.py-5 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}
	
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.product-category-card .card-title {
		font-size: 1.05rem;
	}
	
	.product-category-card .card-text {
		font-size: 0.85rem;
	}
	
	.hero {
		height: 45vh;
		min-height: 300px;
		padding: 2rem 0;
	}
	
	.card-img-top {
		height: 160px;
		padding: 1.5rem 1rem 0 1rem;
	}
	
	.counter-number {
		font-size: 2.2rem;
	}
	
	.counter-label {
		font-size: 1rem;
	}
	
	.counter-box {
		padding: 1.5rem;
	}
	
	.cta-heading {
		font-size: 2rem;
	}
	
	.cta-subtext {
		font-size: 1.05rem;
	}
	
	.btn-primary, .btn {
		padding: 0.55rem 1.25rem;
		font-size: 0.95rem;
	}
}

/* Mobile & Tablet: 480px to 767px */
@media (max-width: 767px) {
	body {
		font-size: 0.95rem;
	}
	
	h1, .display-4 {
		font-size: 1.9rem !important;
		line-height: 1.25;
		margin-bottom: 0.75rem;
	}
	
	h2 {
		font-size: 1.5rem !important;
		line-height: 1.3;
		margin-bottom: 0.65rem;
	}
	
	h3 {
		font-size: 1.25rem !important;
		margin-bottom: 0.6rem;
	}
	
	h4 {
		font-size: 1.1rem !important;
		margin-bottom: 0.5rem;
	}
	
	h5 {
		font-size: 1rem !important;
		margin-bottom: 0.4rem;
	}
	
	p {
		font-size: 0.9rem;
		line-height: 1.6;
		margin-bottom: 0.75rem;
	}
	
	.lead {
		font-size: 1rem;
		margin-bottom: 1rem;
	}
	
	.hero {
		height: 40vh;
		min-height: 200px;
		padding: 1.5rem 0;
	}
	
	.hero h1 {
		margin-bottom: 0.5rem;
	}
	
	.container {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
		max-width: 100%;
	}
	
	.py-5, .section-padding-lg {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	
	.py-4 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}
	
	/* Product Category Cards */
	.product-category-card {
		border-radius: 0.65rem;
		margin-bottom: 0.5rem;
	}
	
	.product-category-image {
		height: 180px;
	}
	
	.product-category-card .card-body {
		padding: 1.2rem;
	}
	
	.product-category-card .card-title {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.product-category-card .card-text {
		font-size: 0.8rem;
		line-height: 1.5;
		margin-bottom: 0.75rem;
	}
	
	.product-category-card .btn {
		padding: 0.45rem 0.9rem;
		font-size: 0.8rem;
	}
	
	/* Card Image */
	.card-img-top {
		height: 130px;
		padding: 0.8rem 0.5rem 0 0.5rem;
	}
	
	.card-body {
		padding: 0.75rem 0.75rem !important;
	}
	
	.card-title {
		font-size: 0.9rem !important;
		margin-bottom: 0.25rem;
	}
	
	/* Counters */
	.counter-box {
		padding: 1.25rem 0.75rem;
	}
	
	.counter-icon {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}
	
	.counter-number {
		font-size: 1.75rem;
		margin-bottom: 0.4rem;
	}
	
	.counter-label {
		font-size: 0.85rem;
		letter-spacing: 0.3px;
	}
	
	/* CTA Section */
	.cta-section {
		padding: 2.5rem 1rem;
		margin: 2.5rem 0;
	}
	
	.cta-heading {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
	}
	
	.cta-subtext {
		font-size: 0.95rem;
		margin-bottom: 1.25rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.cta-btn {
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
		width: 100%;
		text-align: center;
	}
	
	/* Buttons */
	.btn-primary, .btn-secondary, .btn {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
		border-radius: 0.35rem;
		line-height: 1.4;
	}
	
	.btn-sm {
		padding: 0.35rem 0.7rem;
		font-size: 0.8rem;
	}
	
	/* Testimonial Cards */
	.testimonial-card {
		padding: 1.25rem;
		border-radius: 0.75rem;
		margin-bottom: 1rem;
	}
	
	.testimonial-text {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}
	
	.testimonial-author {
		font-size: 0.95rem;
		margin-bottom: 0.2rem;
	}
	
	.testimonial-role {
		font-size: 0.8rem;
	}
	
	/* Form Elements */
	.form-control, .form-select {
		padding: 0.6rem 0.75rem;
		font-size: 0.9rem;
		border-radius: 0.35rem;
		line-height: 1.4;
	}
	
	.form-group-title {
		font-size: 0.95rem;
		margin-top: 1.2rem;
		margin-bottom: 0.9rem;
		padding-bottom: 0.5rem;
	}
	
	/* Navbar */
	.navbar-brand {
		font-size: 1.2rem;
		gap: 0.5rem;
	}
	
	.navbar-logo {
		height: 40px;
		width: 40px;
	}
	
	.navbar {
		font-size: 1rem;
	}
	
	.nav-link {
		font-size: 0.95rem;
		padding: 0.4rem 0.5rem !important;
	}
	
	/* Industry Cards */
	.industry-card {
		padding: 1.25rem;
		border-radius: 0.65rem;
		margin-bottom: 0.75rem;
	}
	
	.industry-icon {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}
	
	.industry-card h5 {
		font-size: 1rem;
		margin-bottom: 0.4rem;
	}
	
	.industry-card p {
		font-size: 0.85rem;
		margin-bottom: 0;
	}
	
	/* Why Choose Cards */
	.why-choose-card {
		padding: 1.25rem;
		border-radius: 0.65rem;
		margin-bottom: 0.75rem;
	}
	
	.why-choose-icon {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}
	
	.why-choose-card h5 {
		font-size: 1rem;
		margin-bottom: 0.4rem;
	}
	
	.why-choose-card p {
		font-size: 0.85rem;
		margin-bottom: 0;
	}
	
	/* Service Cards */
	.service-card {
		border-radius: 0.65rem;
		margin-bottom: 0.75rem;
	}
	
	.service-card-body {
		padding: 1.25rem;
	}
	
	.service-icon {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}
	
	.service-card h5 {
		font-size: 1rem;
		margin-bottom: 0.4rem;
	}
	
	.service-card p {
		padding: 2.5rem 0;
	}
	
	/* Testimonials Section */
	.testimonial-card {
		margin-bottom: 0.75rem;
	}
}

/* Small Mobile: 360px to 479px */
@media (max-width: 479px) {
	h1, .display-4 {
		font-size: 1.6rem !important;
		line-height: 1.25;
	}
	
	h2 {
		font-size: 1.3rem !important;
	}
	
	h3 {
		font-size: 1.1rem !important;
	}
	
	h4 {
		font-size: 1rem !important;
	}
	
	h5 {
		font-size: 0.95rem !important;
	}
	
	p {
		font-size: 0.85rem;
	}
	
	.lead {
		font-size: 0.9rem;
	}
	
	.container {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	
	.hero {
		height: 35vh;
		min-height: 180px;
		padding: 1rem 0;
	}
	
	.py-5 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}
	
	.row {
		--bs-gutter-x: 0.5rem;
		--bs-gutter-y: 0.5rem;
	}
	
	.product-category-image {
		height: 160px;
	}
	
	.product-category-card .card-body {
		padding: 1rem;
	}
	
	.product-category-card .card-title {
		font-size: 0.95rem;
	}
	
	.product-category-card .card-text {
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
	}
	
	.counter-box {
		padding: 1rem 0.5rem;
	}
	
	.counter-icon {
		font-size: 1.75rem;
		margin-bottom: 0.5rem;
	}
	
	.counter-number {
		font-size: 1.5rem;
	}
	
	.counter-label {
		font-size: 0.8rem;
	}
	
	.cta-heading {
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}
	
	.cta-subtext {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}
	
	.cta-btn {
		padding: 0.5rem 0.75rem;
		font-size: 0.8rem;
	}
	
	.btn-primary, .btn {
		padding: 0.45rem 0.75rem;
		font-size: 0.85rem;
	}
	
	.btn-sm {
		padding: 0.3rem 0.6rem;
		font-size: 0.75rem;
	}
	
	.testimonial-card {
		padding: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.testimonial-text {
		font-size: 0.85rem;
		margin-bottom: 0.75rem;
	}
	
	.form-control, .form-select {
		padding: 0.5rem 0.6rem;
		font-size: 0.85rem;
	}
	
	.form-group-title {
		font-size: 0.9rem;
		margin-top: 1rem;
		margin-bottom: 0.75rem;
	}
	
	/* Small Mobile Card Optimizations */
	.industry-card {
		padding: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.industry-icon {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
	
	.industry-card h5 {
		font-size: 0.9rem;
		margin-bottom: 0.3rem;
	}
	
	.industry-card p {
		font-size: 0.75rem;
	}
	
	.why-choose-card {
		padding: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.why-choose-icon {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
	
	.why-choose-card h5 {
		font-size: 0.9rem;
		margin-bottom: 0.3rem;
	}
	
	.why-choose-card p {
		font-size: 0.75rem;
	}
	
	.service-card {
		margin-bottom: 0.5rem;
	}
	
	.service-card-body {
		padding: 1rem;
	}
	
	.service-icon {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
	
	.service-card h5 {
		font-size: 0.9rem;
		margin-bottom: 0.3rem;
	}
	
	.service-card p {
		font-size: 0.75rem;
	}
}

/* Extra Small Mobile: Below 360px */
@media (max-width: 359px) {
	h1, .display-4 {
		font-size: 1.4rem !important;
	}
	
	h2 {
		font-size: 1.15rem !important;
	}
	
	h3 {
		font-size: 1rem !important;
	}
	
	.container {
		padding-left: 0.3rem;
		padding-right: 0.3rem;
	}
	
	.hero {
		height: 30vh;
		min-height: 160px;
	}
	
	.py-5 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	
	.cta-heading {
		font-size: 1.2rem;
	}
	
	.counter-number {
		font-size: 1.3rem;
	}
	
	/* Extra small card optimizations */
	.industry-card {
		padding: 0.75rem;
		margin-bottom: 0.4rem;
	}
	
	.industry-icon {
		font-size: 1.3rem;
		margin-bottom: 0.3rem;
	}
	
	.industry-card h5 {
		font-size: 0.85rem;
	}
	
	.industry-card p {
		font-size: 0.7rem;
	}
	
	.why-choose-card {
		padding: 0.75rem;
		margin-bottom: 0.4rem;
	}
	
	.why-choose-icon {
		font-size: 1.3rem;
		margin-bottom: 0.3rem;
	}
	
	.why-choose-card h5 {
		font-size: 0.85rem;
	}
	
	.why-choose-card p {
		font-size: 0.7rem;
	}
	
	.service-card {
		margin-bottom: 0.4rem;
	}
	
	.service-card-body {
		padding: 0.75rem;
	}
	
	.service-icon {
		font-size: 1.3rem;
		margin-bottom: 0.3rem;
	}
	
	.service-card h5 {
		font-size: 0.85rem;
	}
	
	.service-card p {
		font-size: 0.7rem;
	}
	
	.testimonial-card {
		padding: 0.75rem;
		margin-bottom: 0.3rem;
	}
	
	.testimonial-text {
		font-size: 0.8rem;
		margin-bottom: 0.5rem;
	}
	
	.testimonial-author {
		font-size: 0.8rem;
	}
	
	.testimonial-role {
		font-size: 0.7rem;
	}
}

/* ============ STICKY NAVBAR ============ */

#mainNavbar {
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
	z-index: 1030;
}

#mainNavbar.scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	background-color: rgba(33, 37, 41, 0.98) !important;
}

/* ============ PRODUCT CAROUSEL ============ */
.carousel {
	margin: 2rem 0;
}

.carousel-inner {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.carousel-item {
	padding: 2rem 0;
	min-height: 500px;
}

.carousel-control-prev,
.carousel-control-next {
	width: 5%;
	background: rgba(11, 61, 145, 0.3);
	border-radius: 0.5rem;
	opacity: 0.7;
	transition: all 0.3s ease;
	height: 60px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 1rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
	background: rgba(11, 61, 145, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: brightness(0) invert(1);
	width: 1.5rem;
	height: 1.5rem;
}

.carousel-indicators {
	margin-bottom: 1.5rem;
}

.carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(11, 61, 145, 0.3);
	border: none;
	transition: all 0.3s ease;
}

.carousel-indicators button.active {
	background-color: #0B3D91;
	box-shadow: 0 2px 8px rgba(11, 61, 145, 0.3);
}

.carousel-indicators button:not(.active):hover {
	background-color: rgba(11, 61, 145, 0.6);
}

/* Card animations in carousel */
.carousel-item .card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: slideInCard 0.5s ease-out;
}

.carousel-item .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(11, 61, 145, 0.2);
}

@keyframes slideInCard {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Carousel */
@media (max-width: 768px) {
	.carousel-item {
		min-height: auto;
		padding: 1rem 0;
	}

	.carousel-control-prev,
	.carousel-control-next {
		width: 8%;
		height: 50px;
		margin: 0 0.5rem;
	}

	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		width: 1rem;
		height: 1rem;
	}

	/* Show fewer items on small screens */
	.carousel-item .row {
		display: flex;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
		scroll-behavior: smooth;
	}

	/* Show 1 item on small screens */
	.carousel-item .col-md-4 {
		min-width: 100%;
	}

	@supports (scroll-snap-type: x mandatory) {
		.carousel-item .row {
			scroll-snap-type: x mandatory;
		}

		.carousel-item .col-md-4 {
			scroll-snap-align: start;
		}
	}
}

@media (max-width: 1024px) and (min-width: 769px) {
	/* Show 2 items on tablets */
	.carousel-item .col-md-4 {
		flex: 0 0 50%;
	}
}

/* Accessibility improvements */
.carousel-control-prev:focus,
.carousel-control-next:focus {
	outline: 2px solid #FFC107;
	outline-offset: 2px;
}

.carousel-indicators button:focus {
	outline: 2px solid #FFC107;
	outline-offset: 2px;
}

/* ============ FEATURED PRODUCTS RESPONSIVE ============ */
/* Enhanced responsive design for featured products */

#productCarousel .carousel-item {
	min-height: auto;
	padding: 1.5rem 0;
}

/* Desktop: 3 products per row (col-lg-4) */
#productCarousel .col-lg-4 {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	margin-bottom: 1rem;
}

/* Product card responsive styling */
#productCarousel .card {
	margin-bottom: 1.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

#productCarousel .card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 1.5rem;
}

#productCarousel .card-title {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
	color: #0B3D91;
}

#productCarousel .card-text {
	font-size: 0.95rem;
	flex-grow: 1;
	margin-bottom: 1rem;
	color: #666;
}

#productCarousel .btn {
	width: 100%;
	padding: 0.6rem 1rem;
	font-size: 0.9rem;
}

/* === TABLET: 2 products per row === */
@media (max-width: 1024px) and (min-width: 769px) {
	#productCarousel .col-lg-4 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	#productCarousel .carousel-item .row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

/* === MOBILE: 1 product per row (full width) === */
@media (max-width: 768px) {
	/* Stacked layout for mobile */
	#productCarousel .carousel-item .row {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	#productCarousel .col-lg-4 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		margin-bottom: 1rem;
	}

	/* Hide empty columns on mobile */
	#productCarousel .col-md-4:empty {
		display: none;
	}

	/* Product card mobile optimizations */
	#productCarousel .card-img-top {
		height: 200px;
		object-fit: cover;
		padding: 0;
	}

	#productCarousel .card-body {
		padding: 1.25rem;
	}

	#productCarousel .card-title {
		font-size: 1rem;
	}

	#productCarousel .card-text {
		font-size: 0.9rem;
		margin-bottom: 0.75rem;
	}

	#productCarousel .btn-primary {
		padding: 0.6rem;
		font-size: 0.85rem;
		width: 100%;
	}

	/* Carousel controls on mobile */
	.carousel-control-prev,
	.carousel-control-next {
		width: 10%;
		height: 45px;
		margin: 0;
	}

	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		width: 0.9rem;
		height: 0.9rem;
	}

	.carousel-indicators {
		margin-bottom: 1rem;
		gap: 0.25rem !important;
	}

	.carousel-indicators button {
		width: 8px;
		height: 8px;
	}
}

/* === SMALL MOBILE: Extra small optimization === */
@media (max-width: 480px) {
	#productCarousel .card-img-top {
		height: 150px;
	}

	#productCarousel .card-body {
		padding: 1rem;
	}

	#productCarousel .card-title {
		font-size: 0.95rem;
	}

	#productCarousel .card-text {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	#productCarousel .btn-primary {
		padding: 0.5rem;
		font-size: 0.8rem;
	}

	.carousel-item {
		padding: 0.75rem 0;
	}
}

.btn:focus {
	outline: 2px solid #FFC107;
	outline-offset: 2px;
}

/* Smooth transitions */
* {
	transition: background-color 0.3s ease, color 0.3s ease;
}

a, button {
	transition: all 0.3s ease;
}

/* Product Type Pages - Mobile Responsive */
@media (max-width: 767px) {
	.product-card-img {
		height: 220px;
		padding: 0;
		object-fit: contain;
		object-position: center;
	}

	.card-title {
		font-size: 0.9rem !important;
		min-height: auto;
		margin-bottom: 0;
		text-align: center;
	}

	.card-text {
		display: none;
	}

	.card-body {
		padding: 0.9rem 0.9rem !important;
	}
}

/* Product Type Pages - Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
	.product-card-img {
		height: 240px;
		padding: 0;
		object-fit: contain;
		object-position: center;
	}

	.card-title {
		font-size: 0.93rem !important;
		min-height: auto;
		text-align: center;
	}

	.card-text {
		display: none;
	}
}

/* ========================================
   PRODUCT TYPE CARDS - Individual product pages
   ======================================== */
.product-type-card {
	background: white;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #E9ECEF;
	display: flex;
	flex-direction: column;
}

.product-type-card:hover {
	box-shadow: 0 8px 28px rgba(11, 61, 145, 0.15);
	transform: translateY(-4px);
	border-color: #0B3D91;
}

.product-type-image {
	width: 100%;
	height: 220px;
	background: linear-gradient(135deg, #F5F7FA 0%, #E9ECEF 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-type-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.product-type-card:hover .product-type-image img {
	transform: scale(1.08);
}

.product-type-body {
	padding: 1.25rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-type-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0B3D91;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.product-type-text {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 0;
	flex-grow: 1;
}

/* Responsive adjustments for product type cards */
@media (max-width: 1023px) and (min-width: 768px) {
	.product-type-image {
		height: 200px;
	}

	.product-type-body {
		padding: 1.15rem;
	}
	
	.product-type-title {
		font-size: 1rem;
		margin-bottom: 0.65rem;
		line-height: 1.2;
	}
	
	.product-type-text {
		font-size: 0.85rem;
		line-height: 1.5;
	}
}

@media (max-width: 767px) {
	.product-type-card {
		border-radius: 0.6rem;
		margin-bottom: 0.5rem;
	}

	.product-type-image {
		height: 170px;
	}

	.product-type-body {
		padding: 1rem;
	}
	
	.product-type-title {
		font-size: 0.95rem;
		margin-bottom: 0.5rem;
		line-height: 1.2;
	}

	.product-type-text {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

@media (max-width: 479px) {
	.product-type-image {
		height: 150px;
	}
	
	.product-type-body {
		padding: 0.9rem;
	}
	
	.product-type-title {
		font-size: 0.9rem;
		margin-bottom: 0.4rem;
	}
	
	.product-type-text {
		font-size: 0.75rem;
		line-height: 1.4;
	}
}

@media (max-width: 359px) {
	.product-type-image {
		height: 140px;
	}
	
	.product-type-body {
		padding: 0.8rem;
	}
	
	.product-type-title {
		font-size: 0.85rem;
	}
	
	.product-type-text {
		font-size: 0.7rem;
	}
}
