/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 13 2026 | 12:25:07 */
/* =========================================================
   PREMIUM NDT / QA QC HERO
   ========================================================= */

.premium-hero {
  --hero-height: min(860px, 100vh);
  --slide-duration: 4000ms;

  position: relative;
  width: 100%;
  height: var(--hero-height);
  min-height: 650px;
  overflow: hidden;
  background: #080808;
  color: #fff;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


/* =========================================================
   TRACK
   ========================================================= */

.premium-hero__track {
  position: relative;
  width: 100%;
  height: 100%;
}


/* =========================================================
   SLIDES
   ========================================================= */

.premium-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 1.2s cubic-bezier(.16,1,.3,1),
    visibility 1.2s;
}

.premium-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* =========================================================
   IMAGE
   ========================================================= */

.premium-slide__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.premium-slide__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.08);

  transition:
    transform var(--slide-duration)
    cubic-bezier(.16,1,.3,1);
}

.premium-slide.is-active
.premium-slide__image img {
  transform: scale(1);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.premium-slide__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.76) 0%,
      rgba(0,0,0,.48) 35%,
      rgba(0,0,0,.15) 70%,
      rgba(0,0,0,.20) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0,0,0,.55) 0%,
      transparent 55%
    );
}


/* =========================================================
   CONTENT
   ========================================================= */

.premium-slide__content {
  position: absolute;

  left: clamp(28px, 8vw, 140px);
  top: 50%;

  width: min(720px, 76%);

  transform: translateY(-42%);
}


/* =========================================================
   HEADLINE
   ========================================================= */

.premium-slide h1,
.premium-slide h2 {
  margin: 0;

  font-size: clamp(58px, 7.2vw, 112px);

  line-height: .91;

  letter-spacing: -.055em;

  font-weight: 500;

  opacity: 0;

  transform: translateY(50px);

  transition:
    opacity 1s .15s cubic-bezier(.16,1,.3,1),
    transform 1s .15s cubic-bezier(.16,1,.3,1);
}

.premium-slide.is-active h1,
.premium-slide.is-active h2 {
  opacity: 1;
  transform: translateY(0);
}

.premium-slide h1 em,
.premium-slide h2 em {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;

  letter-spacing: -.04em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.premium-slide p {
  max-width: 520px;

  margin: 34px 0 36px;

  font-size: 16px;

  line-height: 1.7;

  color: rgba(255,255,255,.75);

  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity .9s .3s cubic-bezier(.16,1,.3,1),
    transform .9s .3s cubic-bezier(.16,1,.3,1);
}

.premium-slide.is-active p {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.premium-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity .9s .4s cubic-bezier(.16,1,.3,1),
    transform .9s .4s cubic-bezier(.16,1,.3,1);
}

.premium-slide.is-active
.premium-actions {
  opacity: 1;
  transform: translateY(0);
}

.premium-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  min-height: 54px;

  padding: 0 25px;

  border-radius: 100px;

  text-decoration: none;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: .03em;

  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}

.premium-btn:hover {
  transform: translateY(-3px);
}

.premium-btn--primary {
  background: #fff;
  color: #111;
}

.premium-btn--primary span {
  font-size: 17px;
}

.premium-btn--ghost {
  color: #fff;

  border: 1px solid rgba(255,255,255,.35);

  background: rgba(255,255,255,.02);

  backdrop-filter: blur(12px);
}

.premium-btn--ghost:hover {
  background: rgba(255,255,255,.12);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .premium-hero {
    --hero-height: 760px;
    min-height: 680px;
  }

  .premium-slide__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.12) 0%,
        rgba(0,0,0,.30) 35%,
        rgba(0,0,0,.88) 100%
      );
  }

  .premium-slide__content {
    left: 24px;
    right: 24px;

    bottom: 105px;
    top: auto;

    width: auto;

    transform: none;
  }

  .premium-slide h1,
  .premium-slide h2 {
    font-size: clamp(50px, 15vw, 76px);
    line-height: .94;
  }

  .premium-slide p {
    font-size: 14px;
    line-height: 1.6;

    margin:
      25px 0 28px;
  }

  .premium-actions {
    gap: 10px;
  }

  .premium-btn {
    min-height: 50px;
    padding: 0 20px;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {

  .premium-slide__content {
    left: 6vw;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .premium-slide,
  .premium-slide *,
  .premium-slide__image img {
    transition: none !important;
  }
}