/* Simple Tech Logos Styling - Ensures Visibility */

/* Tech Section */
.tech-section {
	padding: 3rem 0 !important;
	background: #f8f9fa !important;
}

/* Container */
.tech-stack-wrapper {
	display: flex !important;
	align-items: center !important;
	gap: 2rem !important;
}

/* Label */
.tech-stack-label {
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 2px !important;
	color: #667eea !important;
	white-space: nowrap !important;
	padding-right: 2rem !important;
	border-right: 2px solid #e2e8f0 !important;
}

/* Slider Container */
.tech-stack-slider {
	display: flex !important;
	gap: 2.5rem !important;
	align-items: center !important;
	overflow-x: auto !important;
	flex: 1 !important;
	padding: 0.5rem 0 !important;
}

/* Hide scrollbar */
.tech-stack-slider::-webkit-scrollbar {
	display: none !important;
}

/* Tech Items */
.tech-item {
	flex-shrink: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* Logo Images - ENSURE VISIBILITY */
.tech-item img {
	display: block !important;
	height: 35px !important;
	width: auto !important;
	max-width: 110px !important;
	object-fit: contain !important;
	filter: grayscale(100%) !important;
	opacity: 0.6 !important;
	transition: all 0.3s ease !important;
	visibility: visible !important;
}

/* Hover Effect */
.tech-item:hover img {
	filter: grayscale(0%) !important;
	opacity: 1 !important;
	transform: scale(1.1) !important;
}

/* Responsive */
@media (max-width: 991px) {
	.tech-stack-wrapper {
		flex-direction: column !important;
		gap: 1.5rem !important;
	}
	
	.tech-stack-label {
		border-right: none !important;
		border-bottom: 2px solid #e2e8f0 !important;
		padding-right: 0 !important;
		padding-bottom: 0.5rem !important;
		text-align: center !important;
	}
	
	.tech-stack-slider {
		justify-content: center !important;
		flex-wrap: wrap !important;
		gap: 2rem !important;
	}
}

@media (max-width: 767px) {
	.tech-stack-slider {
		gap: 1.5rem !important;
	}
	
	.tech-item img {
		height: 30px !important;
		max-width: 90px !important;
	}
}