.swiper-wrapper {
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

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

.overlay {
    position: absolute;
    left: 10%;
    /* Shifted to the right */
    top: 0;
    height: 100%;
    width: 40%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    z-index: 10;
}

.overlay .btn-start-outline {
    width: fit-content;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: 0.4s;
    margin-top: 30px;
    border: 2px solid white;
    transition: background-color 0.5s ease;
    color: white;

}

.overlay .btn-start-outline:hover {
    background: rgba(0, 128, 0, 0.541);
    /* Hover effect */
}

.overlay p {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.overlay h2 {
    font-size: 2rem;
    margin: 10px 0 0 0;
    color: #ffffff;
    font-weight: bold;
    align-items: center;
    position: relative;
}

.overlay h2::before {
    content: "";
    width: 5px;
    height: 100%;
    background: green;
    margin-right: 10px;
    position: absolute;
    left: -15px;
    /* Line beside the text */
    top: 0;
}

@media (max-width: 768px) {
    .overlay {
    width: 80%;
    }

    .swiper-button-next,
    .swiper-button-prev {
    width: 40px;
    height: 40px;
    /* Reduced size on smaller screens */
    padding: 5px;
    /* Adjust padding for smaller buttons */
    }
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(0, 128, 0, 0.555);
    border-radius: 50%;
    justify-content: center;
    color: #fffcfc;
    padding: 10px;
}

/* collapse style start */
.accordion-button:focus {
    box-shadow: none; /* Remove focus shadow */
  }
  
  .accordion-button:not(.collapsed) {
    color: #28a745; /* Green color for active text */
    background-color: rgba(40, 167, 69, 0.1); /* Light green background */
  }
  /* collapse style ends */

  /*---------------------
  Logo Carousel
-----------------------*/

  .logo-carousel .lc-slider .lc-item {
    display: table;
    height: 97px;
  }

  .logo-carousel .lc-slider .lc-item .lc-item-inner {
    display: table-cell;
    vertical-align: middle;
  }