.showcase-gallery {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color: #000;
}

.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.gallery-track img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #111;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 2;
}

.gallery-btn:hover {
  background: rgba(0,0,0,0.7);
}

.gallery-btn.prev {
  left: 20px;
}

.gallery-btn.next {
  right: 20px;
}

.projects-section {
  padding: 80px 24px;
  background-color: #f7f7f7;
}

.projects-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
  font-weight: 600;
}

.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.project-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.project-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-info {
  position: relative;
  padding: 24px;
}

.project-call {
  position: absolute;
  right: 40px;
  top: 60px;

  font-size: 1.4rem;
  text-decoration: none;

  background: #f2f2f2;
  border-radius: 50%;
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease, transform 0.2s ease;
}

.project-call:hover {
  background: #0077ff;
  color: #fff;
  transform: scale(1.05);
}

.project-info h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.project-info p {
  color: #555;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .project-info {
    padding: 16px;
  }

  .project-call {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 12px;
  }
}
