.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;
  }
}
/* ===========================
   VIDEO SECTION
=========================== */

.video-section {
    margin-top: 7rem;
    position: relative;
    background: #000;
}

/* ===========================
   SAME HEADING STYLE
=========================== */

.gallery-heading {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.gallery-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.gallery-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-top: 12px;
}

.heading-line {
    width: 90px;
    height: 3px;
    background: #FFD700;
    margin-top: 20px;
}

/* ===========================
   VIDEO GRID
=========================== */

.video {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* ===========================
   VIDEO CARD
=========================== */

.video .video-card {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000;
    display: block;
}

/* Thumbnail */
.video .video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Overlay */
.video .video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2),
        transparent
    );
    z-index: 1;
}

/* Hover Zoom */
.video .video-card:hover img {
    transform: scale(1.08);
}

/* ===========================
   PLAY ICON
=========================== */

.play-icon {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon i {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.85);
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,215,0,0.25);
}

.video .video-card:hover .play-icon i {
    transform: scale(1.15);
    background: #FFD700;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 992px) {

    .video-section {
        margin-top: 10rem;
    }

    .gallery-heading h2 {
        font-size: 2rem;
    }

    .video {
        grid-template-columns: repeat(3, 1fr);
    }

    .video .video-card {
        height: 240px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .video-section {
        margin-top: 10rem;
    }

    .gallery-heading {
        padding: 0 20px;
    }

    .gallery-heading h2 {
        font-size: 1.8rem;
    }

    .video {
        grid-template-columns: repeat(2, 1fr);
    }

    .video .video-card {
        height: 220px;
    }

    .play-icon i {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width: 480px) {

    .video-section {
        margin-top: 10rem;
    }

    .gallery-heading h2 {
        font-size: 1.6rem;
    }

    .video {
        grid-template-columns: repeat(2, 1fr);
    }

    .video .video-card {
        height: 180px;
    }

    .play-icon i {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}