/* ================= PROJECT PAGE ================= */
.page-hero {
  margin-top: 85px;
  height: 220px;
  background: #2b2f3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.projects-section {
  padding: 90px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  justify-items: center;
}

.project-card {
  text-align: center;
}

.project-card img,
.project-card video {
  width: 100%;
  max-width: 480px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.project-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.project-btn {
  display: inline-block;
  background: #0a2540;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
}

.project-btn:hover {
  background: #123a6f;
}

/* ================= CTA ================= */
.project-cta {
  padding: 70px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0a2540, #123a6f);
  color: #fff;
  border-radius: 12px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-btn {
  background: #ffffff;
  color: #0a2540;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
