/* ===============================
   Explore Nepal Section (WHITE)
================================ */
#explore-nepal-section {
    position: relative;
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

/* subtle floating light effect (white-safe) */
#explore-nepal-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(59,130,246,0.08), transparent 45%),
            radial-gradient(circle at 80% 30%, rgba(236,72,153,0.06), transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(34,197,94,0.06), transparent 45%);
    animation: floatLight 16s linear infinite;
    z-index: 0;
}

@keyframes floatLight {
    0%   { transform: translateY(0) }
    50%  { transform: translateY(-20px) }
    100% { transform: translateY(0) }
}

/* title */
/*#explore-nepal-section .section-title {*/
/*    color: #0f172a;*/
/*    font-size: clamp(1.8rem, 3vw, 2.6rem);*/
/*    font-weight: 700;*/
/*    letter-spacing: 0.4px;*/
/*}*/

/* inner wrapper */
#explore-nepal-section .section-inner {
    position: relative;
    z-index: 1;
}

/* ===============================
   Slide / Card Design
================================ */
#explore-nepal-section .destination-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid rgba(15,23,42,0.08);
    transition: transform 0.6s cubic-bezier(.4,0,.2,1),
    box-shadow 0.6s ease;
}

/* image */
#explore-nepal-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

/* soft overlay for readability */
#explore-nepal-section .destination-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(255,255,255,0.75),
            rgba(255,255,255,0.15),
            transparent
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* hover magic */
#explore-nepal-section .destination-wrapper:hover {
    transform: translateY(-12px);
    box-shadow:
            0 30px 60px rgba(15,23,42,0.18),
            0 0 0 1px rgba(15,23,42,0.05);
}

#explore-nepal-section .destination-wrapper:hover img {
    transform: scale(1.12);
    filter: saturate(1.25) contrast(1.1);
}

#explore-nepal-section .destination-wrapper:hover::after {
    opacity: 1;
}

/* ===============================
   Swiper Controls
================================ */
#explore-nepal-section .swiper-pagination2 {
    margin-top: 24px;
}

#explore-nepal-section .swiper-pagination-bullet {
    background: rgba(15,23,42,0.25);
    opacity: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

#explore-nepal-section .swiper-pagination-bullet-active {
    background: #2563eb;
    transform: scale(1.3);
}

/* arrows */
#explore-nepal-section .swiper-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    transition: all 0.3s ease;
}

#explore-nepal-section .swiper-btn:hover {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(37,99,235,0.35);
}

/* ===============================
   Mobile tweaks
================================ */
@media (max-width: 640px) {
    #explore-nepal-section img {
        height: 220px;
    }

    #explore-nepal-section .swiper-btn {
        width: 40px;
        height: 40px;
    }
}
/*OUR GALLLERIES*/

/* ==================================
   Our Galleries Section (WHITE)
================================== */
#our-galleries-section {
    position: relative;
    padding: 0 60px 60px;
    background: #ffffff;
    overflow: hidden;
}

/* soft decorative background */
#our-galleries-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 15% 20%, rgba(37,99,235,0.06), transparent 40%),
            radial-gradient(circle at 85% 25%, rgba(16,185,129,0.06), transparent 45%),
            radial-gradient(circle at 50% 85%, rgba(236,72,153,0.05), transparent 45%);
    z-index: 0;
}

/* title */
/*#our-galleries-section .section-title {*/
/*    color: #0f172a;*/
/*    font-size: clamp(1.8rem, 3vw, 2.5rem);*/
/*    font-weight: 700;*/
/*    letter-spacing: 0.3px;*/
/*}*/

/* inner wrapper */
#our-galleries-section .section-inner {
    position: relative;
    z-index: 1;
}

/* ==================================
   Gallery Card
================================== */
#our-galleries-section .destination-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* image */
#our-galleries-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

/* light overlay */
#our-galleries-section .destination-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0.25),
            rgba(255,255,255,0.6)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* hover interaction */
#our-galleries-section .destination-wrapper:hover {
    transform: translateY(-10px);
    box-shadow:
            0 25px 50px rgba(15,23,42,0.18),
            0 0 0 1px rgba(15,23,42,0.05);
}

#our-galleries-section .destination-wrapper:hover img {
    transform: scale(1.1);
    filter: saturate(1.2) contrast(1.1);
}

#our-galleries-section .destination-wrapper:hover::after {
    opacity: 1;
}

/* ==================================
   Swiper Pagination & Arrows
================================== */
#our-galleries-section .swiper-pagination2 {
    margin-top: 24px;
}

#our-galleries-section .swiper-pagination-bullet {
    background: rgba(15,23,42,0.25);
    opacity: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

#our-galleries-section .swiper-pagination-bullet-active {
    background: #2563eb;
    transform: scale(1.3);
}

/* arrows */
#our-galleries-section .swiper-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    transition: all 0.3s ease;
}

#our-galleries-section .swiper-btn:hover {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(37,99,235,0.35);
}

/* ==================================
   Mobile tweaks
================================== */
@media (max-width: 640px) {
    #our-galleries-section img {
        height: 220px;
    }

    #our-galleries-section .swiper-btn {
        width: 40px;
        height: 40px;
    }
}
/* Banner background zoom animation */
#operator-banner, #get-our-app-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Smooth zoom animation */
    animation: bgZoom 20s ease-in-out infinite;

    /* Prevent shaking / overflow issues */
    will-change: background-size;
}

/* Keyframes */
@keyframes bgZoom {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 110%;
    }
    100% {
        background-size: 100%;
    }
}

