.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 50px; /* Space for the floating arrows */
}

.cards-wrapper {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
  padding-block: 1rem;
  justify-content: flex-start;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  padding: 10px;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.1);
}

.arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.cta-button {
  width: fit-content;
}

.cta-button a {
  background-color: #FF6A00;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
  display: inline-block;
}

.cta-button a:hover {
  background-color: #e55a00;
}

.why-choose-us-card {
  width: clamp(14.375rem, 13.071rem + 6.522vw, 19rem);
  padding: 1.875rem 1.5625rem; 
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  gap: 1rem;
}

.wcu-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  align-items: center;
  width: fit-content;
  text-align: center;
}

.why-choose-us-card .icon {
  width: 60px;
}

@media (max-width: 600px) {
  .carousel-container {
    padding: 0 40px;
  }
  .card {
    min-width: 100%;
  }
}

@media (min-width: 1120px) {
  .cards-wrapper {
    justify-content: center;
  }
}