@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --primary-color: #2e3485;
    --secondary-color: #1d2051;
    --primary-font: "Lora", serif;
    --white: #fff;
    --black: #000000;
    --hover-color: #8086f8;
}

body {
    width: 100%;
    overflow-x: hidden;
    top: 0 !important;
    font-family: "Poppins", sans-serif;
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(../images/pattern.jpg);
    background-size: 700px;
    background-repeat: repeat;
    background-position: center;


}

.ml-auto {
    margin-left: auto !important;

}

h1,
h2,
h3,
h4 {
    font-family: var(--primary-font);
}

.navbar {

    position: fixed;
    z-index: 5;
    width: 100%;
    padding: 5px 0;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out !important;
}

.nav-link {
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    transition: .5s ease;
    transform: scale(1);

}

.nav-item .nav-link:hover {
    color: var(--hover-color);
    transform: scale(1.15);
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    z-index: 8;
}

.navbar.scrolled .nav-link {
    color: #000;
}

a {
    text-decoration: none;
}

@media (max-width: 991px) {
    .navbar-toggler {
        border: 0;
        color: var(--white);
        fill: var(--primary-color);

    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar {
        background: var(--white);
    }

    .navbar-fixed .nav-link,
    .nav-link {
        color: var(--white);
    }

    .navbar-nav {
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 0px;
        height: 100%;
        position: fixed !important;
        top: 0;
        right: 0;
        background: #000 !important;
        opacity: 0;
        transition: all .1s ease-in-out;
        z-index: 5;
    }

    .navbar-fixed .nav-link,
    .nav-link {
        color: var(--white);
    }

    .navbar {
        background: #ffffff;
        padding: 5px 0 !important;
        width: 100%;
        position: fixed;
    }

    .collapse.show .navbar-nav {
        opacity: 1;
        width: 100%;

    }

    .navbar-toggler,
    .navbar-toggler:hover,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        padding: 0.5rem 1rem;
        border: none !important;
        color: transparent;
        background: transparent;
    }

    .navbar-toggler-icon {

        z-index: 10;
        position: absolute;
        top: 20px;
        right: 20px;
    }


    .navbar-nav .nav-item {
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        width: 100%;
        margin-bottom: 10px;
        background-color: #00000070;

    }

    .navbar-nav .nav-item:last-child {

        border-bottom: none
    }

    .navbar-collapse.show .close-icon {
        display: block;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0 1rem;
        position: absolute;
        z-index: 5;
    }

    .navbar-toggler .navbar-toggler-icon {
        transition: .5s;
    }

    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
        background-image: url('../images/menu-bar/nav1.png') !important;
        padding: 0;

    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transition: .5s;
        background-image: url('../images/menu-bar/nav2.png') !important;

    }

    .navbar.scrolled {
        background: rgb(255, 255, 255);
        padding: 0;
        padding: 5px 0;
    }

    .navbar.scrolled .nav-link {
        color: #fff;
    }

    .navbar.scrolled .logo-header {
        filter: brightness(1) invert(0) !important;

    }

    .navbar.scrolled .nav-link {
        color: #fff;
    }

    .navbar .logo-header {
        filter: brightness(1) invert(0) !important;
        /* Makes the logo white */
    }

    .navbar-nav {
        background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/pattern.jpg) !important;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .navbar-fixed .nav-link,
    .nav-link {
        color: #ffffff;
    }

    .logo-header {
        width: 100px !important;
    }

}

.logo-header {
    width: 120px;
}

.navbar .logo-header {
    filter: brightness(0) invert(1);

}

.navbar.scrolled .logo-header {
    filter: brightness(1) invert(0);

}


.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-content {
    position: absolute;
    bottom: 50px;
    /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 80px;
}


@media (max-width: 991px) {

    .hero-content p {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
        width: 100%;
    }

    .hero-content {
        width: 100% !important;
    }
}

.btn-fill {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    transition: .5s;
}

.btn-fill:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

.btn-white {
    background-color: transparent;
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.over-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
    z-index: 2;

}


#heroSwiper .swiper-pagination .swiper-pagination-bullet {
    background-color: #c1c1c1;
    width: 20px;
    height: 20px;
    opacity: .8;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
}

#heroSwiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;

}

#heroSwiper .swiper-button-prev,
#heroSwiper .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;

    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;

}

#heroSwiper .swiper-button-prev:hover,
#heroSwiper .swiper-button-next:hover {
    background-color: var(--primary-color);
}

#heroSwiper .swiper-button-prev::after,
#heroSwiper .swiper-button-next::after {
    font-size: 25px !important;
    color: rgb(255, 255, 255);
}



@media (max-width: 991px) {

    #heroSwiper .swiper-button-prev,
    #heroSwiper .swiper-button-next {
        display: none !important;
    }

    .header-section {
        text-align: center;

    }

    .header-section h1::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
    }
}

.top-destination {
    padding: 50px 0;
}

.header-section {
    margin-bottom: 30px;

}

.header-section h1 span {
    color: var(--secondary-color);
}

.btn-border {
    background-color: transparent;
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 0;
    border: 2px solid var(--primary-color);

    width: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 20px;

}

.btn-border:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 20px;
}

.header-section h1 {
    position: relative;
    padding-bottom: 10px;
}

.header-section h1::before {
    position: absolute;
    width: 19%;
    height: 3px;
    content: "";
    bottom: 0;
    left: auto;
    background-color: var(--primary-color);
}

.dest-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.dest-box:hover img {
    transform: scale(1.1);
}

.dest-box {
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;

    overflow: hidden;
}

.dest-cont {
    position: absolute;
    padding: 10px 10px;
    bottom: 20px;
    left: 0;
    background-color: #e9e9e9;
    width: 100%;
    text-align: center;
    transition: 0.5s ease;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
}

.dest-cont:hover {
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
}

.dest-cont h3 {
    font-size: 20px;
    color: var(--primary-color);
    padding: 0;
    margin-bottom: 0;
}

.about-us-home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3)), url(../images/new.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.about-details {
    color: var(--white);
    text-align: center;
    position: relative;


}

.tour-packages {
    padding: 50px 0;
}

.cloud {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;

}

.infinite-scrolling {
    background: url("../images/cloud2.png") repeat-x;
    height: 100%;
    width: 5760px;
    animation: slide 100s linear infinite;
    opacity: 0.4;

}

@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-1920px, 0, 0);

    }
}

.pckg-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.5s ease;
    transform: scale(1.1);

}

.pckg-box:hover img {
    transform: scale(1);
}

.pckg-box {
    position: relative;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 20px;
}

.pckg-cont {
    position: absolute;
    width: 100%;
    background-color: var(--white);
    bottom: 0;
    left: 0;

}

.color-but {
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-but p {
    color: #ffff;
    margin: 0;
    text-decoration: none;
    font-weight: bold;

}

.pckg-ad {
    padding: 10px;
}

.pckg-ad p {
    margin-bottom: 0;
}

.pckg-ad h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.tour-packages .header-section {
    padding: 0 30px;
}

@media (max-width: 991px) {
    .color-but {
        padding: 10px 0;
    }

    .pckg-box {
        box-shadow: 0px 5px 15px rgba(0, 0, 0, .1);
    }

    .tour-packages .header-section {
        padding: 0 10px !important;
    }

    #pckgSplide .splide__pagination {
        bottom: -10px;
    }

    .splide__pagination__page.is-active {
        background: var(--primary-color) !important;

    }

    .splide__pagination__page {
        background-color: var(--secondary-color) !important;
    }

    .mobile-center {
        text-align: center;
    }

    .mb-none {
        display: none;
    }

    .mt-tp {
        margin-top: 20px;
    }

    .infinite-scrolling {
        width: 100%;

    }

}

.insta-images {
    position: relative;
    overflow: hidden;
}

.insta-images img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.insta-images:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
}

.news-latest {
    padding: 50px 0;
}

.news-box {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, .1);
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: #ffff;
}

.news-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.5s ease;
}


.news-box:hover img {
    transform: scale(1.05);
}

.news-box .btn-fill {
    border-radius: 0;
    width: 100%;
}

.news-details {
    padding: 10px;
}

.news-details p {
    margin-bottom: 3px;
    color: #636262;
}

.news-latest .header-section {
    text-align: center;
}

.splide__arrow {
    background-color: var(--primary-color) !important;
    border-radius: 50%;
}

.splide__arrow svg {
    fill: #ffffff !important;
}

.button-class {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

}

.ftr-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/footer.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0 30px 0;
}

.ftr-head {
    color: var(--white);
}

.ftr-head p {
    margin-bottom: 20px;
}

.contact-social {

    margin-bottom: 20px;
}

.contact-social ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;

}

.contact-social a {
    text-decoration: none;

}

.contact-social a i {
    margin-right: 10px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    display: block;
    border: 1px solid var(--white);
    transition: 0.3s ease;
    margin-bottom: 10px;


}

.contact-social a .bi-facebook:hover {
    background-color: #3b5998;
    border: 1px solid #3b5998;
    color: #fff;
}

.contact-social a .bi-whatsapp:hover {
    background-color: #25d366;
    border: 1px solid #25d366;
    color: #fff;
}

.contact-social a .bi-google:hover {
    background-color: #ea4335;
    border: 1px solid #ea4335;
    color: #fff;
}

.contact-social a .bi-instagram:hover {
    background-color: #c32aa3;
    border: 1px solid #c32aa3;
    color: #fff;
}

.contact-social a .bi-tiktok:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #fff;
}

.contact-social a .bi-twitter-x:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #fff;
}

.contact-social a .bi-threads:hover {
    background-color: #000000;
    border: 1px solid #000000;
    color: #fff;
}

.contact-social a .bi-youtube:hover {
    background-color: #FF0000;
    border: 1px solid #FF0000;
    color: #fff;
}

.contact-social a .fa-tripadvisor:hover {
    background-color: #00af87;
    border: 1px solid #00af87;
    color: #fff;
}

.contact-social a .bi-pinterest:hover {
    background-color: #E60023;
    border: 1px solid #E60023;
    color: #fff;
}

.contact-social a .bi-wechat:hover {
    background-color: #7bb32e;
    border: 1px solid #7bb32e;
    color: #fff;
}

.contact-social a .bi-linkedin:hover {
    background-color: #0077B5;
    border: 1px solid #0077B5;
    color: #fff;
}

.contact-social a .bi-telegram:hover {
    background-color: #0088cc;
    border: 1px solid#0088cc;
    color: #fff;
}


.brdr-btm {
    border-bottom: 2px solid var(--white);
    margin-bottom: 30px;


}

.links {
    color: var(--white);
}


.links h3 {
    padding-bottom: 8px;
    position: relative;

}


.links ul {
    padding: 0;
    list-style: none;
}

.links ul li {
    margin-bottom: 10px;


}

.links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;

}

.links ul li a:hover {
    color: var(--hover-color);

}

.copyright-section {
    padding: 10px 0;
    background: #000;
    text-align: center;
}

.copyright-section p {
    color: var(--white);
    margin-top: 5px;
}

.copyright-section p a {
    color: var(--white);
    text-decoration: none;

}

.copyright-section p a:hover {
    color: var(--primary-color);
}

.links i {
    font-size: 20px;

}

.page-banner {
    position: relative;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .page-banner {
        height: 40vh;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content {
        margin-bottom: -50px !important;
    }
}

.map-section {
    padding: 50px 0;

}

.page-pd {
    padding: 50px 0;
}

.abt-photo {
    overflow: hidden;
    border-radius: 20px;
}

.abt-photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: .4s ease;
}

.abt-photo img:hover {
    transform: scale(1.1);
}

.abt-content {
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 30px;
}

.mv-box {
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
    border-radius: 10px;
}

.pckg-ad p {
    font-size: 15px;
    line-height: 20px;
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img .zoom-icon {
    color: white;
    font-size: 30px;
    pointer-events: none;

}

.gallery-img:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.gallery-img:hover .overlay {
    opacity: 1;
}

.contact-form {
    width: 100%;

}

.contact-form .input-group {
    margin-bottom: 15px;
}

.contact-form .input-group input,
.contact-form .input-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border: 1px solid var(--secondary-color);
    font-size: 16px;
    background-color: transparent;
    border-radius: 10px;
    background-color: #fff;

}

.contact-form .input-group input:focus,
.contact-form .input-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form h3 {
    margin-bottom: 30px;
    padding-left: 5px;
}

.contact-form {
    margin-bottom: 20px;
}

.c-details p {
    margin-bottom: 0;
}

.c-details h4 a {
    color: #fff;
    transition: .3s ease;
}

.c-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #01C0C8;
    background-image: linear-gradient(19deg, #01C0C8 10%, #B721FF 100%);
    border-radius: 20px;
    color: #fff;
    margin-bottom: 10px;
}


.c-box h1 {
    padding-right: 20px;
}

.c-box a {
    color: #fff;
}


.mt-cntct {
    padding-top: 30px;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .infinite-scrolling {
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {}

.news-detail-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.news-detail-img {
    margin-bottom: 20px;
}

.news-heading h4 {
    color: #696969;
}

.suggest-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/dest.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.suggest-box h3 {
    padding-bottom: 10px;
}

.suggest-box ul {
    padding: 0;
    list-style: none;
}

.suggest-box ul li a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s ease;

}

.suggest-box ul li a:hover {
    color: var(--primary-color);

}

.suggest-box ul li {
    margin-bottom: 15px;
    position: relative;

}

.destination-images,
.destination-contents {
    padding: 20px;

    border-radius: 10px;
    background-color: rgba(229, 229, 229, 0.8);
    margin-bottom: 50px;
}

@media (max-width: 991px) {

    .destination-images,
    .destination-contents {
        border-radius: 0;
        background-color: transparent;
        border: 0;
        margin-bottom: 20px;
        padding: 0;
    }

    .destination-images h3::before {
        width: 10% !important;

    }

    .destination-contents h3::before {
        width: 10% !important;
    }

    .destination-map h3::before {
        width: 10% !important;
    }

    .destination-map {
        margin-bottom: 30px;
    }

}

.destination-images h3,
.destination-contents h3,
.destination-map h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.destination-images h3::before {
    position: absolute;
    content: "";
    width: 5%;
    height: 3px;
    bottom: 0;
    left: auto;
    background-color: var(--primary-color);
}

.destination-contents h3::before {
    position: absolute;
    content: "";
    width: 3%;
    height: 3px;
    bottom: 0;
    left: auto;
    background-color: var(--primary-color);
}

.destination-map h3::before {
    position: absolute;
    content: "";
    width: 3%;
    height: 3px;
    bottom: 0;
    left: auto;
    background-color: var(--primary-color);
}

.destination-contents h2 {
    color: var(--primary-color);
}

.dest-images {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.suggest-box-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/dest.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.suggest-box-1 h3 {
    padding-bottom: 10px;
}

.suggest-box-1 ul {
    padding: 0;
    list-style: none;
}

.suggest-box-1 ul li a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s ease;

}

.suggest-box-1 ul li a:hover {
    color: var(--primary-color);

}

.suggest-box-1 ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.suggest-box-1 ul li::before {
    content: "|";
    color: var(--white);
    position: absolute;
    left: 0;

}

.side-bar-all {
    position: sticky;
    top: 100px;
    overflow-y: auto;
}

.side-bar-all-1 {
    position: sticky;
    top: 100px;
    overflow-y: auto;

}

.packages-title {
    margin-bottom: 15px;
}

.packages-title h2 span {
    color: var(--primary-color);

}

.packages-title h2 {
    position: relative;
    padding-bottom: 10px;
}

.packages-title h2::before {
    position: absolute;
    content: "";
    width: 10%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
}

.package-mt {
    margin-top: 20px;
}

.detail-box-package {
    padding: 20px 0 10px 0;
    font-size: 18px;

}

.detail-box-package p i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}


.panel-title-1 button i {
    text-align: end;
    margin-left: 20px;
    font-size: 20px;

}

.tour-package-itn h3 {
    padding: 10px 15px;
    color: #000000;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
    border-bottom: 4px solid var(--primary-color);
    background-color: #ddd;
    border-radius: 30px;
}

.tour-description h3 {
    padding: 10px 15px;
    color: #000000;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
    border-bottom: 4px solid var(--primary-color);
    background-color: #ddd;
    border-radius: 30px;
}

.c-box-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5)), url(../images/Adventure-Tourism.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    margin-bottom: 10px;
}

.c-details h3,
.c-details p {
    color: #fff;
}

.c-details h4 {
    color: var(--white);
}

.c-details i {
    font-size: 35px;
    color: #fff;
}

.map-package h3 {
    padding: 10px 15px;
    color: #000000;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
    border-bottom: 4px solid var(--primary-color);
    background-color: #ddd;
    border-radius: 30px;

}

.map-package {
    padding: 15px 0;
}

.top-packages-box h3 {
    color: #fff;
    padding-bottom: 15px;
}

.top-packages-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url(../images/package-box.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;

}

.top-packages-box ul {
    padding: 0;
    list-style: none;
}

.top-packages-box ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.top-packages-box ul li a:hover {
    color: var(--primary-color);

}

.top-packages-box ul li {
    margin-bottom: 10px;
}

.contact-form-2 {
    margin: 0 auto;
    padding: 20px 40px;
    background-color: #e5e5e5;
    margin-top: 20px;

}

.contact-form-2 .input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.contact-form-2 input[type="text"],
.contact-form-2 input[type="email"],
.contact-form-2 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form-2 input::placeholder,
.contact-form-2 textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.contact-form-2 .submit-btn {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.contact-form-2 .whatsapp-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    background-color: #25d366;
    transition: background-color 0.3s ease;
    text-align: center;
}

.banner-form .whatsapp-btn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    background-color: #25d366;
    transition: background-color 0.3s ease;
    text-align: center;
}

.banner-form .submit-btn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

@media (max-width: 991px) {
    .contact-form-2 {
        padding: 15px;
    }

    .contact-form-2 input,
    .contact-form-2 textarea {
        font-size: 14px;
    }

    .contact-form-2 .submit-btn {
        font-size: 16px;
    }

    #pckgSplide .splide__pagination {
        bottom: -10px;
    }

    .accordion-toggle {

        font-size: 18px !important;
        padding-left: 35px !important;

    }

    .accordion-toggle::before {
        margin-top: -2px !important;
    }

}

.accordion-toggle {
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
    font-size: 22px;
    font-weight: 400;
    position: relative;
    padding-left: 40px;

}

.accordion-toggle::before {
    position: absolute;
    content: "+";
    top: 5%;
    left: 0;
    color: var(--white);
    background-color: var(--primary-color);
    text-align: center;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: 2px;
    font-weight: bold;

}

.accordion-toggle.active::before {
    content: "−";
    background-color: var(--primary-color);

}

.accordion-toggle:hover {
    color: var(--secondary-color);
}

.panel-body {
    display: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 10px 0;
    width: 100%;
    margin-bottom: 5px;

}

.contact-social-1 {
    display: flex;
    margin-bottom: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-social-1 a {
    text-decoration: none;
    margin-bottom: 10px;
}

.contact-social-1 a i {
    margin-right: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    display: block;

}

.contact-social-1 a .bi-facebook {
    background-color: #3b5998;
}

.contact-social-1 a .bi-whatsapp {
    background-color: #25d366;
}

.contact-social-1 a .bi-google {
    background-color: #ea4335;
}

.contact-social-1 a .bi-instagram {
    background-color: #c32aa3;
}

.contact-social-1 a .bi-tiktok {
    background-color: #000;
}

.contact-social-1 a .bi-twitter-x {
    background-color: #222222;
}

.contact-social-1 a .bi-threads {
    background-color: #222222;
}

.contact-social-1 a .bi-youtube {
    background-color: #FF0000;
}

.contact-social-1 a .fa-tripadvisor {
    background-color: #00af87;
}

.contact-social-1 a .bi-pinterest {
    background-color: #E60023;
}

.contact-social-1 a .bi-linkedin {
    background-color: #0077B5;
}

.contact-social-1 a .bi-wechat {
    background-color: #7bb32e;
}

.contact-social-1 a .bi-telegram {
    background-color: #0088cc;
}

.Language {

    cursor: pointer;
    position: fixed;
    bottom: 30%;
    right: 0;
    z-index: 5;
    transition: .5s;

}

#languageSelect {
    background-color: var(--white);
    color: #333;
    border: 1px solid var(--primary-color);
    padding: 5px;
    border-radius: 0;
    color: var(--primary-color);
}

.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd {

    display: none !important;
}

.Language .nice-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 400;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 0;
    border: none
}

.Language .nice-select .option {
    color: var(--primary-color);
    line-height: 20px;
    min-height: 20px;

}

.Language .nice-select.open .list {
    border-radius: 0;
    padding: 5px 0;
}

.Language .nice-select::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.custom-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 50px 0;
}

.custom-form h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-top: 20px;

}

.custom-form .search-box-single {
    margin-bottom: 20px;
}

.custom-form .search-box-single label {
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
    display: inline-block;
}

.custom-form .search-box-single input,
.custom-form .search-box-single select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.custom-form .search-box-single input[type="radio"],
.custom-form .search-box-single input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.custom-form .radio-group,
.custom-form .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-form .error-message {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: -10px;
    margin-bottom: 5px;
}

.custom-form input:focus {
    border-color: var(--primary-color);
    outline: none;

}

@media (max-width: 768px) {

    .custom-form .radio-group,
    .custom-form .checkbox-group {
        flex-direction: column;
    }
}

.cus-map {
    margin: 50px 0;
}

.mv-box p i {
    font-size: 14px;
    color: #818181;
}


.whatsapp img {
    position: fixed;
    bottom: 30px;
    left: 50px;
    z-index: 3;
    transition: transform .6s ease-in-out;


}

.whatsapp:hover img {
    transform: scale(1.1);

}


@media (max-width: 768px) {
    .whatsapp img {
        right: 20px;
        width: 130px !important;

    }

}

.preloader1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.preloader1 img {
    animation: fade 2s infinite alternate;
    width: 180px;

}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.pckg-location {
    padding: 20px 0;

}

.pckg-location img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .pckg-location {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .pckg-location img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 5px !important;
    }
}

.destination-box-1 {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 15px;
}

.destination-box-1 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.destination-box-1:hover img {
    transform: scale(1.1);
}

.destination-head {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}

.overlayer-dst {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    z-index: 2;
    pointer-events: none;
    border-radius: 0;

}

.choose-section {
    padding: 50px 0;
}

.choose-section .header-section {
    text-align: center;
    margin-bottom: 50px;
}

.choose-section .header-section {
    text-align: center;
    margin-bottom: 50px;

}


.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;

}

.service-icon i {
    font-size: 50px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    transition: 0.3s ease;
    background-color: #efefef;

}

.service-icon span {
    font-size: 50px;

    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    transition: 0.3s ease;
    background-color: transparent;
}

.chhose-img {
    width: 80px;
    height: 80px;
    line-height: 100px;
    text-align: center;
}

.service-icon i:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.service-icon {
    margin-bottom: 10px;
}

.header-section h2 {
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.header-section h2::before {
    position: absolute;
    width: 6%;
    height: 3px;
    content: "";
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
}

#map {
    z-index: 2 !important;
}

.location-label {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: -25px;
    left: -15px;
}

.location-name {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('path-to-your-icon.png') no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.visa a {
    color: #fff;
    text-decoration: none;
}

.visa {
    padding: 20px 30px;
    background-color: rgb(0, 0, 0, .3);
    border-radius: 30px;
}

.visa p {
    margin-bottom: 0;
}

.act-section {
    padding: 30px 0 10px 0;
}

.act-section .header-section {
    text-align: center;
    margin-bottom: 50px;
}

.act-section .header-section {
    text-align: center;
    margin-bottom: 50px;

}

.activity-box {
    border-radius: 15px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    margin-bottom: 10px;
}

.activity-photo {
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.activity-photo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.activity-photo img:hover {
    transform: scale(1.05);
    opacity: 1;
}

.activity-details {
    padding: 15px 10px;
    text-align: center;
}

.activity-details p {
    font-size: 14px;
    margin-bottom: 8px;
}

.activity-details h4 {
    margin-bottom: 3px;
    font-size: 22px;

}

.act-dtls img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 15px;
}

.act-suggest {
    padding: 20px 30px;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/package-box.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.act-suggest ul {
    text-align: center;
    padding: 0;
}

.act-suggest ul li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

.act-suggest ul li::before {
    content: "➤";
    color: #ffffff;
    font-size: 14px;
    margin-right: 8px;
}

.act-suggest ul li a {
    color: #fff;
    text-decoration: none;
}

.act-content {
    padding: 15px 10px;
    background-color: #f3f3f3;
    margin-bottom: 10px;
}

.act-content p {
    margin-bottom: 5px;
}

.act-content h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--hover-color);
    padding-bottom: 10px;
}

#location-row {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

#location-row .location-entry {
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-map {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    transition: .5s ease;
    width: 100%;
}

.btn-map:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

.leaflet-popup-content {
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
    color: #333;
}

.leaflet-popup-content b {
    font-size: 24px;
    color: var(--primary-color);
}

.date-label,
.days-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.date-picker,
.days-input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    font-size: 14px;
    border: 2px solid #3498db;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
}

.date-picker:focus,
.days-input:focus {
    border-color: #ff5722;
    box-shadow: 0 0 5px rgba(255, 87, 34, 0.5);
}

.add-location-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    display: block;
}

.add-location-btn:hover {
    background-color: #2980b9;
}

.add-location-btn:active {
    background-color: #1c6fa3;
}

.leaflet-popup-tip {
    display: none;
}

.big-inp .searchbox-input textarea {
    height: 180px;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ababab;
    border-radius: 5px;
    outline: none;
    overflow-y: auto;
    /* Enable vertical scrolling */
    background: #fff;
}

.contact-widget {
    position: fixed;
    bottom: 30px;
    left: 20px;
    /* Left corner */
    display: flex;
    flex-direction: column-reverse;
    /* Stack buttons upwards */
    gap: 15px;
    z-index: 9999;
    align-items: center;
}

.contact-buttons {
    display: flex;
    flex-direction: column-reverse;
    /* Drop up effect */
    gap: 10px;
    align-items: center;
}

.contact-button {
    background-color: #0078d4;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}

.contact-button:hover {
    transform: scale(1.1);
}

.contact-button.initial {
    background-color: #000000;
    /* Settings button */
}

.contact-button.whatsapp-btn {
    background-color: #25d366;
    /* WhatsApp Green */
}

.contact-button.email-btn {
    background-color: #db4437;
    /* Email Red */
}

.contact-button.call-btn {
    background-color: #34b7f1;
    /* Call Blue */
}

/* Hide buttons by default */
.contact-button.additional {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    /* Initially moved down */
}

/* Drop Up effect on active */
.contact-widget.active .contact-button.additional {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Move up into place */
}

.contact-buttons a:hover {
    color: #fff;
}

.contact-logo img {
    width: 100%;
    height: 350px;
}

.contact-data h4 {
    font-weight: 350;
}

.contact-data h4 i {
    font-size: 28px;
    color: var(--primary-color);
}

.contact-data h4 a {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    transition: .3s ease;
}

.contact-data h4 a:hover {
    color: var(--secondary-color);
}

.logo-contact img {
    width: 350px;

}

.logo-contact {
    text-align: center;
}

@media (max-width: 991px) {
    .logo-contact img {
        width: 100% !important;
    }

}

.input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #444444;
    border-radius: 30px;

}

.search-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.search-box input {
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.search-box button {
    padding: 5px 10px;
    background: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

#selectedLocation {
    display: none;
}

@media (max-width: 991px) {
    .search-box input {
        width: 110px !important;
    }
}

.suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    width: 90%;
    display: none;
}

.suggestions div {
    padding: 10px;
    cursor: pointer;
}

.suggestions div:hover {
    background: #f0f0f0;
}

#map {
    height: 800px;
    /* Default height for larger screens */
}

.popup-close-btn {
    display: none;
}

@media (max-width: 768px) {

    /* Mobile devices */
    #map {
        height: 550px !important;
        /* Set height to 400px on mobile */
        margin: 10px;
        /* Add 40px margin */
    }


}

/* Mobile-specific styles */
@media (max-width: 768px) {
    #map .leaflet-popup-content {
        font-size: 13px;
        /* Smaller font size */
        width: 250px;
        /* Smaller width for mobile */
    }

    #map .leaflet-popup-content input,
    #map .leaflet-popup-content select,
    #map .leaflet-popup-content button {
        font-size: 12px;
        /* Smaller font size for inputs */
        padding: 2px;
        /* Adjust padding to fit smaller screen */
    }

    #map .leaflet-popup-content label {
        font-size: 12px;
        /* Smaller label font size */
    }

    .place-checkbox {
        margin-right: 5px;
        /* Less margin for checkboxes on mobile */
    }

    .add-location-btn {
        padding: 10px;
        /* Adjust button padding for mobile */
    }

    /* Style the close button at the bottom-right of the popup */
    .popup-close-btn {
        position: absolute;
        bottom: 0px;
        right: 0px;
        background-color: red;
        /* Red background */
        color: white;
        /* White text */
        border: none;
        font-size: 18px;
        width: 30px;
        /* Set width and height to create a circular shape */
        height: 30px;
        /* Circular shape */
        display: flex;
        justify-content: center;
        align-items: center;
        /* Center the "X" in the button */
        cursor: pointer;
        padding: 0;
        display: block;

    }

    .popup-close-btn:hover {
        background-color: darkred;
        /* Darker red on hover */
    }

    /* Ensure the popup content is positioned relatively for absolute positioning of the close button */
    .leaflet-popup-content {
        position: relative;
        padding-bottom: 40px;
        /* Make space for the close button */
    }

}