.pcs-swiper {
  width: 100vw;                /* Full screen width */
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}

.pcs-slide {
  display: flex;
  justify-content: center;
}

.pcs-card {
  width: 95%;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-family: 'Roboto', sans-serif;
	position:relative;
	overflow:hidden;
}

.pcs-img-container {
  position: relative;
  aspect-ratio: 16 / 9;         /* Maintain proportional height */
  overflow: hidden;
}

.pcs-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ FIX: Multiple badges layout */
.pcs-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  z-index: 10;
}

/* ✅ Override default position for badges inside .pcs-badges */
.pcs-badges .pcs-badge {
  position: static;
  display: inline-block;
}

/* ✅ For standalone badges, keep them absolute (if used outside .pcs-badges) */
.pcs-img-container > .pcs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.pcs-badge {
	font-family: 'Roboto', sans-serif;
  background: F9B21D; /* customize as needed */
  color: #000;
  font-size: 8px;
  font-weight: 100;
  padding: 1px 1px;
  white-space: nowrap;
  border-radius: 0px;
	line-height: 8px;
	text-transform:uppercase;
}

.pcs-logo-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  z-index: 5;
}

.pcs-logo-overlay img {
  height: 40px;
  margin-bottom: 2px;
}

.pcs-logo-overlay p {
  margin: 0;
  font-size: 13px;
}

.pcs-location {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 14px;
	font-weight:500;
  z-index: 5;
}
.pcs-project-name {
  position: absolute;
  bottom: 50px;
  left: 20px;
  font-size: 24px;
	line-height:34px;
  font-weight: 500;
  color: #fff;
  z-index: 5;
}
.pcs-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 25px;
  font-size: 13px;
  background: #fff;
	font-family:'Roboto', sans-serif;
	color:black;
	text-transform:uppercase;
}

.pcs-info-bar > div {
  flex: 1 1 20%;
  min-width: 120px;
  margin: 5px 0;
}
.pcs-info-bar > div strong{font-weight:600; text-transform:uppercase; font-size: 16px;}

.pcs-btn {
  display: inline-block;
  background: #f9b21d;
  color: #000;
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
.pcs-overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px; /* adjust height if needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.02));
  z-index: 4;
}
