.template-carousel-container {
    text-align: center;
    margin-top: 20px;
}


/* Pagination bar (gray background) */
.swiper-pagination {
    position: relative;
    width: 440px !important;
    height: 6px;
    background-color: #a8eef9;
    margin: 20px auto 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .swiper-pagination {
        width: 350px !important;
    }
}

.swiper-pagination-bullet {
    height: 100%;
    background-color: transparent;
    border-radius: 0;
    margin: 0 !important;
    transition: background-color 0.3s ease;
    flex: 1 1 auto;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background-color: #0da9cd;
}

.carousel-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.custom-next{
    background: url('../images/next_btn.png') no-repeat center;
    background-size: contain;
    height: 64px;
    width: 64px;
    border: none;
  cursor: pointer;
  box-shadow: 0px 32px 48px -12px rgba(18, 108, 140, 0.2);
}

.custom-prev{
    background: url('../images/prev_btn.png') no-repeat center;
    background-size: contain;
    height: 64px;
    width: 64px;
    border: none;
  cursor: pointer;
  box-shadow: 0px 32px 48px -12px rgba(18, 108, 140, 0.2);
}
