.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 240px;
  border-bottom: 5px solid #5EAFBA;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.btn-custom {
  background-color: #ff6b3d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-custom:hover {
  background-color: #ff5222;
}

.background-map {
  position: relative;
  z-index: -1;
  opacity: 0.1;
}

/* Swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
color: #fff;
background-color: #ff6b3d;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 10;
} 

.swiper-button-prev:hover,
.swiper-button-next:hover {
background-color: #ff6b3d;
color: white;
}

.swiper-button-prev {
left: 3px; /* Adjust positioning */
}

.swiper-button-next {
right: 3px; /* Adjust positioning */
}

.swiper {
width: 100%;
height: 100%;
}

.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
}

.swiper-button-next:after, .swiper-button-prev:after {
font-family: swiper-icons;
/* font-size: var(--swiper-navigation-size); */
text-transform: none !important;
letter-spacing: 0;
font-variant: initial;
line-height: 1;
font-size: 13px;
}


.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #ff6b3d; /* Arrow turns orange */
  background-color: #fff; /* Background changes to white */
  border: 2px solid #ff6b3d; /* Orange outline */
}

.container {
  position: relative;
  overflow: visible; /* Allow buttons to overflow */
}

.swiper-button-prev {
  margin-top: 30px;
  left: -30px; /* Adjust to desired position */
  z-index: 20; /* Ensure it's on top */
  transform: translateX(-10%);
}

.swiper-button-next {
  margin-top: 30px;
  right: -30px;
  z-index: 20;
  transform: translateX(10%);
}

.swiper-slide .card {
  position: relative !important; /* Ensures your CSS takes precedence */
}

.swiper-container {
  width: 100%; /* Full width */
  overflow: hidden; /* Hide excess slides */
}
