.ten{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
}

.ten .ten_one{
    width: 95%;
    height: 95%;
    margin: 10px;
    background-color: aquamarine;
}

.ten h7{
  color: orange;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 30px;
}

h8{
  color: orange;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}




/* General Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    overflow-x: hidden;
  } */
  
  /* Slider Container */
  .ten-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #000;
  }
  
  /* Slides */
  .ten-new-slide {
    position: absolute;
    top: 0;
    left: 100%; /* Hidden off-screen */
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 1s ease-in-out;
    z-index: 1;
    opacity: 0;
  transform: translateY(50px); /* Slide-in effect on scroll */
  transition: all 1s ease-in-out;
  }
  
  .ten-new-slide.active {
    left: 0;
    opacity: 1;
    z-index: 10;
    opacity: 1;
    transform: translateY(0);
  }
  
  .ten-new-slide.previous {
    left: -100%;
    opacity: 0;
  }
  
  .ten-slide-content {
    text-align: center;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  .ten-new-slide.active .ten-slide-content {
    opacity: 1;
  }
  
  .ten-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    color: #ff6a00; /* Bright orange title */
  }
  
  .ten-details {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  }
  
  /* Navigation Buttons */
  .ten-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 15;
  }
  
  .ten-new-prev,
  .ten-new-next {
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    padding: 15px 20px;
    margin: 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    outline: none;
  }
  
  .ten-new-prev:hover,
  .ten-new-next:hover {
    background-color: #ff6a00;
  }
  
  /* Dots */
  .ten-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 15;
  }
  
  .ten-new-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .ten-new-dot.active {
    background-color: #ff6a00; /* Highlight active dot */
    transform: scale(1.2);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /* Responsive Design */
  @media only screen and (max-width: 700px)and (min-width: 500px) {
    .ten-title {
      font-size: 20px;
    }
  
    .ten-details {
      font-size: 12px;
    }
  
    .ten-new-prev,
    .ten-new-next {
      padding: 10px 15px;
      font-size: 16px;
    }
  }
  



  @media only screen and (max-width: 500px)and (min-width: 0px){

    .ten-title {
      font-size: 18px;
    }
  
    .ten-details {
      font-size: 12px;
    }
  
    .ten-new-prev,
    .ten-new-next {
      padding: 10px 15px;
      font-size: 16px;
    }

    .ten h7{
      color: orange;
      margin-top: 50px;
      margin-bottom: 30px;
      font-size: 20px;
    }
    
    h8{
      color: orange;
      margin-top: 50px;
      margin-bottom: 30px;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    


  }







  
