.slider {
  position: relative;
  
}

.slider-wrapper {
  overflow: hidden;
  background-color: #eee;
}

.slider-items {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slider-transition-none {
  transition: none;
}

.slider-item {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
  will-change: transform;
}

/*-------------*/

.slider-content {
  position: absolute; 
  top: 0;        
  bottom: 0;     
  left: 0; 
  right: 0;
  background: linear-gradient(70deg, rgba(11, 66, 104, 0.6) 60%, rgba(11, 66, 104, 0.3) 60%);
  backdrop-filter: blur(1px);
  color: white; 
  padding: 0;    
  display: flex;
  align-items: center;
  z-index: 8000;
}

.slider-content-inner {

  max-width: 500px; 
  margin-left: 20vh; 
  padding: 30px 20px;
  width: auto;
}

.slider-content-inner h1 {
  font-size: 24px;
}

.slider-content-inner p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: #f8fafc;
}

.sliderbtn0 {
  display: inline-block; 
  margin-top: 10px; 
  padding: 12px 30px; 
  background: linear-gradient(135deg, #002138 0%, #003255 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white; 
  text-transform: uppercase; 
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 33, 56, 0.3);
 
}
.sliderbtn0::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.sliderbtn0:hover::before {
  left: 100%;
}


  @keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  
}

.sliderbtn0:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #003255 0%, #004472 100%);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 6px 25px rgba(0, 33, 56, 0.4);
  color: #60a5fa;
}

/*--------------*/


/* Buttons left/right */
.slider-btn {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 50px;
  color: #fff;
  text-align: center;
  background: rgb(0 0 0 / 20%);
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-btn-hide {
  display: none;
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

.slider-btn:hover,
.slider-btn:focus {
  color: #fff;
  text-decoration: none;
  background: rgb(0 0 0 / 30%);
  outline: 0;
}

.slider-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider-btn-prev::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.slider-btn-next::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* indicators */
.slider-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  margin: 0 15%;
  padding-left: 0;
  list-style: none;
}

.slider-indicator {
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 30px;
  height: 5px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgb(255 255 255 / 50%);
  background-clip: padding-box;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  cursor: pointer;
}

.slider-indicator-active {
  background-color: rgb(255 255 255 / 90%);
}

*,
    *::before,
    *::after {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: arial;
    }

    .container {
     max-width: 1100px;
     margin: 0px auto;
    }

    
    .slider-items {
      counter-reset: slide;
    }

    .slider-item {
      flex: 0 0 100%;
      max-width: 100%;
      counter-increment: slide;
      height: 60vh;
      position: relative;
    }

    .slider-item img
    {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .slider-item::before {
      position: absolute;
      top: 10px;
      right: 20px;
      color: #fff;
      font-style: italic;
      font-size: 32px;
      font-weight: bold;
      display: block;
    }

    .slider-item::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      
    }


  @media only screen and (max-width: 768px) {
  .slider-content-inner {
    margin-left: 30px;
    max-width: 350px;
    padding: 20px 15px;
  }
  
  .slider-content-inner h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .slider-content-inner h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .slider-content-inner p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .sliderbtn0 {
    padding: 10px 20px;
    font-size: 12px;
  }
}


    @media only screen and (max-width: 480px)
    {
  .slider-content-inner {
    margin-left: 20px;
    max-width: 280px;
    padding: 15px 10px;
  }
  
  .slider-content-inner h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .slider-content-inner h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .slider-content-inner p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .sliderbtn0 {
    padding: 8px 16px;
    font-size: 11px;
  }
}

    @media only screen and (min-width: 768px) and (max-width: 1023px)
    {
      .slider-item img
      {
        position: relative;
        max-width: 100%;
        object-fit: cover;
      }

      .slider-content-inner{
        margin-left: 30px;
      }

      .slider-content-inner p
      {
        font-size: 18px;
      }

    }