/* ----------------------------------------------------------------------
	1. Colors
---------------------------------------------------------------------- */


/* ----------------------------------------------------------------------
	2. Topbar Styles
---------------------------------------------------------------------- */


/* ----------------------------------------------------------------------
	3. Menu Hover Effect
---------------------------------------------------------------------- */


/* ----------------------------------------------------------------------
	4. Dropdown Styles
---------------------------------------------------------------------- */

/* Fix navbar z-index to appear above all content */
.navbar {
	position: relative;
	z-index: 9999;
}

/* Ensure dropdown menu appears above everything */
.dropdown-menu {
	z-index: 10000 !important;
}

/* Ensure page content stays below navbar */
.page-header,
.inner-banner,
.breadcrumb-section,
.pagetitle {
	position: relative;
	z-index: 1;
}

/* ----------------------------------------------------------------------
	4.1 Industrial Section Styles
---------------------------------------------------------------------- */

/* Added new industrial section styles */
.industrial-content {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.section-title {
	color: #2c3e50;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
}

.title-line {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #0d6efd, #0056b3);
	margin-bottom: 30px;
	border-radius: 2px;
}

.tagline-text {
	font-size: 20px;
	color: #0d6efd;
	font-weight: 600;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
}

.lead-text {
	font-size: 18px;
	line-height: 1.6;
	color: #495057;
	margin-bottom: 20px;
	font-family: 'Open Sans', sans-serif;
}

.portfolio-title {
	color: #007bff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	font-family: 'Roboto', sans-serif;
}

.solution-category {
	margin-bottom: 30px;
	padding: 25px;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #0d6efd;
}

.category-title {
	color: #2c3e50;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	font-family: 'Roboto', sans-serif;
}

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

.feature-list>li {
	margin-bottom: 15px;
	padding-left: 0;
	color: #495057;
	position: relative;
	padding-left: 20px;
}

.feature-list>li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: #0d6efd;
	font-weight: bold;
}

.feature-list>li strong {
	color: #2c3e50;
	font-weight: 600;
}

.sub-list {
	list-style: none;
	padding-left: 20px;
	margin-top: 10px;
}

.sub-list li {
	padding: 5px 0;
	color: #6c757d;
	position: relative;
	padding-left: 15px;
}

.sub-list li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

.why-choose-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 30px;
	border-radius: 8px;
	margin: 30px 0;
}

.why-title {
	color: white;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
}

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

.why-list li {
	padding: 8px 0;
	font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-list li:last-child {
	border-bottom: none;
}

.tagline {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	text-align: center;
	margin-top: 30px;
	border: 2px solid #007bff;
}

.tagline-text {
	font-size: 18px;
	color: #2c3e50;
	font-weight: 600;
	margin: 0;
	font-family: 'Roboto', sans-serif;
}

/* Image grid section start */
.industrial-images {
	padding: 40px 0;
}

.image-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

/* Image grid start - 2x2 layout */
.image-grid-2x2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.image-item {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background: #fff;
}

.industrial-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.image-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.image-item:hover .industrial-img {
	transform: scale(1.05);
}

/* Responsive fix */
@media (max-width: 768px) {

	.image-grid,
	.image-grid-2x2 {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.industrial-content {
		padding: 25px 20px;
	}

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

	.solution-category {
		padding: 20px 15px;
		margin-bottom: 20px;
	}

	.industrial-img {
		height: 200px;
	}
}

/* ----------------------------------------------------------------------
	5. Boxed Layouts
---------------------------------------------------------------------- */


/* ----------------------------------------------------------------------
	6. Footer Styles
---------------------------------------------------------------------- */


/* ----------------------------------------------------------------------
	7. Logo Height Size
---------------------------------------------------------------------- */


/* ----------------------------------------------------------------------
	8. IT Services Background Section
---------------------------------------------------------------------- */

.it-services-bg {
	background-image: url('../images/myImage.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 60px 0;
	position: relative;
}

.it-services-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.it-services-bg .container {
	position: relative;
	z-index: 2;
}

.it-services-bg h3 {
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	margin-bottom: 20px;
}

.it-services-bg .titleline {
	background-color: #ffffff;
	height: 3px;
	margin-bottom: 25px;
}

.it-services-bg p {
	color: #ffffff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}

/* ----------------------------------------------------------------------
	9. Service Cards Grid Layout
---------------------------------------------------------------------- */

.services-grid {
	margin-bottom: 50px;
	perspective: 1800px;
	transform-style: preserve-3d;
	position: relative;
}

.services-grid .service-card {
	margin-bottom: 40px;
	min-height: 520px;
}

.services-grid .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	transform-style: preserve-3d;
}

/* Ensure Bootstrap columns preserve 3D transforms */
.services-grid .col-md-6,
.services-grid .col-lg-4 {
	transform-style: preserve-3d;
	position: relative;
}

/* ----------------------------------------------------------------------
	10. Service Cards
---------------------------------------------------------------------- */

.service-card {
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.3) 0%,
			rgba(255, 255, 255, 0.2) 50%,
			rgba(255, 255, 255, 0.15) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.12),
		0 5px 15px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
	padding: 40px 30px;
	margin-bottom: 40px;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

/* Enhanced 3D Curved Layout */
.services-grid .col-lg-4:nth-child(1) .service-card {
	transform: rotateY(18deg);
}

.services-grid .col-lg-4:nth-child(2) .service-card {
	transform: rotateY(0deg) translateZ(40px);
}

.services-grid .col-lg-4:nth-child(3) .service-card {
	transform: rotateY(-18deg);
}

.services-grid .col-lg-4:nth-child(4) .service-card {
	transform: rotateY(18deg);
}

.services-grid .col-lg-4:nth-child(5) .service-card {
	transform: rotateY(0deg) translateZ(40px);
}

.services-grid .col-lg-4:nth-child(6) .service-card {
	transform: rotateY(-18deg);
}

.service-card:hover {
	transform: translateY(-10px) scale(1.03) rotateY(0deg);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.2),
		0 15px 30px rgba(0, 0, 0, 0.15),
		0 5px 15px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Service Icon Container - Clean Design */
.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px auto;
	transition: all 0.3s ease;
}

/* Service Card Icon */
.service-icon img {
	width: 70px;
	height: auto;
	display: block;
	margin: 0 auto;
	object-fit: contain;
	transition: all 0.3s ease;
}

.service-icon:hover img {
	transform: scale(1.05);
	opacity: 0.9;
}

.service-icon i {
	font-size: 32px;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
	position: relative;
	z-index: 3;
	transform: translateZ(10px);
}

.service-content h4 {
	color: #1a202c;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-content h4 {
	color: #667eea;
	transform: translateZ(5px);
}

.service-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.service-content ul li {
	color: #4a5568;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 12px;
	padding-left: 24px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-content ul li::before {
	content: '\f058';
	/* FontAwesome fa-check-circle */
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	color: #667eea;
	font-weight: normal;
	transition: all 0.4s ease;
	font-size: 16px;
	top: 1px;
}

.service-card:hover .service-content ul li {
	color: #2d3748;
	transform: translateX(5px) translateZ(3px);
}

.service-card:hover .service-content ul li::before {
	color: #764ba2;
}

/* =============================== */
/* Individual Service Card Styling */
/* =============================== */

/* =============================== */
/* Software Development Card CSS */
/* =============================== */
.services-grid .col-lg-4:nth-child(1) .service-card {
	background: linear-gradient(135deg,
			rgba(59, 130, 246, 0.15) 0%,
			rgba(37, 99, 235, 0.1) 50%,
			rgba(29, 78, 216, 0.08) 100%);
	border: 1px solid rgba(59, 130, 246, 0.3);
	box-shadow:
		0 15px 35px rgba(59, 130, 246, 0.1),
		0 5px 15px rgba(59, 130, 246, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-grid .col-lg-4:nth-child(1) .service-icon {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	box-shadow:
		0 15px 35px rgba(59, 130, 246, 0.6),
		0 8px 20px rgba(59, 130, 246, 0.4),
		0 4px 10px rgba(59, 130, 246, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.services-grid .col-lg-4:nth-child(1) .service-content h4 {
	color: #1e40af;
}

.services-grid .col-lg-4:nth-child(1) .service-content ul li::before {
	color: #3b82f6;
}

.services-grid .col-lg-4:nth-child(1) .service-button {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	box-shadow:
		0 6px 20px rgba(59, 130, 246, 0.3),
		0 2px 8px rgba(59, 130, 246, 0.2);
}

/* =============================== */
/* Web Development Card CSS */
/* =============================== */
.services-grid .col-lg-4:nth-child(2) .service-card {
	background: linear-gradient(135deg,
			rgba(147, 51, 234, 0.15) 0%,
			rgba(124, 58, 237, 0.1) 50%,
			rgba(109, 40, 217, 0.08) 100%);
	border: 1px solid rgba(147, 51, 234, 0.3);
	box-shadow:
		0 15px 35px rgba(147, 51, 234, 0.1),
		0 5px 15px rgba(147, 51, 234, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-grid .col-lg-4:nth-child(2) .service-icon {
	background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
	box-shadow:
		0 15px 35px rgba(147, 51, 234, 0.6),
		0 8px 20px rgba(147, 51, 234, 0.4),
		0 4px 10px rgba(147, 51, 234, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.services-grid .col-lg-4:nth-child(2) .service-content h4 {
	color: #6b21a8;
}

.services-grid .col-lg-4:nth-child(2) .service-content ul li::before {
	color: #9333ea;
}

.services-grid .col-lg-4:nth-child(2) .service-button {
	background: linear-gradient(135deg, #9333ea, #7c3aed);
	box-shadow:
		0 6px 20px rgba(147, 51, 234, 0.3),
		0 2px 8px rgba(147, 51, 234, 0.2);
}

/* =============================== */
/* Network Infrastructure Card CSS */
/* =============================== */
.services-grid .col-lg-4:nth-child(3) .service-card {
	background: linear-gradient(135deg,
			rgba(251, 146, 60, 0.15) 0%,
			rgba(249, 115, 22, 0.1) 50%,
			rgba(234, 88, 12, 0.08) 100%);
	border: 1px solid rgba(251, 146, 60, 0.3);
	box-shadow:
		0 15px 35px rgba(251, 146, 60, 0.1),
		0 5px 15px rgba(251, 146, 60, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-grid .col-lg-4:nth-child(3) .service-icon {
	background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
	box-shadow:
		0 15px 35px rgba(251, 146, 60, 0.6),
		0 8px 20px rgba(251, 146, 60, 0.4),
		0 4px 10px rgba(251, 146, 60, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.services-grid .col-lg-4:nth-child(3) .service-content h4 {
	color: #c2410c;
}

.services-grid .col-lg-4:nth-child(3) .service-content ul li::before {
	color: #fb923c;
}

.services-grid .col-lg-4:nth-child(3) .service-button {
	background: linear-gradient(135deg, #fb923c, #f97316);
	box-shadow:
		0 6px 20px rgba(251, 146, 60, 0.3),
		0 2px 8px rgba(251, 146, 60, 0.2);
}

/* =============================== */
/* IT Consulting Card CSS */
/* =============================== */
.services-grid .col-lg-4:nth-child(4) .service-card {
	background: linear-gradient(135deg,
			rgba(34, 197, 94, 0.15) 0%,
			rgba(22, 163, 74, 0.1) 50%,
			rgba(21, 128, 61, 0.08) 100%);
	border: 1px solid rgba(34, 197, 94, 0.3);
	box-shadow:
		0 15px 35px rgba(34, 197, 94, 0.1),
		0 5px 15px rgba(34, 197, 94, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-grid .col-lg-4:nth-child(4) .service-icon {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	box-shadow:
		0 15px 35px rgba(34, 197, 94, 0.6),
		0 8px 20px rgba(34, 197, 94, 0.4),
		0 4px 10px rgba(34, 197, 94, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.services-grid .col-lg-4:nth-child(4) .service-content h4 {
	color: #15803d;
}

.services-grid .col-lg-4:nth-child(4) .service-content ul li::before {
	color: #22c55e;
}

.services-grid .col-lg-4:nth-child(4) .service-button {
	background: linear-gradient(135deg, #22c55e, #16a34a);
	box-shadow:
		0 6px 20px rgba(34, 197, 94, 0.3),
		0 2px 8px rgba(34, 197, 94, 0.2);
}

/* =============================== */
/* Data Analytics Card CSS */
/* =============================== */
.services-grid .col-lg-4:nth-child(5) .service-card {
	background: linear-gradient(135deg,
			rgba(236, 72, 153, 0.15) 0%,
			rgba(219, 39, 119, 0.1) 50%,
			rgba(190, 24, 93, 0.08) 100%);
	border: 1px solid rgba(236, 72, 153, 0.3);
	box-shadow:
		0 15px 35px rgba(236, 72, 153, 0.1),
		0 5px 15px rgba(236, 72, 153, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-grid .col-lg-4:nth-child(5) .service-icon {
	background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
	box-shadow:
		0 15px 35px rgba(236, 72, 153, 0.6),
		0 8px 20px rgba(236, 72, 153, 0.4),
		0 4px 10px rgba(236, 72, 153, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.services-grid .col-lg-4:nth-child(5) .service-content h4 {
	color: #be185d;
}

.services-grid .col-lg-4:nth-child(5) .service-content ul li::before {
	color: #ec4899;
}

.services-grid .col-lg-4:nth-child(5) .service-button {
	background: linear-gradient(135deg, #ec4899, #db2777);
	box-shadow:
		0 6px 20px rgba(236, 72, 153, 0.3),
		0 2px 8px rgba(236, 72, 153, 0.2);
}

/* =============================== */
/* Cybersecurity Card CSS */
/* =============================== */
.services-grid .col-lg-4:nth-child(6) .service-card {
	background: linear-gradient(135deg,
			rgba(239, 68, 68, 0.15) 0%,
			rgba(220, 38, 38, 0.1) 50%,
			rgba(185, 28, 28, 0.08) 100%);
	border: 1px solid rgba(239, 68, 68, 0.3);
	box-shadow:
		0 15px 35px rgba(239, 68, 68, 0.1),
		0 5px 15px rgba(239, 68, 68, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-grid .col-lg-4:nth-child(6) .service-icon {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	box-shadow:
		0 15px 35px rgba(239, 68, 68, 0.6),
		0 8px 20px rgba(239, 68, 68, 0.4),
		0 4px 10px rgba(239, 68, 68, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.services-grid .col-lg-4:nth-child(6) .service-content h4 {
	color: #b91c1c;
}

.services-grid .col-lg-4:nth-child(6) .service-content ul li::before {
	color: #ef4444;
}

.services-grid .col-lg-4:nth-child(6) .service-button {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	box-shadow:
		0 6px 20px rgba(239, 68, 68, 0.3),
		0 2px 8px rgba(239, 68, 68, 0.2);
}

.service-button {
	display: inline-block;
	margin-top: 25px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #ffffff;
	border: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow:
		0 6px 20px rgba(102, 126, 234, 0.3),
		0 2px 8px rgba(102, 126, 234, 0.2);
	transform: translateZ(5px);
}

.service-button:hover {
	background: linear-gradient(135deg, #5f6fff, #8a5cff);
	transform: translateY(-3px) translateZ(8px) scale(1.05);
	box-shadow:
		0 12px 30px rgba(95, 111, 255, 0.4),
		0 6px 15px rgba(95, 111, 255, 0.3);
}

/* ----------------------------------------------------------------------
	Service Background Decorations - Tech Theme Elements
---------------------------------------------------------------------- */

.service-bg-decoration {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
}

.decoration-left {
	position: absolute;
	left: 15px;
	top: 20px;
	transform: rotate(-15deg);
	opacity: 0.08;
	transition: opacity 0.4s ease;
}

.decoration-right {
	position: absolute;
	right: 15px;
	bottom: 20px;
	transform: rotate(15deg);
	opacity: 0.08;
	transition: opacity 0.4s ease;
}

.decoration-left i,
.decoration-right i {
	font-size: 60px;
	color: #667eea;
	text-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
}

.service-card:hover .decoration-left,
.service-card:hover .decoration-right {
	opacity: 0.12;
}

/* ----------------------------------------------------------------------
	Service Image - Right Side Illustration
---------------------------------------------------------------------- */

.service-image {
	position: absolute;
	right: -20px;
	bottom: -20px;
	width: 120px;
	height: 120px;
	opacity: 0.15;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.service-card:hover .service-image {
	opacity: 0.25;
}


.service-card:hover .service-content h4 {
	color: #667eea;
}

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

.service-content ul li {
	color: #666666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.service-content ul li:before {
	content: "•";
	color: #667eea;
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* ============================== */
/* Feature Card Base Style */
/* ============================== */
.feature-row {
	perspective: 1800px;
	transform-style: preserve-3d;
	position: relative;
}

.feature-row .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	transform-style: preserve-3d;
}

/* Ensure Bootstrap columns preserve 3D transforms */
.feature-row .col-md-4 {
	transform-style: preserve-3d;
	position: relative;
}

.feature-card {
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.3) 0%,
			rgba(255, 255, 255, 0.2) 50%,
			rgba(255, 255, 255, 0.15) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.1),
		0 5px 15px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
	padding: 40px 30px;
	margin-bottom: 30px;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

/* ============================== */
/* Feature Card Individual Gradients */
/* ============================== */

/* Expert Development Team Card - Blue Theme */
.feature-row .col-md-4:nth-child(1) .feature-card {
	background: linear-gradient(135deg,
			rgba(59, 130, 246, 0.15) 0%,
			rgba(37, 99, 235, 0.1) 50%,
			rgba(29, 78, 216, 0.08) 100%);
	border: 1px solid rgba(59, 130, 246, 0.3);
	box-shadow:
		0 15px 35px rgba(59, 130, 246, 0.1),
		0 5px 15px rgba(59, 130, 246, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-row .col-md-4:nth-child(1) .feature-icon {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	box-shadow:
		0 15px 35px rgba(59, 130, 246, 0.6),
		0 8px 20px rgba(59, 130, 246, 0.4),
		0 4px 10px rgba(59, 130, 246, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.feature-row .col-md-4:nth-child(1) .feature-content h5 {
	color: #1e40af;
}

/* Security First Approach Card - Purple Theme */
.feature-row .col-md-4:nth-child(2) .feature-card {
	background: linear-gradient(135deg,
			rgba(147, 51, 234, 0.15) 0%,
			rgba(124, 58, 237, 0.1) 50%,
			rgba(109, 40, 217, 0.08) 100%);
	border: 1px solid rgba(147, 51, 234, 0.3);
	box-shadow:
		0 15px 35px rgba(147, 51, 234, 0.1),
		0 5px 15px rgba(147, 51, 234, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-row .col-md-4:nth-child(2) .feature-icon {
	background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
	box-shadow:
		0 15px 35px rgba(147, 51, 234, 0.6),
		0 8px 20px rgba(147, 51, 234, 0.4),
		0 4px 10px rgba(147, 51, 234, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.feature-row .col-md-4:nth-child(2) .feature-content h5 {
	color: #6b21a8;
}

/* 24/7 Support Card - Orange Theme */
.feature-row .col-md-4:nth-child(3) .feature-card {
	background: linear-gradient(135deg,
			rgba(251, 146, 60, 0.15) 0%,
			rgba(249, 115, 22, 0.1) 50%,
			rgba(234, 88, 12, 0.08) 100%);
	border: 1px solid rgba(251, 146, 60, 0.3);
	box-shadow:
		0 15px 35px rgba(251, 146, 60, 0.1),
		0 5px 15px rgba(251, 146, 60, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-row .col-md-4:nth-child(3) .feature-icon {
	background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
	box-shadow:
		0 15px 35px rgba(251, 146, 60, 0.6),
		0 8px 20px rgba(251, 146, 60, 0.4),
		0 4px 10px rgba(251, 146, 60, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.feature-row .col-md-4:nth-child(3) .feature-content h5 {
	color: #c2410c;
}

/* ============================== */
/* Feature Card 3D Curve Layout */
/* ============================== */

/* Expert Development Team Card - Left Curve */
.feature-row .col-md-4:nth-child(1) .feature-card {
	transform: rotateY(18deg);
}

/* Security First Approach Card - Center */
.feature-row .col-md-4:nth-child(2) .feature-card {
	transform: rotateY(0deg) translateZ(40px);
}

/* 24/7 Support Card - Right Curve */
.feature-row .col-md-4:nth-child(3) .feature-card {
	transform: rotateY(-18deg);
}

/* ============================== */
/* Feature Card Hover Effect */
/* ============================== */
.feature-card:hover {
	transform: translateY(-12px) scale(1.03) rotateY(0deg);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.18),
		0 15px 30px rgba(0, 0, 0, 0.12),
		0 5px 15px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px auto;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	box-shadow:
		0 15px 35px rgba(102, 126, 234, 0.6),
		0 8px 20px rgba(102, 126, 234, 0.4),
		0 4px 10px rgba(102, 126, 234, 0.3),
		inset 0 2px 4px rgba(255, 255, 255, 0.4);
	transform: translateZ(40px);
}

.feature-icon i {
	font-size: 32px;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
	transform: translateZ(50px) scale(1.08);
	box-shadow:
		0 20px 45px rgba(102, 126, 234, 0.7),
		0 10px 25px rgba(102, 126, 234, 0.5),
		0 5px 15px rgba(102, 126, 234, 0.4),
		inset 0 2px 6px rgba(255, 255, 255, 0.5);
}

.feature-content h5 {
	color: #333333;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-content h5 {
	color: #f093fb;
}

.feature-content p {
	color: #666666;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* ----------------------------------------------------------------------
	11. Responsive Design for Cards
---------------------------------------------------------------------- */

@media (max-width: 992px) {
	.service-card {
		margin-bottom: 25px;
	}

	.feature-card {
		margin-bottom: 25px;
	}
}

@media (max-width: 768px) {
	.service-card {
		padding: 25px 20px;
		margin-bottom: 20px;
	}

	.feature-card {
		padding: 30px 25px;
		margin-bottom: 20px;
	}

	.service-icon {
		margin-bottom: 15px;
	}

	.service-icon i {
		font-size: 20px;
	}

	.service-icon img {
		width: 55px;
		height: auto;
	}

	.feature-icon {
		width: 70px;
		height: 70px;
	}

	.feature-icon i {
		font-size: 28px;
	}
}

/* ----------------------------------------------------------------------
	12. Comprehensive Responsive Design
---------------------------------------------------------------------- */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}

	/* Enhanced 3D perspective for larger screens */
	.services-grid,
	.feature-row {
		perspective: 2000px;
	}
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
	.container {
		max-width: 1140px;
	}

	/* Adjust 3D effects for medium desktops */
	.services-grid .col-lg-4:nth-child(1) .service-card,
	.feature-row .col-md-4:nth-child(1) .feature-card {
		transform: rotateY(15deg);
	}

	.services-grid .col-lg-4:nth-child(3) .service-card,
	.feature-row .col-md-4:nth-child(3) .feature-card {
		transform: rotateY(-15deg);
	}
}

/* Laptop (1024px - 1199px) */
@media (max-width: 1199px) {

	/* Reduce 3D effects for smaller screens */
	.services-grid .col-lg-4:nth-child(1) .service-card,
	.feature-row .col-md-4:nth-child(1) .feature-card {
		transform: rotateY(12deg);
	}

	.services-grid .col-lg-4:nth-child(3) .service-card,
	.feature-row .col-md-4:nth-child(3) .feature-card {
		transform: rotateY(-12deg);
	}

	/* Adjust service card spacing */
	.service-card,
	.feature-card {
		margin-bottom: 30px;
	}

	/* Navigation adjustments */
	.navbar-nav>li>a {
		padding: 15px 12px;
		font-size: 14px;
	}
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {

	/* Disable 3D effects for tablets */
	.services-grid,
	.feature-row {
		perspective: none;
	}

	.services-grid .col-lg-4 .service-card,
	.feature-row .col-md-4 .feature-card {
		transform: none !important;
	}

	/* Service cards responsive */
	.service-card,
	.feature-card {
		margin-bottom: 25px;
		padding: 30px 25px;
	}

	/* Icon adjustments */
	.service-icon {
		width: 60px;
		height: 60px;
	}

	.service-icon i {
		font-size: 24px;
	}

	.feature-icon {
		width: 70px;
		height: 70px;
	}

	.feature-icon i {
		font-size: 28px;
	}

	/* Navigation mobile improvements */
	.navbar-brand img {
		max-height: 40px;
	}

	.navbar-toggle {
		margin-top: 15px;
	}

	/* Contact form adjustments */
	#JotFormIFrame-62741079167461 {
		height: 600px !important;
	}

	/* Map responsive */
	.contact-page iframe {
		height: 350px !important;
	}

	/* Footer adjustments */
	.footer-list {
		margin-bottom: 20px;
	}
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {

	/* Service cards mobile */
	.service-card,
	.feature-card {
		padding: 25px 20px;
		margin-bottom: 20px;
		text-align: center;
	}

	.service-content h4,
	.feature-content h5 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.service-content ul li,
	.feature-content p {
		font-size: 14px;
		line-height: 1.5;
	}

	/* Icon mobile sizes */
	.service-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.service-icon i {
		font-size: 20px;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 20px;
	}

	.feature-icon i {
		font-size: 24px;
	}

	/* Service button mobile */
	.service-button {
		padding: 10px 20px;
		font-size: 13px;
		margin-top: 20px;
	}

	/* Navigation mobile */
	.navbar-collapse {
		background: #fff;
		border-top: 1px solid #eee;
	}

	.navbar-nav>li>a {
		padding: 12px 15px;
		border-bottom: 1px solid #f5f5f5;
	}

	.dropdown-menu {
		background: #f8f9fa;
	}

	/* Contact form mobile */
	#JotFormIFrame-62741079167461 {
		height: 700px !important;
	}

	/* Map mobile */
	.contact-page iframe {
		height: 300px !important;
	}

	/* Page title mobile */
	.pagetitle h1 {
		font-size: 28px;
	}

	/* Footer mobile */
	.footer-list li {
		margin-bottom: 10px;
		font-size: 14px;
	}

	/* Social icons mobile */
	.social-icons li {
		margin: 0 5px;
	}

	.social-icons a {
		width: 36px;
		height: 36px;
		line-height: 36px;
		font-size: 14px;
	}
}

/* Small Mobile (360px - 575px) */
@media (max-width: 575px) {

	/* Container adjustments */
	.container {
		padding: 0 15px;
	}

	/* Service cards small mobile */
	.service-card,
	.feature-card {
		padding: 20px 15px;
		margin-bottom: 15px;
	}

	.service-content h4,
	.feature-content h5 {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.service-content ul li,
	.feature-content p {
		font-size: 13px;
		line-height: 1.4;
	}

	/* Icon small mobile */
	.service-icon {
		margin-bottom: 12px;
	}

	.service-icon i {
		font-size: 18px;
	}

	.service-icon img {
		width: 50px;
		height: auto;
	}

	.feature-icon {
		width: 55px;
		height: 55px;
	}

	.feature-icon i {
		font-size: 22px;
	}

	/* Service button small mobile */
	.service-button {
		padding: 8px 16px;
		font-size: 12px;
		margin-top: 15px;
	}

	/* Navigation small mobile */
	.navbar-brand img {
		max-height: 35px;
	}

	.navbar-toggle {
		padding: 8px 10px;
		margin-top: 12px;
	}

	/* Contact form small mobile */
	#JotFormIFrame-62741079167461 {
		height: 800px !important;
	}

	/* Map small mobile */
	.contact-page iframe {
		height: 250px !important;
	}

	/* Page title small mobile */
	.pagetitle h1 {
		font-size: 24px;
	}

	.breadcrumb {
		font-size: 12px;
	}

	/* Footer small mobile */
	.footer-list li {
		font-size: 13px;
		line-height: 1.4;
	}

	/* Social icons small mobile */
	.social-icons li {
		margin: 0 3px;
	}

	.social-icons a {
		width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 12px;
	}

	/* Contact info small mobile */
	.sidebar-info li {
		font-size: 13px;
		line-height: 1.4;
	}

	.sidebar-info span {
		font-size: 14px;
	}
}

/* Extra Small Mobile (320px - 359px) */
@media (max-width: 359px) {

	/* Service cards extra small */
	.service-card,
	.feature-card {
		padding: 15px 12px;
	}

	.service-content h4,
	.feature-content h5 {
		font-size: 15px;
	}

	.service-content ul li,
	.feature-content p {
		font-size: 12px;
	}

	/* Icon extra small */
	.service-icon {
		margin-bottom: 10px;
	}

	.service-icon i {
		font-size: 16px;
	}

	.service-icon img {
		width: 45px;
		height: auto;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
	}

	.feature-icon i {
		font-size: 20px;
	}

	/* Service button extra small */
	.service-button {
		padding: 6px 12px;
		font-size: 11px;
	}

	/* Navigation extra small */
	.navbar-brand img {
		max-height: 30px;
	}

	/* Page title extra small */
	.pagetitle h1 {
		font-size: 20px;
	}

	/* Footer extra small */
	.footer-list li {
		font-size: 12px;
	}

	/* Social icons extra small */
	.social-icons a {
		width: 28px;
		height: 28px;
		line-height: 28px;
		font-size: 10px;
	}
}

/* ----------------------------------------------------------------------
	13. Responsive Image and Media Fixes
---------------------------------------------------------------------- */

/* Responsive images */
img {
	max-width: 100%;
	height: auto;
}

/* Ensure all iframes are responsive */
iframe {
	max-width: 100%;
}

/* Contact page specific fixes */
.contact-page .contactform iframe {
	width: 100% !important;
}

/* Map iframe responsive */
.contact-page .sidebar-info iframe {
	width: 100% !important;
	height: 450px !important;
}

@media (max-width: 768px) {
	.contact-page .sidebar-info iframe {
		height: 350px !important;
	}
}

@media (max-width: 576px) {
	.contact-page .sidebar-info iframe {
		height: 300px !important;
	}
}

@media (max-width: 480px) {
	.contact-page .sidebar-info iframe {
		height: 250px !important;
	}
}

/* ----------------------------------------------------------------------
	14. Responsive Navigation Enhancements
---------------------------------------------------------------------- */

/* Mobile navigation improvements */
@media (max-width: 767px) {
	.navbar-default .navbar-nav>li>a {
		color: #333;
		border-bottom: 1px solid #f5f5f5;
	}

	.navbar-default .navbar-nav>li>a:hover,
	.navbar-default .navbar-nav>li>a:focus {
		color: #667eea;
		background-color: #f8f9fa;
	}

	.dropdown-menu>li>a {
		padding: 8px 20px;
		font-size: 14px;
	}

	.navbar-default .navbar-toggle {
		border-color: #667eea;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: #667eea;
	}

	.navbar-default .navbar-toggle:hover,
	.navbar-default .navbar-toggle:focus {
		background-color: #f8f9fa;
	}
}

/* ----------------------------------------------------------------------
	15. Responsive Form and Input Fixes
---------------------------------------------------------------------- */

/* Responsive form elements */
@media (max-width: 576px) {
	.form-control {
		font-size: 14px;
		padding: 10px 12px;
	}

	.btn {
		font-size: 14px;
		padding: 10px 20px;
	}
}

/* ----------------------------------------------------------------------
	16. Print Styles
---------------------------------------------------------------------- */

@media print {

	.navbar,
	.footer,
	.social-icons,
	.sidebar-info iframe {
		display: none !important;
	}

	.service-card,
	.feature-card {
		break-inside: avoid;
		border: 1px solid #ddd !important;
	}
}