
    /* ===== HOME PAGE  HEADER ===== */
    .hero {
      position: relative;
      min-height: 90px;
      background: url('../images/heldarbackgroundimage.jpeg') no-repeat center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8px 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 10px;
    }

    .hero-flex {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
      flex-wrap: nowrap;
    }

    .hero-img {
      width: 60px;
      height: 80px;
      min-width: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid rgba(255, 213, 0, 0.822);
    }

    .hero-content h1,
    .hero-content p {
      color: #ffcc00;
      white-space: nowrap;
    }

    .hero-content h1 {
      font-size: clamp(20px, 3.5vw, 32px);
    }

    .hero-content p {
      font-size: clamp(  11px, 3.1vw, 16px);
    }






/* ===== VIDEO HTML HEADER AND IMAGE HTML HELDER  ===== */
.video-hero {
  position: relative;
  min-height: 120px;
  background: #3d5150;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 0;
  overflow: hidden;
}

.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.video-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 10px;
}

.video-hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex-wrap: nowrap;

}

.video-hero-img {
  width: 70px;
  height: 100px;
  min-width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

/* ===== TEXT STYLE ===== */

.video-hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: bold;
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  padding: 6px 12px;

  /* Gradient Text */
  background: linear-gradient(90deg, #ffea00, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.video-hero-content p {
  font-size: clamp(14px, 3vw, 22px);
  color: #ffffff;
  white-space: nowrap;
  margin-top: 4px;
}