.project-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 2rem;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0rem;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #fff;
  transition: 0.3s ease;
  margin: 4rem 0;

}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.project-images img {
  width: 100%;
  border-radius: 8px 0 0 8px;
  transition: transform 0.3s ease;
}


.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-description {
  color: #585858;
  font-size: 16px;
  margin-bottom: 1rem;
}

.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat {
  border: 1px solid #ebebeb;
  padding: 10px 20px;
  border-radius: 8px;
}

.stat-number {
  font-size: 20px;
  font-weight: 600;
}

.stat-label {
  font-size: 14px;
  color: #555;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}

.tag {
  background: #f4f4f4;
  border: 1px solid #d7d7d7;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.cta-buttons {
  margin-top: 1rem;
}

.btn {
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #001aff;
  color: #fff;
/*   box-shadow: 0 5px 15px rgba(0, 26, 255, 0.2); */
  text-decoration: none !important
}

.btn-primary a:hover{
	color: #fff;
}

.btn-primary:hover {
  color: #fff !important;
/*   transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 26, 255, 0.3); */
	
}


/* Mobile responsive */
@media (max-width: 768px) {
  .project-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-info {
    align-items: center;
  }

  .project-stats {
    justify-content: center;
  }

  .cta-buttons {
    justify-content: center;
  }
}
