/* Horizontal scroll */
.salv-service-card {
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
    padding: 40px;
    width: 90%;
}
.salv-service-card::-webkit-scrollbar {
	display: none;
}

/* Card sizing */
.project-card {
    margin-top: -50px;
    height: 450px;
	/* min-height: calc(100vh - 380px); */
	position: relative;
	padding: 0;
}

/* Image on top */
.project-image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

/* Content area */
.project-content {
	padding: 24px;
}

/* Big typography */
.project-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.project-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

/* Hover overlay */
.project-hover {
	position: absolute;
	inset: 0;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

/* Show overlay */
.project-card:hover .project-hover {
	opacity: 1;
}

/* Hide content on hover */
.project-card:hover .project-image,
.project-card:hover .project-content {
	opacity: 0;
}

/* Link button */
.project-link {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid #fff;
	padding: 12px 24px;
}

/* Mobile tuning */
@media (max-width: 768px) {
	.project-title {
		font-size: 20px;
	}
	.project-desc {
		font-size: 15px;
	}
}
