/* quote carousle */
.quote-carousel-main>.carousel-quote {
  width: 100%;
  height: 380px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.quote-carousel-main>.carousel-quote:hover .controls {
  opacity: 1;
}
.quote-carousel-main>.carousel-quote .controls {
  opacity: 1;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 0;
  justify-content: center;
  width: 100%;
  z-index: 99999;
  transition: all ease 0.5s;
}
.quote-carousel-main>.carousel-quote .controls .control {
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 70px;
  border-radius: 24px;
  background: #FFFFFF1A;
  /* opacity: 0.5; */
  transition: ease 0.3s;
  cursor: pointer;
  opacity: 1;
  color: #fff;
}
.quote-carousel-main>.carousel-quote .controls .control:hover {
  opacity: 1;
}
.quote-carousel-main>.carousel-quote .slides {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  transition: 1s ease-in-out all;
}
.quote-carousel-main>.carousel-quote .slides .slide {
  min-width: 100%;
  min-height: 250px;
  height: auto;
}

/* explore our case studies crousel */
.carousel__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr max-content;
    grid-template-areas:
      "carousel carousel"
      "title nav";
    position: relative;
    width: 100%;
    height: max-content;
    gap: 2rem 0;
    align-items: center;
  }
  
  .carousel__header {
    grid-area: title;
    font-weight: 700;
    font-size: 2rem;
  }
  
  .carousel__wrapper .carousel {
    grid-area: carousel;
    position: relative;
    overflow-x: clip;
    height: 650px !important;
  }
  
  .carousel__item {
    position: absolute;
    padding: 20px;
    border-radius: 12px;
    /*   border: 1px solid #999; */
    background: transparent;
    top: 0;
    transition: all ease-in-out 800ms;
    display: grid;
    place-items: center;
  }
  .carousel__item__name {
    color: #fff;
    text-align: center;
  }
  
  .carousel__item > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0;
  }
 
  /* Caousel Nav */
  .carousel__nav {
    grid-area: nav;
    justify-self: end;
    display: flex;
    justify-content: center;
    gap: 0 1rem;
    margin-right: 200px;
    margin-top: 60px;
  }
  /* .page-wrapper.sidebar-open .carousel__nav {
    margin-top: 110px;
  } */
   .carousel_item__card{
    background: #fff;
    border-radius: 16px;
    height:710px;
   }
  .carousel__nav__item {
    padding: 0.375rem 22px;
    border: 1px solid #eee;
    border-radius: 24px;
    background-color: #e5e5e5;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
  }
  
  .carousel__nav__item:hover {
    background-color: #cacacb;
  }
  .carousel_item_card-img{
    position: relative;
  }
  .carousel_item_card-img img{
    width: 100%;
    object-fit: cover;
    height: 380px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .case-img img{
    width: 100%;
    object-fit: cover;
    height: 380px;
    border-radius: 16px;
  }
  .carousel__title{
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00000080;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
  }
  .explore-our-case-studies-carousel {
    margin-left: 80px;
    margin-top: 20px;
}
.carousel_item_card-content {
    padding: 0px 20px;
}
.carousel_item_card-content h3{
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    color: #374151;
    margin-top: 20px;
}
.carousel_item_card-content p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #374151;
    margin-top: 15px;
}
/***********/
/* Carousel indicator container */
.carousel__indicators {
  display: flex;
  justify-content: start;
  gap: 8px;
  margin-top: 70px;
  padding-left:20px;
}

/* Individual indicator dots */
.carousel__indicator {
  width: 20px;
  height: 20px;
  background-color: #ccc; /* Inactive color */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Active indicator dot */
.carousel__indicator--active {
  background-color: #333; /* Active color */
  transform: scale(1.2); /* Slightly larger to highlight */
}

.carousel__item {
  transition: transform 0.5s ease-in-out;
}
