/* --- GLOBAL STYLES --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #f8f9fa;
}

.transition-all {
  transition: all 0.3s ease-in-out;
}

.tab-active {
  border-bottom-color: #3b82f6;
  color: #3b82f6;
  font-weight: 600;
}

/* --- SWIPER SLIDER STYLES --- */
.swiper-container {
  padding-bottom: 40px;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.swiper-slide .tour-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-button-next,
.swiper-button-prev {
  color: #3b82f6;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background-color: #3b82f6;
}

.active-lang {
  font-weight: bold;
  color: blue;
  /* Or any other styling you prefer for the active link */
  background-color: #e0f2fe;
  /* Light blue background for active */
}