/* ===== BANNER ===== */
.hero-banner {
  height: 55vh;
  background: url('../images/our-team-banner.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.banner-content p {
  font-size: 1.2rem;
  opacity: 0.85;
}

/* =======================
   PROJECTS SECTION
=========================== */
.projects-section {
  padding: 80px 6%;
  background: #f7f8fa;
}

.project-category {
  margin-bottom: 70px;
}

.category-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
  color: #1c1c1c;
}

.category-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 4px;
  background: linear-gradient(180deg, #c89b3c, #8c6a1f);
  border-radius: 2px;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.project-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.project-image {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

/* STATUS BADGE */
.project-status {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 20px;
  color: #fff;
}

.project-card.completed .project-status {
  background: #2e7d32;
}

.project-card.ongoing .project-status {
  background: #c89b3c;
}

/* BODY */
.project-body {
  padding: 22px;
}

.project-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.project-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
