/* General Section Styling */
.project-section {
  background-color: #f5f7fa;
  padding: 60px 0;
}

/* Section Title */
.project-title {
  color: #34485c;
}

/* Carousel Item Image Wrapper */
.project-card {
  position: relative;
  border-radius: 10px;
  border: 1.5px solid #f9c404;
  overflow: hidden;
}

/* Project Image */
.project-card img {
  width: 100%;
  height: 500px; ;
  display: block;
  border-radius: 10px;
}


/* Text Overlay at Bottom */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  height: 100px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Project Title */
.project-overlay h3 {
  color: #f9c404;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Project Location */
.project-overlay .location {
  color: #fff;
  font-size: 0.9rem;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(249, 196, 4, 0.95); /* yellow brand accent */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.video-play-button span {
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid #34485c; /* slate blue play icon */
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-play-button:hover {
  background: #34485c;
}

.video-play-button:hover span {
  border-left-color: #f9c404;
}
