.slider-area {
  position: relative;
  background: #000;
  text-align: center;
}

.slider-area .swiper-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.slider-area .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider-area .swiper-slide::before {
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*    background: url(../../layout/img/gridtile.png), linear-gradient(90deg, rgb(0, 48, 95) 0%, rgba(119, 225, 216, .15) 60%);*/
  /* background: linear-gradient(90deg, rgb(8 76 132) 0%, rgba(119, 225, 216, 0) 59%); */
  /* background: linear-gradient(90deg, rgb(0, 48, 95) 0%, rgba(119, 225, 216, .15) 60%); */
  /* background-color: rgba(0, 0, 0, 0.4); */
  background:
    linear-gradient(
      90deg,
      rgb(2 53 75 / 0.88) 0%,
      rgb(8 19 43 / 0.58) 44%,
      rgb(8 19 43 / 0.08) 100%
    ),
    linear-gradient(180deg, rgb(3 9 28 / 0.16) 0%, rgb(3 9 28 / 0.28) 100%);
  z-index: 1;
}

.swiper-slide .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.slider-container {
  text-align: left;
  width: 70%;
  z-index: 2;
}

/* Typography — fluid, responsive & scalable */
.slider-sub-title {
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 1.5vw, 1.25rem); /* 16 → 20px */
}

.slider-location {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  color: #7da2ef;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.32em;
}

.slider-location::before {
  content: "";
  width: 44px;
  height: 1px;
  background: #2563eb;
}

.slider-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding: 0;
  opacity: 1;
  font-size: clamp(1.25rem, 4vw, 4rem); /* 28 → 64px */
  line-height: 1.2;
}

.slider-title .slider-gradient-word {
  display: block;
  width: fit-content;
  opacity: 1;
  color: transparent;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #93c5fd 35%,
    #b88733 65%,
    #ffffff 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sliderGradientWord 5s ease-in-out infinite;
}

@keyframes sliderGradientWord {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider-title .slider-gradient-word {
    animation: none;
  }
}

.slider-desc p {
  font-weight: 300;
  color: #d9e2f1;
  opacity: 1;
  padding: 0;
  letter-spacing: 0.03em;
  font-size: clamp(0.875rem, 2vw, 1.25rem); /* 14 → 20px */
  line-height: 1.5;
}

.slide-1 {
  background: url("http://demo2.joomshaper.com/2019/indigo/images/2019/06/10/slider-02.jpg");
  background-size: cover;
}

.slide-2 {
  background: url("http://demo2.joomshaper.com/2019/indigo/images/2019/06/10/slider-03.jpg");
  background-size: cover;
}

.slide-3 {
  background: url("http://demo2.joomshaper.com/2019/indigo/images/2019/05/27/slider-01.jpg");
  background-size: cover;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-top: 2rem;
  margin-right: 0.5rem;
  padding: 0 2.225rem;
  border: 1px solid var(--color-primary-base);
  border-radius: 5px;
  background: var(--color-primary-base);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: none;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.slider-button:hover,
.slider-button:focus {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}

.slider-button.secondary-button {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(2, 6, 24, 0.12);
  color: #fff;
}

.slider-button.secondary-button:hover,
.slider-button.secondary-button:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(2, 6, 24, 0.28);
  color: #fff;
}

.slider-button.secondary-button i {
  display: none;
}

.slider-button.link-type:hover {
}

.slider-button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-left: 0.625rem;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: 0.75rem;
  transition: transform 0.22s cubic-bezier(0.2, 0, 0.2, 1);
}

.slider-button i.fa-arrow-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.slider-button.link-type i {
  height: auto;
  width: auto;
  background-color: #fff0;
}

.slider-button:not(.secondary-button):hover i.fa-arrow-right,
.slider-button:not(.secondary-button):focus i.fa-arrow-right {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .swiper-slide .container {
    justify-content: center;
    padding-top: 5rem;
    box-sizing: border-box;
  }

  .slider-container {
    width: 100%;
  }

  .slider-title {
    font-size: 2.35rem;
    line-height: 1.14;
  }

  .slider-location {
    margin-bottom: 1rem;
    font-size: 0.68rem;
  }

  .slider-location::before {
    width: 34px;
  }

  .slider-actions {
    display: flex;
    gap: 0.4rem;
    margin-top: 1.35rem;
  }

  .slider-button {
    width: calc((100% - 0.4rem) / 2);
    min-height: 56px;
    margin-top: 0;
    margin-right: 0;
    padding: 0 0.35rem;
    font-size: clamp(0.74rem, 2.75vw, 0.82rem);
    white-space: nowrap;
  }

  .slider-button.secondary-button {
    margin-right: 0;
  }

  .slider-button i {
    margin-left: 0.45rem;
  }
}

@media (max-width: 379.98px) {
  .slider-title {
    font-size: 2.05rem;
  }
}

.swiper-slide-active .slider-sub-title {
  -webkit-animation: fadeInDown 1.5s;
  animation: fadeInDown 1.5s;
}

.swiper-slide-active .slider-location {
  -webkit-animation: fadeInDown 1.5s;
  animation: fadeInDown 1.5s;
}

.swiper-slide-active .slider-title {
  -webkit-animation: fadeInUp 1.5s;
  animation: fadeInUp 1.5s;
}

.swiper-slide-active .slider-desc {
  -webkit-animation: fadeInUp 2s;
  animation: fadeInUp 2s;
}
.swiper-slide-active .slider-button {
  -webkit-animation: fadeInDown 1.5s;
  animation: fadeInDown 1.5s;
}

.shipyard-stats-section {
  position: relative;
  z-index: 3;
  margin-top: -64px;
  margin-bottom: -8px;
  pointer-events: none;
}

.shipyard-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1010px);
  min-height: 144px;
  margin: 0 auto;
  background: var(--color-primary-dark);
  box-shadow: 0 28px 52px rgba(10, 25, 47, 0.18);
  pointer-events: auto;
}

.shipyard-stat-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  padding: 1.65rem 1.75rem 1.45rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
}

.shipyard-stat-item:hover {
  background: var(--color-primary-base);
}

.shipyard-stat-item:last-child {
  border-right: 0;
}

.shipyard-stat-item i {
  display: flex;
  align-items: center;
  height: 1.75rem;
  margin-bottom: 0.9rem;
  color: var(--color-primary-light);
  font-size: 1.25rem;
  line-height: 1;
}

.shipyard-stat-item svg {
  display: flex;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.9rem;
  color: var(--color-primary-light);
}

.shipyard-stat-item strong {
  display: block;
  min-height: 2.25rem;
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.shipyard-stat-item span {
  display: block;
  color: rgba(229, 237, 248, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.14em;
}

@media (max-width: 991.98px) {
  .shipyard-stats-section {
    margin-top: -32px;
    margin-bottom: 24px;
  }

  .shipyard-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 720px);
  }

  .shipyard-stat-item:nth-child(2) {
    border-right: 0;
  }

  .shipyard-stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 575.98px) {
  .shipyard-stats-section {
    margin-top: -28px;
    margin-bottom: 40px;
  }

  .shipyard-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .shipyard-stat-item {
    padding: 1.1rem 0.75rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .shipyard-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .shipyard-stat-item:nth-child(n + 3) {
    border-bottom: 0;
  }

  .shipyard-stat-item i {
    height: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: 1rem;
  }

  .shipyard-stat-item strong {
    min-height: 1.65rem;
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
  }

  .shipyard-stat-item span {
    font-size: 0.62rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }
}

/*.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/

.slider-area video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* ========== ≥768px (tablet and up) ========== */
@media (min-width: 768px) {
  .slider-area .swiper-container {
    height: 80vh;
  }
}

/* ========== ≥1024px (desktop and up) ========== */
@media (min-width: 1024px) {
  .slider-area .swiper-container {
    height: 80vh;
  }
}

/* ========== ≥1440px (large screens) ========== */
@media (min-width: 1440px) {
  .slider-area .swiper-container {
    height: 90vh;
  }
}

/* ========== ≥1920px (ultra-wide) ========== */
@media (min-width: 1920px) {
  .slider-area .swiper-container {
    height: 100vh;
  }
}
