.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
   background-color: #b3934a !important;
   color: #fff !important;
}
.nav-link{
   color: #b3934a !important
}

/* client-card */
.client-card {
   border: none;
   border-radius: 15px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.client-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.client-card .card-title {
   color: #333;
   font-weight: 600;
   margin-bottom: 10px;
}
.client-card .card-text {
   color: #666;
   font-size: 0.9rem;
   margin-bottom: 15px;
}

/* custom-slider */
.custom-slider {
   margin-bottom: 3rem;
   /* border-radius: 5px; */
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.custom-slider .carousel-item {
   height: 450px;
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
   position: relative;
   overflow: hidden;
}
.custom-slider .carousel-item::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(
      to top,
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.3),
      rgba(0,0,0,0.1)
   );
   z-index: 1;
}
.slider-bg,
.slider-video {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
}
.custom-slider .carousel-caption {
   z-index: 2;
   text-align: center;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   right: auto;
   bottom: auto;
   width: 80%;
   max-width: 800px;
}
.custom-slider .carousel-caption h2 {
   font-size: 5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
   animation: fadeInUp 0.8s ease;
}
.custom-slider .carousel-caption p {
   font-size: 1.3rem;
   margin-bottom: 1.5rem;
   text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
   animation: fadeInUp 0.8s ease 0.1s both;
}
.custom-slider .carousel-caption .btn-slider {
   background-color: #b3934a;
   color: white;
   padding: 12px 35px;
   border-radius: 50px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-block;
   animation: fadeInUp 0.8s ease 0.2s both;
   border: none;
   font-size: 1rem;
}
.custom-slider .carousel-caption .btn-slider:hover {
   background-color: #9a7b3a;
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(0,0,0,0.2);
   color: white;
}
.custom-slider .carousel-control-prev,
.custom-slider .carousel-control-next {
   width: 5%;
   opacity: 0;
   transition: opacity 0.3s ease;
}
.custom-slider:hover .carousel-control-prev,
.custom-slider:hover .carousel-control-next {
   opacity: 1;
}
.custom-slider .carousel-control-prev-icon,
.custom-slider .carousel-control-next-icon {
   background-color: rgba(179, 147, 74, 0.8);
   border-radius: 50%;
   padding: 20px;
   background-size: 50%;
   width: 3rem !important;
   height: 3rem !important;
}
.custom-slider .carousel-indicators {
   bottom: 20px;
}
.custom-slider .carousel-indicators button {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   margin: 0 6px;
   background-color: #b3934a;
   opacity: 0.5;
}
.custom-slider .carousel-indicators button.active {
   opacity: 1;
   background-color: #b3934a;
   transform: scale(1.2);
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@media (max-width: 768px) {
   .custom-slider .carousel-item {
      height: 350px;
   }
   .custom-slider .carousel-caption h2 {
      font-size: 3rem;
   }
   .custom-slider .carousel-caption p {
      font-size: 1rem;
   }
   .custom-slider .carousel-caption .btn-slider {
      padding: 8px 25px;
      font-size: 0.9rem;
   }
}

@media (max-width: 576px) {
   .custom-slider .carousel-item {
      height: 280px;
   }
   .custom-slider .carousel-caption h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
   }
   .custom-slider .carousel-caption p {
      font-size: 0.8rem;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
   }
   .custom-slider .carousel-caption .btn-slider {
      padding: 6px 18px;
      font-size: 0.8rem;
   }
   .custom-slider .carousel-control-prev-icon,
   .custom-slider .carousel-control-next-icon {
      padding: 15px;
      width: 2rem !important;
      height: 2rem !important;
   }
   .carousel-control-prev{
      left: 15px !important;
   }
   .carousel-control-next{
      right: 15px !important;
   }
}