.heading-1 h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 2px;
  text-align: center;
  margin-block: 8rem 1rem;
  text-shadow: 1px 0.5px 1px #ff0404;
}
@media screen and (max-width: 768px) {

  .heading-1 h1 {
    font-size: 1.5rem;
      margin-block:0.5rem;

  }
}
@media screen and (max-width: 570px) {
  .heading-1 h1 {
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 1.2rem;
    }
  }
/* -------------------------video start------------------------ *//* ================= VIDEO SECTION ================= */

.video {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block: 2rem 1rem;
}

/* Video Card */
.video .video-card {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Thumbnail Image */
.video .video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark Gradient Overlay */
.video .video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* Play Icon Wrapper */
.play-icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Play Icon */
.play-icon i {
  width: 64px;
  height: 64px;
  background: rgba(255, 0, 0, 0.75);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.45);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Play Icon Hover */
.video .video-card:hover .play-icon i {
  transform: scale(1.15);
  background: rgba(255, 0, 0, 0.9);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .video {
    grid-template-columns: repeat(3, 1fr);
  }

  .video .video-card {
    height: 210px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }

  .video .video-card {
    height: 200px;
  }

  .play-icon i {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .video {
    grid-template-columns: 1fr;
  }

  .video .video-card {
    height: 190px;
  }

  .play-icon i {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* ================= HEADING FIX ================= */

.heading-1 h1,
.container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .heading-1 h1,
  .container h1 {
    font-size: 1.5rem;
  }
}
