.zigzag-banner {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f1a;
}

/* Background image */
.inner-banner__bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/background/page-title.jpg') center/cover no-repeat;
  z-index: 1;
}

/* Dark overlay */
.inner-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11,15,26,0.9),
    rgba(11,15,26,0.55),
    rgba(11,15,26,0.25)
  );
}

/* ✨ Animated light sweep */
.banner-light {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 70%
  );
  z-index: 2;
  animation: lightSweep 10s linear infinite;
}

/* Zig-zag bottom */
.zigzag-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: #ffffff;
  clip-path: polygon(
    0 0,
    25% 40%,
    50% 0,
    75% 40%,
    100% 0,
    100% 100%,
    0 100%
  );
  z-index: 6;
}

/* Content */
.inner-banner__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.inner-banner__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.inner-banner__breadcrumb {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.inner-banner__breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

/* Light sweep animation */
@keyframes lightSweep {
  from {
    transform: translateX(-40%) rotate(0deg);
  }
  to {
    transform: translateX(40%) rotate(0deg);
  }
}

/* Logo */
.banner-logo {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  background: #fff;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.banner-logo img {
  width: 70px;
}

/* Responsive */
@media (max-width: 768px) {
  .zigzag-banner {
    height: 45vh;
  }

  .zigzag-banner::after {
    height: 90px;
  }
}


/* Diagonal moving lines */
.diagonal-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0px,
    rgba(255,255,255,0.08) 1px,
    transparent 1px,
    transparent 12px
  );
  opacity: 0.4;
  animation: diagonalMove 25s linear infinite;
}

/* Animation */
@keyframes diagonalMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 400px 400px;
  }
}


.zigzag-banner {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f1a;
}

/* Background image */
.inner-banner__bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/background/page-title.jpg') center/cover no-repeat;
  z-index: 1;
}

/* Dark overlay */
.inner-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11,15,26,0.9),
    rgba(11,15,26,0.55),
    rgba(11,15,26,0.25)
  );
}

/* ✨ Animated light sweep */
.banner-light {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 70%
  );
  z-index: 2;
  animation: lightSweep 10s linear infinite;
}

/* Zig-zag bottom */
.zigzag-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: #17479e;
  clip-path: polygon(
    0 0,
    25% 40%,
    50% 0,
    75% 40%,
    100% 0,
    100% 100%,
    0 100%
  );
  z-index: 6;
}

/* Content */
.inner-banner__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.inner-banner__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.inner-banner__breadcrumb {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.inner-banner__breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

/* Light sweep animation */
@keyframes lightSweep {
  from {
    transform: translateX(-40%) rotate(0deg);
  }
  to {
    transform: translateX(40%) rotate(0deg);
  }
}

/* Logo */
.banner-logo {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  background: #fff;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.banner-logo img {
  width: 70px;
}

/* Responsive */
@media (max-width: 768px) {
  .zigzag-banner {
    height: 45vh;
  }

  .zigzag-banner::after {
    height: 90px;
  }
}


/* 🍎 Apple-style grain texture */


/* .zigzag-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/noise.png');
  background-repeat: repeat;
  opacity: 0.08; 
  z-index: 3;
  pointer-events: none;
  animation: grainMove 8s steps(10) infinite;
} */


.inner-banner__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.one-line-title {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;     /* 🔑 KEY LINE */
  flex-wrap: nowrap;       /* 🔑 KEY LINE */
}

.static-text {
  color: #fff;
  font-weight: 800;
}

.typed-text {
  color: #e11b22;
  font-weight: 600;
  border-right: 2px solid #e11b22;
  padding-right: 6px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 50%, 100% { border-color: #e11b22; }
  25%, 75% { border-color: transparent; }
}

