/* logo slider */
.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 20s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(-20%);
  }
}

.slider-items img {
  width: 12%;
  margin: 20px;
}
/* end */

#owl-demo .item {
  padding: 10px 5px;
  height: 510px;
  max-height: max-content;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 2rem;
}
.owl-carousel .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.owl-carousel .card-body {
  min-height: 200px; /* adjust based on your design */
}
/* owl 2 */
.carousel-container {
  position: relative; /* Set relative positioning for the parent container */
  overflow: hidden; /* Hides overflowing items */
}

#handle.owl-carousel .item {
  margin-bottom: 10px;
  color: #fff;
  border: 1px solid #A0C1EC;
  background: #ffffff45;
  border-radius: 10px;
  padding: 20px;
  margin-right: 1px;
  height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.owl-item .item:hover{
 background: #ffffff65 !important;
}
#handle.owl-carousel .item h4 {
  margin: 0;
  font-size: 1.2rem;
}

#handle.owl-carousel .item p {
  margin-top: 10px;
  font-size: 0.9rem;
}
.custom-nav-handle {
  display: flex;
  gap: 10px;
  z-index: 10;
  justify-content: flex-end;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.custom-nav-handle .owl-prev, .custom-nav-handle .owl-next {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.custom-nav-handle .owl-prev i,
.custom-nav-handle .owl-next i {
  font-size: 16px;
}

.custom-nav-handle .owl-prev:hover, .custom-nav-handle .owl-next:hover {
  background-color: #ffffffed !important;
  color: var(--secondary-color) !important;
}
/*  */
.w-10{
  width: 13% !important;
}

.pg-card-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.pg-card-btn:hover {
  background: #f28500;
  color: #fff;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 768px) {
  .pg-card-btn {
    width: 32px;
    height: 32px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }
}