.section-6 {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}

.section-6  .one-img{
    position: relative;
    left: 10rem;
    top: 7rem;
    width: 135px;
    height: 154px;
    object-fit: contain;
    transition: all 0.5s ease;
    z-index: -1;
}

.kits-heading {
    font-size: 3rem;
    color: #003E65; 
    font-family: "monserrat", sans-serif;
    transition: all 0.5s ease;
    text-align: center;
    transition: all 0.5s ease;
  }
  
  .kits-subheading {
    max-width: 498px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #000;
    margin-bottom: 30px;
    font-family: "monserrat", sans-serif;
    transition: all 0.5s ease;
  }

/* 320px */
@media screen and (min-width: 320px) {
    .section-6 {
        margin: 30px auto;
    }

    .section-6  .one-img{
        left: 0;
        top: 5rem;
    }

    .kits-heading {
        font-size: 2rem;
    }
    .kits-subheading {
        font-size: 1.2rem;
    }
}
/* 375px */
@media screen and (min-width: 375px) {
    .kits-heading {
        font-size: 2.3rem;
    }
    .kits-subheading {
        font-size: 1.3rem;
    }
}
/* 425px */
@media screen and (min-width: 425px) {
    .kits-heading {
        font-size: 2.5rem;
    }
    .kits-subheading {
        font-size: 1.3rem;
    }
}
/* 768px */
@media screen and (min-width: 768px) {
    .section-6 {
        margin: 0px auto;
    }

    .section-6  .one-img{
        left: 1rem;
        top: 7rem;
    }

    .kits-heading {
        font-size: 3rem;
    }
    .kits-subheading {
        font-size: 1.5rem;
    }
}
/* 1024px */
@media screen and (min-width: 1024px) {
    .section-6  .one-img{
        left: 4rem;
        top: 7rem;
    }
}
/* 1440px */
@media screen and (min-width: 1440px) {
    .section-6  .one-img{
        left: 8rem;
        top: 7rem;
    }
}

/* Slider */
.section-6 .slider-container {
    padding: 20px;
    transition: all 0.5s ease;
}
  
.section-6 .slider-container .slider {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
  }
  
.section-6 .slider-container .card {
    flex: 0 0 29%;
    width: 30px;
    height: 406px;
    background: #fff;
    border: 1px solid #FF6F00;
    border-radius: 20px;
    padding: 10px 20px;
}
  
.section-6 .slider-container .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 13px;
}
  
.section-6 .slider-container .card h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}
  
  
.section-6 .slider-container .card h3{
    font-size: 1.1rem;
    margin-bottom: -7px;
    color: #000;
}

.section-6 .slider-container .card p {
    font-size: 1rem;
    color: #181818;
    margin-bottom: 15px;
  }
  
.section-6 .slider-container .card button {
    margin-top: 10px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
}
  
.section-6 .slider-container .card button:hover {
    background-color: #cc5200;
  }
  
.section-6 .slider-container button.prev,
.section-6 .slider-container button.next {
    position: absolute;
    width: 52px;
    height: 52px;
    font-size: 1rem;
    top: 70%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
.section-6 .slider-container button.prev {
    left: 10px;
  }
  
.section-6 .slider-container button.next {
    right: 10px;
  }

  /* Add styles for the dots */
.section-6 .dots-container {
    text-align: center;
    margin-top: 15px;
  }
  
.section-6 .dots-container .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
.section-6 .dots-container .dot.active {
    background-color: #ff6600;
  }
  
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .section-6 .slider-container .card {
      flex: 0 0 40%;
    }

    .section-6 .slider-container h1 {
        font-size: 2em;
    }

    .section-6 .slider-container .card  h3 {
        font-size: 1.3em;
    }

    .section-6 .slider-container .button {
        font-size: 0.9em;
    }

  }
  
  @media (max-width: 480px) {
    .section-6 .slider-container .card {
      flex: 0 0 80%;
    }

    .section-6 .slider-container .card h2 {
        font-size: 1.1rem;
    } 
    .section-6 .slider-container .card h3{
        font-size: 1rem;
    }
    .section-6 .slider-container .card p{
        font-size: 0.9rem;
    }
  }
  