body {
	font-family: "Inter", sans-serif;
	background-color: #f0f3f9;
	line-height: 1.6;
	padding-top: 70px; /* match the navbar height */
}
.tech-services-wrapper {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	position: relative;
}

.tech-services-header {
	text-align: center;
	margin-bottom: 50px;
}

.tech-services-header h2 {
	font-size: 42px;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 15px;
}

.tech-services-header p {
	font-size: 18px;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.tech-carousel-container {
	position: relative;
	overflow: hidden;
	margin-top: 50px;
}

.tech-carousel-track {
	display: flex;
	transition: transform 0.5s ease;
	gap: 30px;
}

.tech-service-item {
	flex: 0 0 calc(33.333% - 20px);
	background: white;
	border-radius: 15px;
	padding: 35px 25px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.tech-service-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tech-service-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.tech-service-item:nth-child(1) .tech-service-icon {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tech-service-item:nth-child(1) .tech-service-icon::after {
	content: "📱";
	font-size: 40px;
}

.tech-service-item:nth-child(2) .tech-service-icon {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tech-service-item:nth-child(2) .tech-service-icon::after {
	content: "🎨";
	font-size: 40px;
}

.tech-service-item:nth-child(3) .tech-service-icon {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tech-service-item:nth-child(3) .tech-service-icon::after {
	content: "📈";
	font-size: 40px;
}

.tech-service-item:nth-child(4) .tech-service-icon {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tech-service-item:nth-child(4) .tech-service-icon::after {
	content: "💻";
	font-size: 40px;
}

.tech-service-item:nth-child(5) .tech-service-icon {
	background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.tech-service-item:nth-child(5) .tech-service-icon::after {
	content: "🔍";
	font-size: 40px;
}

.tech-service-item:nth-child(6) .tech-service-icon {
	background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.tech-service-item:nth-child(6) .tech-service-icon::after {
	content: "🛠️";
	font-size: 40px;
}

.tech-service-title {
	font-size: 20px;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 15px;
	line-height: 1.3;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-service-desc {
	font-size: 15px;
	color: #7f8c8d;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tech-nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.tech-nav-button:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: translateY(-50%) scale(1.1);
}

.tech-nav-prev {
	left: -25px;
}

.tech-nav-next {
	right: -25px;
}

.tech-nav-button::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid #667eea;
	border-bottom: 2px solid #667eea;
}

.tech-nav-prev::after {
	transform: rotate(135deg);
	margin-left: 3px;
}

.tech-nav-next::after {
	transform: rotate(-45deg);
	margin-right: 3px;
}

.tech-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.tech-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tech-dot.active {
	background: #667eea;
	transform: scale(1.2);
}

.tech-appointment-section {
	text-align: center;
	margin-top: 30px;
}

.tech-appointment-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	background: #f03729;

	color: white;
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.tech-appointment-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.tech-phone-icon {
	font-size: 18px;
	color: white;
}

/* === Optimized Trusted Partners Section === */

.trusted-partners-section {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	padding: 40px 0; /* Reduced height */
	color: white;
}

.trust-main-headline {
	text-align: center;
	margin-bottom: 30px;
}

.trust-main-headline h2 {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.3;
	margin: 0;
	color: white;
}

.trust-highlight {
	font-weight: bold;
	font-size: 2.4rem;
	background: #fbaf44;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ========== Logo Slider Styles ========== */

.logo-slider-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 20px 0;
}

.logo-slider-track {
	display: flex;
	width: max-content;
	animation: scrollSlider 30s linear infinite;
}

.logo-card {
	flex: 0 0 auto;
	padding: 10px 30px;
	animation: fadeInUp 1s ease forwards;
	opacity: 0;
	transform: translateY(30px);
}

.logo-card img {
	max-height: 50px;
	width: auto;
	object-fit: contain;
	filter: none !important; /* Removes grayscale or color filters */
	transition: transform 0.3s ease;
}

.logo-card:nth-child(1) {
	animation-delay: 0.1s;
}
.logo-card:nth-child(2) {
	animation-delay: 0.2s;
}
.logo-card:nth-child(3) {
	animation-delay: 0.3s;
}
.logo-card:nth-child(4) {
	animation-delay: 0.4s;
}
.logo-card:nth-child(5) {
	animation-delay: 0.5s;
}
.logo-card:nth-child(6) {
	animation-delay: 0.6s;
}
.logo-card:nth-child(7) {
	animation-delay: 0.7s;
}

/* Scroll animation */
@keyframes scrollSlider {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Entrance animation */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.success-stories {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #f8f9fa 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 3rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #6c757d;
	font-weight: 400;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.testimonial-card {
	background: white;
	padding: 30px;
	padding-bottom: 5px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #007bff, #6f42c1);
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rating {
	display: flex;
	gap: 5px;
	margin-bottom: 20px;
}

.star {
	color: #ffc107;
	font-size: 1.2rem;
}

.testimonial-content {
	margin-bottom: 30px;
}

.testimonial-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	line-height: 1.3;
}

.testimonial-text {
	color: #5a6c7d;
	font-size: 1rem;
	line-height: 1.7;
}

.author-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #007bff, #6f42c1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
}

.author-details h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 5px;
}

.author-details p {
	color: #6c757d;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Animation */
.testimonial-card {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(2) {
	animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.news-section {
	padding: 60px 20px;
	max-width: 1300px;
	margin: 0 auto;
	overflow: hidden;
}

.news-heading {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	color: #1c1c1c;
	margin-bottom: 40px;
}

.news-slider {
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	-webkit-overflow-scrolling: touch;
}

.news-track {
	display: flex;
	gap: 20px;
	width: max-content;
	will-change: transform;
	min-width: 100%;
}

.news-card {
	display: flex; /* Make card a flex container */
	flex-direction: column; /* Stack children vertically */
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	flex: 0 0 300px;
}

.news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #2c5aa0, #4a90e2);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-content {
	display: flex; /* Make content also flex column */
	flex-direction: column;
	height: 100%;
	padding: 20px;
}

.author-info {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f1eef5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

.author-details h4 {
	font-size: 14px;
	color: #2c3e50;
	margin-bottom: -4px;
}

.author-details span {
	font-size: 12px;
	color: #7f8c8d;
}

.card-title {
	font-size: 1.3rem;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 10px;
	line-height: 1.4;
}

.news-description {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.5;
}

.start-btn {
	display: inline-block;
	width: 200px;
	height: 45px;
	line-height: 45px;
	background-color: #2c5aa0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 0.9rem;
	border-radius: 5px;
	transition: background 0.3s ease;
	overflow: hidden;
	white-space: nowrap;
	margin-top: auto; /* ✅ Push button to the bottom */
}

.start-btn:hover {
	background-color: #1e3f7a;
}

.news-link {
	display: inline-block;
	margin-top: 10px;
	color: #007bff;
	font-weight: 500;
	font-size: 0.9rem;
	text-decoration: underline;
}

.news-slider::-webkit-scrollbar {
	display: none;
}

/* ✅ Mobile View — Shrink card and content slightly
@media (max-width: 768px) {
	.news-card {
		flex: 0 0 240px;
	}

	.news-card-content {
		padding: 15px;
	}

	.news-title {
		font-size: 0.95rem;
	}

	.news-description {
		font-size: 0.85rem;
	}

	.news-link {
		font-size: 0.85rem;
	}

	.news-card img {
		height: 150px;
	}
} */
