.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide {
    flex: 0 0 100vw;
    box-sizing: border-box;
    position: relative;
    height: 60vh; /* Adjusted slide height */
  }
  
  .carousel-slide img {
    width: 100%;
    height: auto;
    filter: brightness(0.4); /* Added a black overlay */
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0)); /* Added linear gradient */
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 20px; /* Adjusted left spacing */
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
  }
  
  h6 {
    font-family: "Satoshi";
    font-size: 42px;
    font-weight: 600;
    line-height: 1em;
    padding-left: 10%;
    width: 135vh;
    line-height:normal;
  }
  
  p2 {
    font-family: "Satoshi";
    font-size: 24px;
    line-height: 1.5em;
  }
  
  .cta-button {
    font-weight: 700;
    font-size: 18px;
    line-height: 60px;
    padding: 0px 38px;
    margin-left: 10%;
    text-align: center;
    border-radius: 50px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 101, 0);
    transition: all 0.3s ease-in-out 0s;
  }
  
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    color: #fff;
  }

  .prev,
  .next {
    position: absolute;
    top: 50%;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    color: #fff;
    transition: transform 0.3s ease, border-radius 0.3s ease; /* Added border-radius transition */
  }
  
  .prev:active,
  .next:active {
    transform: scale(0.9); /* Added scaling effect during click */
    border-radius: 50%; /* Added circular interaction */
  }

  @media only screen and (max-width: 560px) {
    .prev,
    .next {
      position: absolute;
      top: 50%;
      font-size: 10px;
      background: none;
      border: none;
      cursor: pointer;
      outline: none;
      color: #fff;
      transition: transform 0.3s ease, border-radius 0.3s ease; /* Added border-radius transition */
    }

    .carousel-slide {
      flex: 0 0 100vw;
      box-sizing: border-box;
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    h6 {
      font-family: "Satoshi";
      font-size: 15px;
      font-weight: 600;
      line-height:normal;
      width: 100%;
      text-align: start;
    }

    .carousel-slide img {
      width: 100%;
      height: auto;
      overflow: hidden;
      filter: brightness(0.4); /* Added a black overlay */
      background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0)); /* Added linear gradient */
    }

    .content {
      width: 80%;
      text-align: start;
      padding: 0 20px;
    }
  }
  
  .prev {
    left: 40px;
  }
  
  .next {
    right: 40px;
  }
  



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

/* Popup carousel */

.carousel-control-prev .sr-only,
.carousel-control-next .sr-only {
  display: none;
  
}


.carousel-control-prev, .carousel-control-next {
  width: 40px; 
  height: 40px; 
  background-color: rgba(0, 0, 0, 0.5); 
  border-radius: 50%; 
  display: flex; 
  justify-content: center; 
  align-items: center;

  position: absolute; 
  top: 45%;
 


  
 
  
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px; 
  height: 20px;
}



.modal-content {
  background-color: #fff;
  border-radius: 10px; 
}


