.our-projects {
  text-align: center;
  padding: 10px 20px;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.our-projects h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.our-projects h2 span {
  color: #1a73e8;
}

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}

.slide-caption h3 {
  margin: 0;
  font-size: 1.2em;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}
