/* Heading  CSS */
/* .section-background {
  background: var(--brand-primary);
} */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.header h2 {
  font-size: 30px;
  color: #111827;
}

.header p {
  color: #6b7280;
  margin-top: 6px;
}

.scroll-btns button {
  background: #111827;
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 8px;
}

.scroll-btns button:hover {
  background: #2563eb;
}

/* Video cards  */
.video-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.video-scroll::-webkit-scrollbar {
  display: none;
}

.video-card {
  position: relative;
  min-width: 250px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  color: #fff;
  cursor: pointer;
}

.sound-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 18px;
  background: rgba(0,0,0,0.6);
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}

.rating {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #16a34a;
  color: #fff;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 13px;
}


/*CTA  footer information  */

/* CTA */
.cta-box {
  margin: 30px 0px;

  text-align: center;
}

.cta-box h3 {
  font-size: 26px;
  color: #111827;
}

.cta-box p {
  color: #deff00;
  margin: 10px 0 20px;
}

.cta-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
}

.cta-btn:hover {
  background: #1d4ed8;
}

