
.project-container {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	gap: 20px;
  	padding: 40px;
  	max-width: 1200px;
  	margin: auto;
}

/* Service Card Container */
.project-card {
  	width: 100%;
  	max-width: 280px;
  	height: 420px;
  	border-radius: 15px;
  	background: #ffffff;
  	position: relative;
  	padding: 1.5rem;
  	border: 2px solid #c3c6ce;
  	transition: 0.4s ease-in-out;
  	overflow: hidden;
  	text-align: center;
  	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
}

/* Service Image */
.project-image {
  	width: 100%;
  	height: 150px;
  	overflow: hidden;
  	border-radius: 10px;
}

.project-image img {
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
  	border-radius: 10px;
  	transition: transform 0.3s ease-in-out;
}

/* Text Content */
.project-details {
  	color: #333;
  	padding: 10px;
}

.project-title {
  	font-size: 1.5rem;
  	font-weight: 600;
  	margin-bottom: 0.5rem;
  	color: #9be15d;
}

.project-description {
  	font-size: 1rem;
  	color: #666;
  	line-height: 1.5;
}

/* Button */
.project-button {
  	width: 80%;
  	border-radius: 10px;
  	border: none;
  	background-color: #5FBF05;
  	color: #fff;
  	font-size: 1rem;
  	padding: 0.6rem;
  	position: absolute;
  	left: 50%;
  	bottom: -50px;
  	transform: translateX(-50%);
  	opacity: 0;
  	transition: 0.3s ease-in-out;
  	cursor: pointer;
  	font-weight: 500;
}

/* Hover Effects */
.project-card:hover {
  	border-color: #5FBF05;
  	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.project-card:hover .project-button {
  	bottom: 15px;
  	opacity: 1;
}

.project-card:hover .project-image img {
  	transform: scale(1.1);
}
.view-more-card {
  background-color: #f7f7f7;
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
}

.view-more-link {
  text-decoration: none;
  color: #337ab7;
}

.view-more-link:hover {
  color: #23527c;
}

/* Responsive Design */
@media (min-width: 1024px) {
  	.project-container {
    		justify-content: space-between;
  	}
}

@media (max-width: 1024px) {
  	.project-container {
    		justify-content: center;
  	}

  	.project-card {
    		max-width: 250px;
  	}
}

@media (max-width: 768px) {
  	.project-container {
    		display: grid;
    		grid-template-columns: repeat(2, 1fr);
    		gap: 15px;
  	}

  	.project-card {
    		max-width: 100%;
    		height: auto;
    		padding: 1rem;
  	}

  	.project-image {
    		height: 130px;
  	}

  	.project-title {
    		font-size: 1.3rem;
  	}

  	.project-description {
    		font-size: 0.9rem;
  	}

  	.project-button {
    		width: 90%;
    		font-size: 0.9rem;
  	}
}

@media (max-width: 480px) {
  	.project-container {
    		grid-template-columns: repeat(1, 1fr);
  	}

  	.project-title {
    		font-size: 1.2rem;
  	}

  	.project-description {
    		font-size: 0.85rem;
  	}

  	.project-button {
    		width: 100%;
  	}
}
