:root{
    --color1:#FF9800;
    --color2:#fff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner{
 
    background-image: url('../images/baner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    
}

.dot-banner {
    background-image: url('../images/dott\ \(1\).png');
    background-repeat: repeat;
    background-position-x: 0px;
    background-position-y: 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

a{
    text-decoration: none;
}

.banner-title h1 a span{
   
    letter-spacing: 1px;
    color: var(--color2);
    text-transform: capitalize;
    font-weight: 200;

}

.banner-title h1 a{
    font-size:2em ;
    color: var(--color1);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 6px;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;

 
}


/* Slider Container */
.slider {
    width: 100%;
    max-width: 600px;
    height: 400px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
  }
  
  /* Hide Radio Buttons */
  input[type="radio"] {
    display: none;
    /* position: absolute;
    top: 60%;
    left: 50%; */
  }
  
  /* Slides Wrapper */
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth transition */
  }
  
  /* Individual Slide */
  .slide {
      flex: 0 0 100%;
      font-size: 2rem;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 50px;

  }
  
  /* Automatic Sliding with Keyframes */
  @keyframes autoSlide {
    0%, 33.33% { transform: translateX(0); }
    33.34%, 66.66% { transform: translateX(-100%); }
    /* 66.67%, 100% { transform: translateX(-200%); } */
  }
  
  .slides {
    animation: autoSlide 9s infinite; /* Adjust duration as needed */
    color: #FFFFFF;
  }
  
  /* Manual Navigation */
  #slide1:checked ~ .slides { transform: translateX(0); animation: none; }
  #slide2:checked ~ .slides { transform: translateX(-100%); animation: none; }
  /* #slide3:checked ~ .slides { transform: translateX(-200%); animation: none; } */
  
  /* Navigation Dots */
  .navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-40%);
  }
  
  .navigation label {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0px;
  background:var(--color2);
}
  
  .slider-btn a{
      
      color: #FFFFFF;
      font-size: 1em;
      padding: .5em 1em;
      border: solid 2px #FF9800;
      text-decoration: none;
      border-radius: 30px;
      margin: 0;
      background: #FF9800;
      /* width: 160px; */
  }
  
  