.op-projects-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.op-section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.op-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.op-slider-container {
  overflow: hidden;
  width: 100%;
}

.op-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.op-project-card {
  min-width: 300px;
  margin: 0 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
}

.op-project-card img {
  width: 100%;
  border-radius: 10px;
}

.op-project-card h3 {
  margin: 15px 0 8px;
}

.op-project-card p {
  font-size: 14px;
  color: #555;
}

.op-nav-btn {
  background: #000;
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.op-nav-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .op-project-card {
    min-width: 85%;
  }
}


.op-project-card h3 {
    margin: 15px 0 8px;
    font-size: 16px;
    margin-bottom: 0;
}