:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
  --column-bg: #f0f3ff;
}

.main-section {
  padding: 10px 20px;
}

.section-title {
  color: var(--primary-blue);
  font-weight: 700;
  border-left: 5px solid var(--accent-red);
  padding-left: 10px;
  margin-bottom: 20px;
}

.card-custom {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* Swiper */
.swiper {
  padding-bottom: 40px;
}

/* Equal image size */
.swiper-slide {
  height: 220px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps ratio but fills */
  border-radius: 10px;
}

/* Navigation Buttons Styling */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Reduce arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-red);
}

/* Position slightly inside */
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}
.swiper-pagination-bullet-active {
  background: var(--accent-red);
}