/* ===== Video Section Cinematic ===== */

.projects-section {
  padding: 100px 20px;
  background: #0f0f12;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.video-card {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* section title style */
.projects-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
  color: #f7d282;
  letter-spacing: 1px;
}
