.projects-section {
    background: #f6f4ef;
    padding: 90px 20px;
}

.projects-container {
    max-width: 1150px;
    margin: auto;
    text-align: center;
}

.projects-container h2{
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #1e2b24;
}

.projects-subtitle {
    color: #6b6f6c;
    font-size: 0.95rem;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.project-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    height: 190px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover img {
    transform: scale(1.08);
  }
  
  /* INFO */
  .project-info {
    padding: 16px;
    text-align: left;
  }
  
  .project-tag {
    font-size: 0.75rem;
    color: #6f7a73;
    display: block;
    margin-bottom: 4px;
  }
  
  .project-info h3 {
    font-size: 1rem;
    color: #1f5f3b;
  }
  
  /* BUTTON */
  .projects-btn {
    display: inline-block;
    margin-top: 45px;
    background: #1f5f3b;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .projects-btn:hover {
    background: #184c2f;
  }

  @media (max-width: 1000px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 550px) {
    .projects-grid {
      grid-template-columns: 1fr;
    }
  }
