.projects-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
	background-color: whitesmoke;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	font-family: "Poppins", sans-serif;
}

.section-title h2 {
	font-size: 2.5rem;
	color: #2d3436;
	margin-bottom: 1rem;
}

.section-title p {
	color: #636e72;
	font-size: 1.1rem;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.project-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.project-card:hover {
	transform: translateY(-10px);
}

.project-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.project-content {
	padding: 1.5rem;
}

.project-category {
	color: #00b894;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.project-title {
	font-size: 1.5rem;
	color: #2d3436;
	margin: 0.5rem 0;
}

.project-description {
	color: #636e72;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.project-link {
	display: inline-block;
	text-decoration: none;
	color: #0984e3;
	font-weight: 600;
	transition: color 0.3s ease;
}

.project-link:hover {
	color: #0069d9;
}
