/* Import Base styles */
@import url(global.css);
@import url(header.css);
@import url(footer.css);


/*------------- Breadcrumb  -------*/

.breadcrumb-page {
    /* padding-top: 190px; */
    padding: 0 0 51px;
}


.breadcrumb-page .img_overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 0;
}

.breadcrumb-page .img_overlay img {
 width: 100%;
 object-fit: cover;
 /* object-position: center top; */
}


.breadcrumb-page .caption img {
    position: relative;
    max-width: 786px;
    margin: 0 auto;
    height: 100%;
    border-radius: 10px;
    max-height: 475px;
}

.caption {
    padding-top: 206px;
}

.breadcrumb-page .caption h2 {
    text-align: center;
    background: rgb(180 180 180 / 80%);
    max-width: 625px;
    margin: -45px auto 0;
    height: 94px;
    line-height: 90px;
    display: block;
    font-weight: bold;
    font-size: 36px;
    border-radius: 10px;
    position: relative;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: 40px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.gallery .container {
    max-width: 100%;
    padding: 0 80px; /* space for arrows on sides */
}

.gallery_slider {
    position: relative;
    overflow: visible !important; /* let side slides peek */
    padding: 20px 0 30px;
}

/* ---- Slide item ---- */
.gallery_slider .swiper-slide.item {
    width: 269px !important;
    height: 338px;
    border-radius: 31px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery_slider .swiper-slide.item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.gallery_slider .swiper-slide.item a img,
.gallery_slider .swiper-slide.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 31px;
}

.gallery_slider .swiper-slide.item a:hover img {
    transform: scale(1.05);
}

/* ---- Custom Navigation Arrows ---- */
.gallery_prev,
.gallery_next {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.gallery_prev {
    left: 16px;
}

.gallery_next {
    right: 16px;
}

.gallery_prev:hover,
.gallery_next:hover {
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.25);
    transform: translateY(-50%) scale(1.08);
}

/* Hide default Swiper arrows â€” use SVG images instead */
.gallery_prev::after,
.gallery_next::after {
    display: none !important;
}

.gallery_prev::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url('../images/arrow-left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.gallery_next::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url('../images/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.gallery_slider .swiper-wrapper {
    transition-timing-function: linear !important;
    will-change: transform;
}
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
    .gallery .container {
        padding: 0 60px;
    }
}

@media (max-width: 992px) {
    .gallery .container {
        padding: 0 50px;
    }

    .gallery_slider .swiper-slide.item {
        width: 220px !important;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .gallery .container {
        padding: 0 40px;
    }

    .gallery_slider .swiper-slide.item {
        width: 180px !important;
        height: 230px;
        border-radius: 20px;
    }

    .gallery_slider .swiper-slide.item a img,
    .gallery_slider .swiper-slide.item img {
        border-radius: 20px;
    }

    .gallery_prev,
    .gallery_next {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .gallery .container {
        padding: 0 32px;
    }

    .gallery_slider .swiper-slide.item {
        width: 200px !important;
        height: 250px;
    }
}