@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&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');

:root {
    --primary-color: #01196F;
    --secondary-color: #FBA227;
    --text-color: #1c1c1c;
    --white: #fff;
    --black: #000;
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Coustard", serif;

}

body {
    margin: 0;
    padding: 0;
    top: 0 !important;
    overflow-x: hidden;
    font-family: var(--font-primary);
    position: relative;

}


ul li {
    list-style: none;
}

ul {
    padding-left: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
}

p {

    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
}



.navbar .navbar-brand img {
    width: 100px;

}

a.navbar-brand {
    padding: 0;
}

.navbar {
    background: #ffff;
    position: absolute;
    width: 100%;
    z-index: 5;
    padding: 5px 0;


}

.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .0), transparent) !important;
    background: var(--white) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.topbar {
    background-color: var(--primary-color);
    padding: 10px 0;
    width: 100%;
    Display: flex;
    align-items: center;


}

.topbar-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 0;

}

.topbar-contact li {
    display: flex;
    align-items: center;
    margin-right: 10px;

}

.topbar-contact li a {
    font-size: 15px;
    color: var(--white);
    transition: .3s ease;


}

.topbar-contact li a:hover {
    color: var(--secondary-color);
}

.topbar-contact li h5 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 0;
    margin-right: 8px;
    padding-bottom: 0;
}

.topbar-hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}


.navbar-nav .nav-link {
    color: var(--black);
    transition: .5s;
    position: relative;
}

.nav-link::before {
    width: 0;
    height: 2px;
    content: "";
    background-color: var(--primary-color);
    position: absolute;
    left: 8px;
    bottom: 0;
    transition: .5s ease;

}

.nav-link:hover::before {
    width: 70%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar-fixed .nav-link:hover {
    color: var(--primary-color);
}

.navbar-fixed .nav-link {
    color: var(--text-color);
}


@media(max-width: 991px) {
    .navbar {
        background: var(--white);
    }

    .navbar-fixed .nav-link,
    .nav-link {
        color: var(--white);
    }



    .navbar-toggler .navbar-toggler-icon {
        transition: .5s;
    }

    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
        background-image: url('../images/menu-bar/nav1.png') !important;

    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transition: .5s;
        background-image: url('../images/menu-bar/nav2.png') !important;

    }

    .navbar .navbar-brand img {
        width: 90px;
    }

    .nav-link {
        color: var(--black) !important;
    }


    .navbar-nav {
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 0px;
        height: 0;
        position: fixed !important;
        top: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        transition: all .1s ease-in-out;
        z-index: 5;
    }

    .collapse.show .navbar-nav {
        opacity: 1;
        width: 100vw;
        height: 100vh;
    }

    .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;

    }

    .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;
    }
}

.hero-section {
    position: relative;
    height: 650px;
}

.hero-section img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 45px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
}

.hero-content h3 {
    color: var(--white);
    font-weight: 400;
    font-size: 25px;

}

.hero-content p {
    color: var(--white);
    width: 50%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;

}


@media (max-width: 991px) {

    .hero-content p {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 10px;
        top: 55%;
    }

}

.btn-fill {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0;
    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);
}

.logo-header {
    width: 120px !important;

}

.over-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .98), transparent);
    z-index: 2;

}

.package-home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.85)), url(../images/dark-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0 40px 0;
}

.about-home-content {
    padding: 30px 60px;
    color: #fff;
    border: 2px solid var(--white);
    border-radius: 10px;
    background-image: linear-gradient(rgba(1, 25, 111, .85), rgba(1, 25, 111, .85)), url(../images/about-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-home-content h3 {
    margin-bottom: 20px;
}

.about-home-content p {
    margin-bottom: 10px;

}

@media (max-width: 991px) {
    .about-home-content {
        padding: 30px 10px !important;
        background-color: #01196F90 !important;
        color: #fff;
        text-align: center;
        border: 0;
        border-radius: 0;
    }

    .btn-click::before {

        left: 50% !important;
        transform: translateX(-50%) !important;


    }

}

.about-home {
    position: relative;
    margin-top: -250px;
}

.btn-click {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 5px 0px;
    border-radius: 0;
    border: 0;
    font-size: 20px;
    position: relative;
}

.btn-click::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background-color: var(--secondary-color);
    width: 36%;
    height: 3px;

}

.btn-click:hover {
    color: var(--secondary-color);
}

.package-header-section {
    padding: 60px 20px 10px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 10px;

}

.package-header-section h1 {
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;

}

.package-header-section h1 span {
    color: var(--secondary-color);

}

.package-header-section p {
    font-size: 16px;
    color: #fff;

}

.package-cart {
    background-color: var(--primary-color);
    border-bottom: 3px solid transparent;
    transition: .3s ease;
    margin-bottom: 10px;

}

.package-cart:hover {
    border-bottom: 3px solid var(--secondary-color);

}

.pckg-pt {
    overflow: hidden;

}

.pckg-pt img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s ease;
    transform: scale(1.1);

}

.pckg-pt:hover img {
    transform: scale(1);

}

.pckg-contnt {
    padding: 20px 20px;
    color: var(--white);
}

.pckg-contnt p {
    margin-bottom: 0;
}

.pckg-contnt h3 {
    margin-bottom: 2px;
}

.view-btn {
    color: var(--white);
    text-decoration: none;
    margin-top: 0;
    padding: 0;
    font-size: 16px;
    padding: 0;
    border: 0;
    font-weight: bold;
    margin-top: 10px;

}

.view-btn:hover {
    color: var(--secondary-color);

}

.btn-border {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 5px 20px;
    border-radius: 0;
    border: 2px solid var(--secondary-color);
}

.btn-border:hover {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.button-class {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

}

.contact-home {
    position: relative;
    padding: 80px 0 60px 0;
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .contact-home {

        height: 650px;

    }
}

.contact-home .overlay-about {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(1, 25, 111, .8), transparent);
    z-index: 0;
}

.home-details-c {
    color: var(--white);
    z-index: 3;
    position: relative;
}

.home-details-c p {
    margin-bottom: 10px;
}

#aboutSplide .splide__pagination {
    bottom: 20px;
    opacity: 1;
}

#aboutSplide .splide__pagination__page.is-active {
    background: #fff !important;

}

#aboutSplide .splide__pagination__page {
    background-color: transparent !important;
    width: 10px !important;
    height: 10px !important;
    border: 2px solid #fff;

}

.dest-home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(../images/dark-bg-2.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 50px 0;
}

.header-section {
    padding: 10px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 10px;

}

.header-section h1 {
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;


}

.header-section h1 span {
    color: var(--secondary-color);
}

.header-section p {
    color: #fff;

}


.dest-cart {
    background-color: var(--primary-color);
    color: #fff;
    margin-bottom: 10px;
    border-bottom: 3px solid transparent;
    transition: .3s ease;
}

.dest-cart:hover {
    border-bottom: 3px solid var(--secondary-color);
}

.dest-pt {
    overflow: hidden;
}

.dest-pt img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transform: scale(1.1);
    transition: 0.3s ease;

}

.dest-pt img:hover {
    transform: scale(1);

}

.dest-head {
    padding: 15px 20px;
}

.dest-head h3 {
    font-size: 23px;
    margin-bottom: 5px;
}

.dest-head p {
    font-size: 14px;
    margin-bottom: 0;
}

.tour-gallery {
    position: relative;
    width: 100%;
    height: 350px;

}

.tour-gallery img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

}

.tour-gallery .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    z-index: 1;
    background-color: #00000099;
    padding: 5px 20px;

}

@media (max-width: 991px) {
    .tour-gallery .content {
        font-size: 18px;

    }
}

.home-gallery {
    padding: 40px 0;

}

#gallerySplide .splide__pagination {
    bottom: 20px;
    opacity: 1;
}

#gallerySplide .splide__pagination__page.is-active {
    background: #fff !important;

}

#gallerySplide .splide__pagination__page {
    background-color: var(--primary-color) !important;
    width: 15px !important;
    height: 15px !important;
    border: 2px solid var(--secondary-color);

}

#gallerySplide .splide__arrow,
#pckgSplide .splide__arrow,
#desthomeSplide .splide__arrow {
    background-color: #ffffff95;
    border-radius: 50%;
    opacity: 1;

    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);

}


#gallerySplide .splide__arrow svg,
#pckgSplide .splide__arrow svg,
#desthomeSplide .splide__arrow svg {
    fill: var(--black);
    width: 15px;


}

.bg-footer {

    padding: 80px 0 40px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../images/ftr-dark.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.links-ftr h3 {
    color: #fff;
    padding-bottom: 10px;
}

.links-ftr ul li a {
    color: #fff;
    transition: .3s ease;
}

.links-ftr ul li a:hover {
    color: var(--secondary-color);
}

.links-ftr ul li {
    margin-bottom: 5px;
}

.links-ftr ul li {
    color: #fff;
}

.finl-cont ul li {
    font-size: 18px;
}

.desk li {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}


.desk ul li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;

}

.contact-social ul {
    display: flex;
    padding: 0;
    color: var(--white) !important;
    flex-wrap: wrap;

}

.contact-social ul li {
    list-style: none;
    margin-right: 15px;
    color: var(--white);
    font-size: 20px;

}

.contact-social ul a {
    color: var(--white);
}

.brdr-btm {
    border-bottom: 2px solid var(--white);
    padding-bottom: 20px;
}

.down-ftr {
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-top: 10px;
}

.down-ftr p {
    margin-bottom: 0;
}

.down-ftr p a {
    color: #fff;
    transition: .3s ease
}

.down-ftr p a:hover {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .links-ftr {
        text-align: center;
    }

    .contact-social ul {
        justify-content: center;
    }

    .down-ftr {
        flex-direction: column;
        text-align: center;
    }

    .down-ftr p {
        margin-bottom: 5px;
    }
}

.page-banner {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: white;
}

.banner-content {
    padding: 20px 20px 20px 0px;

}

.banner-content h1 {
    margin-bottom: 0;
    font-size: 50px;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    pointer-events: none;
}


.page-banner .banner-content {
    position: relative;
    z-index: 1;
}


@media (max-width: 991px) {
    .page-banner {
        height: 50vh;
    }

    .banner-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .banner-content {
        padding: 0 !important;
        padding-top: 40px !important;
        text-align: center;

    }

    .banner-content ul {
        justify-content: center !important;
    }
}

.banner-content ul {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;


}

.banner-content ul li {
    padding-right: 10px;

}

.banner-content ul a {
    color: var(--white);
    transition: .3s ease;
}

.banner-content ul a:hover {
    color: var(--secondary-color);
}

.banner-content ul li:not(:last-child)::after {
    content: " / ";
    margin-left: 10px;
}

.page-pd {
    padding: 50px 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/pattern-design.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: 900px;
}

.page-pd {
    padding: 100px 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(../images/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 4px solid var(--white);
    border-bottom: 4px solid var(--white);
}

@media (max-width: 991px) {
    .page-pd {
        padding: 30px 0;

    }
}

.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: linear-gradient(to top, rgba(251, 162, 39, 0.6), rgba(251, 162, 39, 0));
    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;
}

.about-head h3,
.abt-cont p {
    color: #fff;
}

.tour-about {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/abt-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    border-bottom: 4px solid var(--black);
    border-top: 4px solid var(--white);
}

.abt-cont p {
    margin-bottom: 5px;
}

.abt-cont {
    border-left: 2px solid var(--secondary-color);
    padding-left: 25px;
}

.mv-box-1 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/dark-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    border-bottom: 4px solid var(--black);


}

.mv-box-2 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/about-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    border-bottom: 4px solid var(--white);

}

@media (max-width: 991px) {
    .abt-cont {
        border-left: none;
        padding-left: 0;
    }

    .mv-box-1,
    .mv-box-2,
    .tour-about {
        text-align: center;
    }

}

.contact-form {
    background: transparent;

}

.contact-form label {
    display: block;
    margin-top: 10px;

    color: #ffffff;
    font-size: 20px;
    font-family: var(--font-secondary);
    display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 0;
    background-color: #ffffff80;
    color: var(--white);
    outline: 0;
    margin-bottom: 20px;
}


.contact-form .btn-fill {
    margin-top: 10px;
    width: 100%;
    background-color: var(--secondary-color);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
}

.page-contact {
    padding: 100px 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(../images/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 4px solid var(--white);
    border-bottom: 4px solid var(--white);
}

.cont-d {
    color: var(--white);

}

.cont-d h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cont-d ul li a {
    color: #fff;
    transition: .3s ease;
}

.cont-d ul li a:hover {
    color: var(--secondary-color);
}

.cont-d ul li {
    color: #ffff;
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-social ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-social a i {
    margin-right: 10px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    display: block;
    border: 1px solid var(--white);
    transition: 0.3s ease;

}

.footer-social {
    padding: 10px 0;
}

.cont-d {
    padding-left: 20px;
}


.footer-social a .bi-facebook:hover {
    background-color: #3b5998;
    color: #fff;
}

.footer-social a .bi-whatsapp:hover {
    background-color: #25d366;
    color: #fff;
}

.footer-social a .bi-google:hover {
    background-color: #ea4335;
    color: #fff;
}

.footer-social a .bi-instagram:hover {
    background-color: #c32aa3;
    color: #fff;
}

.footer-social a .bi-tiktok:hover {
    background-color: #000000;
    color: #fff;
}

.footer-social a .bi-twitter-x:hover {
    background-color: #000000;
    color: #fff;
}

.footer-social a .bi-threads:hover {
    background-color: #000000;
    color: #fff;
}

.footer-social a .bi-youtube:hover {
    background-color: #FF0000;
    color: #fff;
}

.footer-social a .fa-tripadvisor:hover {
    background-color: #00af87;
    color: #fff;
}

@media (max-width: 991px) {
    .cont-d {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;

    }

    .footer-social ul {
        justify-content: center;
        text-align: center;
    }

    .footer-social {
        margin-bottom: 10px;
    }
}

.dest-over h3 {
    color: var(--white);
}

.dest-over {
    background-color: #ffffff80;
    padding: 20px 20px;
    color: #fff;
    margin-bottom: 40px;
}

.dest-over p {
    margin-bottom: 0;
}

.dest-detail img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.dest-details img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.dest-details {
    margin-bottom: 20px;
}

.dest-detail-cntn h3 {
    border-bottom: 4px solid var(--secondary-color);
    padding-bottom: 10px;
    background: linear-gradient(to right, rgba(255, 255, 255, .8), transparent);
    margin-top: 10px;
    padding: 10px 10px;
    margin-bottom: 20px;
    color: var(--white);


}

.dest-detail-cntn {
    color: #fff;
}

#dtSplide .splide__arrow {
    background-color: var(--secondary-color);
    border-radius: 0;
}

#dtSplide .splide__arrow svg {
    fill: #ffffff;
}

.tour-package-itn h3 {
    padding: 10px 0;
    color: #ffff;
    margin-bottom: 10px;
    font-size: 28px;
    border-bottom: 2px solid var(--primary-color);
}

.accordion-toggle {
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
    font-size: 25px;
    font-weight: 400;
}

.accordion-toggle:hover {
    color: var(--secondary-color);
}

.panel-body {
    display: none;
}

.round-tour-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;

}

.round-tour-details ul li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "➤";
    font-size: 14px;
    color: #333;
    color: var(--secondary-color)
}

.round-tour-details ul {
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 5px;

    border-bottom: 1px solid #ffffff;
}

.contact-form-2 {
    margin: 0 auto;

    background-color: transparent;
    margin-bottom: 15px;


}

.contact-form-2 .input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;

}

.contact-form-2 input,
.contact-form-2 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: transparent;
    background-color: #ffffff80;
    color: #fff;

}

.contact-form-2 input::placeholder,
.contact-form-2 textarea::placeholder {
    color: #3c3c3c;
    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;
}

@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;
    }

    .dest-map {
        margin-top: 40px;
    }

    .accordion-toggle {

        font-size: 20px;

    }

    .round-tour-details ul li {
        margin-bottom: 10px;

    }

}

.accordion-toggle {
    position: relative;
    padding-left: 40px;
}

.accordion-toggle::before {
    position: absolute;
    content: "+";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--white);
    background-color: var(--primary-color);
    text-align: center;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;

}

.pckg-contnt p {
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dest-head p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.service-section {
    padding: 50px 0 30px 0;
}

.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;
    border: 2px solid var(--primary-color);
    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 i:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.service-icon {
    margin-bottom: 10px;
}

.service-contnt {
    color: #fff;
}

.offer-box {
    padding: 30px;
    background-image: linear-gradient(rgba(1, 25, 111, 1), rgba(1, 25, 111, 1)), url(../images/services/online.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-box-2 {
    padding: 30px;
    background-image: linear-gradient(rgba(251, 162, 39, 1), rgba(251, 162, 39, 1)), url(../images/services/gifts.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-box-3 {
    padding: 30px;
    background-image: linear-gradient(rgba(1, 25, 111, 1), rgba(1, 25, 111, 1)), url(../images/services/shipping.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-box-4 {
    padding: 30px;
    background-image: linear-gradient(rgba(251, 162, 39, 1), rgba(251, 162, 39, 1)), url(../images/services/spices-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-box-content i {
    color: var(--white);
    font-size: 60px;
}

.offer-box-content {
    text-align: center;
    color: #fff;
}

.g-2 {
    margin-right: 0;
    margin-left: 0;
}

.g-2>[class*='col'] {
    padding-left: 0;
    padding-right: 0;
}

.custom-form {
    background-color: #ffffff90;
    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;
    }
}

.vehi-serveice {
    align-items: center !important;
    margin-bottom: 20px;
    justify-content: center !important;
    display: flex;
    flex-direction: column;

    padding: 10px;
    border-radius: 10px;

}

.vehi-serveice img {
    width: 250px;
    object-fit: cover;
    margin-right: 15px;
    background-color: #ffffff70;
    margin-bottom: 15px;
    padding: 20px;
    border: 2px solid var(--secondary-color);

}

.vehi-details h3 {
    text-align: center;
    color: #ffffff;

}

.vehi-details p {
    text-align: center;
    color: #ffffff;

}

.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: 200px;

}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.Language {
    cursor: pointer;
    position: fixed;
    bottom: 3%;
    right: 0;
    z-index: 3;
    transition: transform 0.3s ease-in-out;
    background-color: #d7d7d7;
    padding: 10px;
    border-radius: 15px 0 0 15px;

}

#languageSelect {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 0;
    padding: 3px 6px;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}

#languageSelect:focus {
    outline: none;
    border-color: #0056b3;

}

.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

@media (max-width: 991px) {
    #vehicle-form {

        margin-top: 20px !important;
        margin-bottom: 20px;
    }

}

#vehicle-form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background: #ffffff90;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 48px;
    margin-bottom: 20px;
}

#vehicle-form h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 30px 0;
    font-size: 24px;
}

#vehicle-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #5a5a5a;
}

#vehicle-form input,
#vehicle-form select,
#vehicle-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: 0;
}

#vehicle-form button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

#vehicle-form button:hover {
    background: var(--secondary-color);
}

.ayubo-pt img {
    width: 350px;
    height: 300px;
    object-fit: cover;


}

.ayubo-pt {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, .3);
    padding: 60px 20px;
    border-radius: 15px;
}

.ayubo-clss {
    padding: 20px 0 10px 0;
}

@media (max-width: 991px) {
    .ayubo-pt img {
        width: 100% !important;
        border-radius: 0 !important;
        border: 0 !important;

    }

    .ayubo-pt {
        margin-top: 20px;
    }

}

.whatsapp-icon {
    width: 60px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999;
    border: 3px solid white;
    border-radius: 50%;
}