@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=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary-color: #041b38;
    --secondary-color: #ef531a;
    --gold-color: #bf8624ff;
    --text-color: #1c1c1c;
    --white: #fff;
    --black: #000;
    --border-color: #c2c2c2;
    --font-primary: "Open Sans", sans-serif;
    --font-secondary: "Rajdhani", sans-serif;
    --font-button-color: #DA4108;

}

body {
    margin: 0;
    padding: 0;
    top: 0 !important;
    overflow-x: hidden;
    font-family: var(--font-primary);
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(../images/pattern-2.jpg);
    background-size: 700px;
    background-repeat: repeat;
    background-position: left;
}


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;
}


.topbar {
    background-color: var(--gold-color);
    padding: 10px 0;
    width: 100%;
    Display: flex;
    align-items: center;
    justify-content: center;

}

.topbar-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;

}

.topbar-contact li {
    display: flex;
    align-items: center;
    margin-right: 10px;

}

.topbar-contact li a {
    font-size: 15px;
    color: var(--white);
    margin-right: 5px;

}

.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 .navbar-brand img {
    width: 100px;

}

a.navbar-brand {
    padding: 0;
}

.navbar {
    background-color: var(--primary-color);
    position: absolute;
    width: 100%;
    z-index: 5;
    padding: 15px 0;

}

.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.topbar-hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}


.navbar-nav .nav-link {
    color: var(--white);
    transition: .5s;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);

}

.navbar-fixed .nav-link {
    color: var(--white);
}


@media(max-width: 991px) {
    .navbar {
        background: var(--primary-color);
        padding: 10px 0 !important;
    }

    .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/mobile-menu.png') !important;

    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transition: .5s;
        background-image: url('../images/menu-bar/close.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: var(--primary-color);
        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;
        background: #d5d5d5;
        width: 100%;
        margin-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);

    }

    .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: 40%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.hero-content h1 {
    font-size: 50px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.hero-content h3 {
    color: var(--white);
    font-weight: 400;
    font-size: 25px;


}

.hero-content p {
    color: var(--white);
    width: 60%;

}


@media (max-width: 991px) {

    .hero-content p {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 40px !important;

    }

    .hero-content {
        width: 100% !important;
        top: 40% !important;
    }

}

.btn-fill {
    background-color: var(--gold-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0;
    border: 1px solid var(--gold-color);
    transition: .5s;
}

.btn-fill:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

.btn-fill-1 {
    background-color: var(--font-button-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0;
    border: 1px solid var(--font-button-color);
    transition: .5s;
}

.btn-fill-1:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-white {
    background-color: transparent;
    color: var(--white);
    padding: 5px 20px;
    border-radius: 0;
    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: rgba(0, 0, 0, .3);
    z-index: 2;

}

#heroSplide .splide__arrow {
    background-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--white);
}

#heroSplide .splide__arrow svg {
    fill: var(--white);
    font-size: 30px;

}

.logo-header {
    width: 160px !important;
}

.form-home {
    background-color: rgba(0, 0, 0, .4);
    padding: 30px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.btn-form .btn-fill-1 {
    width: 100%;
}

.form-home .input-group input,
.form-home.input-group textarea {
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid var(--white);
    color: #000;
    outline: 0;
    padding: 10px 10px;
    width: 100%;

}

.form-home.input-group input:focus,
.form-home .input-group textarea:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
    border: 0 !important;
}

@media (max-width: 991px) {

    .form-home .input-group input,
    .form-home.input-group textarea {
        text-align: center;
        margin-bottom: 10px;
        width: 100%;

    }

    .header-section {
        padding: 10px 0 !important;
        margin-bottom: 0 !important;

    }

    .bookin-section {
        padding: 10px 0 !important;
    }

    .mb-none {
        display: none;
    }

    .company-abt {
        padding: 20px 0;
    }

    .logo-header {
        width: 140px !important;
    }
}

.packages-home {
    padding: 30px 0;
}

.header-section {
    padding: 10px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;

}

.header-section h1 {
    font-weight: 600;
    text-transform: uppercase;

}

.package-cart {
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

.package-pt {
    position: relative;
}

.package-pt {
    overflow: hidden;
}

.package-pt img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.package-pt img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.package-cnt {
    padding: 10px 15px;
}

.package-cnt h3 {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 500;
}

.package-cnt p {
    margin-bottom: 5px;
}

.package-cnt .btn-fill {
    width: 100%;
    margin-top: 10px;
}

.spend-time {
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.spend-time h4 {
    font-size: 18px;
    background-color: #25D366;
    color: #fff;
    margin: 5px;
    padding: 5px 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.button-class {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;

}

.btn-border {
    background-color: transparent;
    color: var(--black);
    padding: 5px 20px;
    border-radius: 0;
    border: 2px solid var(--font-button-color);
    display: block;
    width: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    display: block;
    text-transform: uppercase;
    font-weight: 500;

}

.btn-border:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
}

.about-home {
    background-color: #F6F6F6;
    padding: 60px 0 30px 0;
}

.about-content {
    text-align: center;
}

.about-content h2 {

    font-size: 36px;
    font-weight: 450;
    text-transform: uppercase;
}

.read-btn {
    color: var(--gold-color);
    text-decoration: none;
    margin-top: 0;
    padding: 0;
    font-size: 30px;
    padding: 0;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: .3s ease;

}

.read-btn:hover {
    color: var(--secondary-color);

}

.about-content p {
    margin-bottom: 5px;
}

.bookin-section {
    padding: 40px 0 20px 0;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 33px;
    left: 49%;
    transform: translateX(-50%);
    width: 48%;
    height: 3px;
    background: var(--secondary-color);
    z-index: -1;
}

.step {
    text-align: center;

    position: relative;
}

.step-circle {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

.step-title {
    font-weight: bold;
}

.step-text {
    font-size: 14px;
}

.step-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 991px) {
    .steps {
        flex-direction: column !important;
    }

    .steps::before {
        display: none !important;
    }

}

.dest-home {
    padding: 30px 0;
}

.dest-cart {
    border: 2px solid var(--primary-color);
    padding: 10px;
    transition: .3s ease;
    margin-bottom: 15px;
    background-color: #fff;

}

.dest-cart:hover {
    border: 2px solid var(--secondary-color);

}

.dest-cart-photo {
    overflow: hidden;
}

.dest-cart-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dest-cart-photo img:hover {
    transform: scale(1.08);

}

.dest-location {
    text-align: center;
    padding: 15px 10px 5px 10px;
}

.dest-location h3 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.form-bg {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0)), url(../images/form-bg.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.booking-form {
    border-right: 2px solid var(--white);
    background: transparent;
    padding-right: 30px;
}

.booking-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    font-family: var(--font-secondary);
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 0;
    background-color: #ffffff80;
    color: #fff;
    outline: 0;
}


.booking-form .btn-fill {
    margin-top: 40px;
    width: 100%;
}

.form-bg-details {
    color: #fff;

    padding-left: 10px;
    position: relative;
}

.form-bg-details h4 a {
    color: #25D366;
}

.form-bg-details h4 {
    font-weight: 600;
    font-size: 30px;
}

.form-bg-details h3 {
    font-weight: 600;
}


@media (max-width: 991px) {

    .booking-form {
        border-right: 0 !important;
        padding-right: 0 !important;
    }

    .form-bg-details {
        padding-top: 30px;
        text-align: center;
    }

}

.transport-home {
    padding: 20px 0 50px 0;
}

.vehicle-box {
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
    background-color: #ffffff;
    margin-bottom: 10px;
    overflow: hidden;
}

.vehicle-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.vehicle-box img:hover {
    transform: scale(1.05);
}

.vehicle-content {
    padding: 10px 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.vehicle-content h4 {
    margin-bottom: 0;
    color: var(--gold-color);
    font-weight: 800;
}

.vehicle-content p {
    margin-bottom: 0;
    font-weight: bold;
    color: white;
}

#vehicleSplide .splide__pagination {
    bottom: -20px;
}

#vehicleSplide .splide__pagination__page.is-active {
    background: var(--primary-color) !important;

}

.splide__pagination__page {
    background-color: var(--secondary-color) !important;
    width: 10px !important;
    height: 10px !important;
}

.approved-home {
    padding: 20px 0 20px 0;


}

.sponsor img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.sponsor {
    padding: 10px;
}

@media (max-width: 991px) {
    .sponsor img {
        width: 100%;
        height: 80px;
        object-fit: cover;
    }

    .services-box {
        justify-content: center;
    }
}

.service-cont {
    color: #fff;
}

.service-icon i {
    color: #fff;
    font-size: 60px;
    padding-right: 20px;
}

.services-box {
    display: flex;
    align-items: center;


}

.service-cont h3 {
    margin-bottom: 0;
}

.ftr-bg {
    padding: 150px 0 50px 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .98), rgba(0, 0, 0, .2)), url(../images/ftr-1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.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);

    }
}

.ftr-head h3 {
    color: var(--white);
    font-weight: 800;
    position: relative;
    padding-left: 15px;
    font-size: 30px;
    margin-bottom: 15px;

}

.ftr-head h3::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    content: "";
    background-color: var(--gold-color);

}

.ftr-head {
    position: relative;
}

.ftr-head ul li a {
    color: #fff;
}

.ftr-head ul li {
    margin-bottom: 5px;
}

.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(--gold-color);
}

@media (max-width: 991px) {
    .ftr-bg {
        padding: 50px 0 20px 0 !important;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../images/ftr-1.png) !important;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        color: #fff;
    }

    .ftr-head {
        text-align: center;
    }

    .ftr-head h3::before {
        display: none !important;
    }

}

.desk li {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smoother transition */
}

.desk li:hover {
    transform: translateX(10px);
}

.desk ul li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;

}

.home-chat .footer-social a>i.bi.bi-facebook {
    background-color: #1877f2
}


.home-chat .footer-social a>i.bi.bi-youtube {
    background-color: #ff0000
}

.home-chat .footer-social a>i.bi.bi-instagram {
    background-color: #c32aa3
}

.home-chat .footer-social a>i.bi.bi-tiktok {
    background-color: #010101
}

.home-chat .footer-social a>i.fab.fa-tripadvisor {
    background-color: #00af87
}

.home-chat .footer-social a>i.bi.bi-whatsapp {
    background-color: #25d366
}

.home-chat .footer-social a>i.bi.bi-google {
    background-color: #ea4335
}

.home-chat .footer-social a>i.bi.bi-threads {
    background-color: #1f1f1f
}

.home-chat .footer-social a>i.bi.bi-twitter-x {
    background-color: #1f1f1f
}


.home-chat .footer-social a {
    margin-right: 0px;
    position: relative;
    display: flex;
}

.home-chat {
    position: fixed;
    bottom: 30%;
    right: 0;
    z-index: 3;
}

.home-chat a,
.home-chat a:hover {
    text-decoration: none;
}

.home-chat .footer-social a>i {
    font-size: 25px;
    text-align: center;
    height: 45px;
    width: 45px;
    color: #fff;
    line-height: 45px;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    display: block;
    position: relative;

}

.socail-ic ul {
    display: flex;
    padding: 0;
    color: var(--white) !important;
    flex-wrap: wrap;

}

.socail-ic ul li {
    list-style: none;
    margin-right: 5px;
    color: var(--white);
    font-size: 20px;


}

.socail-ic ul a {
    color: var(--white);
    margin-right: 15px;
    transition: .3s ease;
}

.socail-ic ul a:hover {
    color: var(--secondary-color);

}

@media (max-width: 991px) {
    .cloud {
        display: none !important;

    }

    .socail-ic ul {
        justify-content: center;
    }




}

.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;
}

.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 {
    font-weight: 600;
    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.6), 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-space {
    padding: 50px 0;
}

.about-logo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.mv-box {
    border-left: 7px solid var(--primary-color);
    padding-left: 15px;
}

.mv-box h3 {
    margin-bottom: 5px;
}

.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.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img .zoom-icon {
    color: white;
    font-size: 60px;
    pointer-events: none;
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-img .zoom-icon::before,
.gallery-img .zoom-icon::after {
    content: "";
    position: absolute;
    background-color: white;
    transition: transform 0.3s ease;
}

.gallery-img .zoom-icon::before {
    width: 2px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-img .zoom-icon::after {
    width: 40px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-img:hover img {
    transform: scale(1.1);
    filter: brightness(60%);
    /* Darker brightness */
}

.gallery-img:hover .overlay {
    opacity: 1;
}

.gallery-img:hover .zoom-icon {
    transform: rotate(90deg);
    /* Rotate to form a plus */
}

.contact-form {
    background: transparent;

}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #000000;
    font-size: 20px;
    font-family: var(--font-secondary);
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 0;
    background-color: #ffffff;
    color: #808080;
    outline: 0;
}


.contact-form .btn-fill {
    margin-top: 40px;
    width: 100%;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
}

.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;
}

.detail-dest {
    overflow: hidden;
}

.detail-dest img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.detail-dest img:hover {
    transform: scale(1.1);

}

.detail-dest {
    margin-bottom: 20px;
}

#dtSplide .splide__arrow,
#destinationSplide .splide__arrow {
    background-color: var(--gold-color);
    border-radius: 0;
    opacity: 1;
}

#dtSplide .splide__arrow svg,
#destinationSplide .splide__arrow svg {
    fill: var(--white);
    width: 20px;
    /* Increase size */
    height: 20px;
    /* Increase size */
}

.suggest-box {
    padding: 30px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/suggest.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;

}

.suggest-box h3 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 15px;

}

.suggest-box ul li {
    margin-bottom: 10px;

}

.suggest-box ul li a {
    color: #fff;
    padding: 5px 20px;
    background-color: rgba(255, 255, 255, 0.4);
    width: 100%;
    display: block;
    border-bottom: 2px solid transparent;
    transition: .3s ease;

}

.suggest-box ul li a:hover {
    border-bottom: 2px solid var(--secondary-color);

}

.dest-overview {
    margin-bottom: 45px;
    padding: 20px 20px;
    background-color: #f3f3f3;
}

.dest-overview p {
    margin-bottom: 7px;
    color: #393939;
}

.dest-overview h3 {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .suggest-box {
        margin: 15px 0;
    }
}

.tour-desc {
    padding: 20px 25px;
    background-color: #f3f3f3;
    margin: 20px 0;
}

.tour-desc h3 {
    color: var(--gold-color);
    font-weight: 600;
}

.tour-rout {
    padding: 20px 25px;
    background-color: #f3f3f3;
    margin-bottom: 20px;
}

.day-box {
    background: #f6f6f6;
    padding: 5px 15px;
    border-radius: 0px;
    margin-bottom: 10px;
    padding-top: 10px;

}

.day-box ul {
    list-style: none;
    padding: 0;
    padding-left: 30px;
}

.day-box ul li {
    padding: 5px 0;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    /* Aligns items to the top */
    margin-bottom: 0;
}

.day-box ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 20px;
    line-height: 1;
    /* Ensures the dot aligns properly */
    margin-top: 4px;
    /* Adjust as needed */
}

.day-box p {
    margin-bottom: 0;
    padding-left: 10px;
}


.day-box h3 {
    position: relative;
    padding-left: 30px;
    color: var(--primary-color);
    font-weight: bold;
}

.day-box h3::before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-color);
    font-size: 22px;
}

@media (max-width: 991px) {
    .day-box ul {
        list-style: none;
        padding: 0;
        padding-left: 0 !important;
    }
}

.tour-scroll {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    background: #fffdfd;
    border-radius: 0;

}

.contact-form-2 {
    margin: 0 auto;
    padding: 20px 40px;
    background-color: #f1f1f1;
    margin-bottom: 15px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/form-bg-pckg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.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;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    outline: 0;
}

.contact-form-2 input::placeholder,
.contact-form-2 textarea::placeholder {
    color: #efecec;
    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;
        margin: 20px 0;
    }

    .contact-form-2 input,
    .contact-form-2 textarea {
        font-size: 14px;
    }

    .contact-form-2 .submit-btn {
        font-size: 16px;
    }

    .tour-desc {
        padding: 10px !important;
    }

    .day-box {
        padding: 10px 5px;
    }

    .tour-rout {
        padding: 20px 10px;

    }

    .tour-scroll {
        border: 0;
    }
}

.contact-form-2 h3 {
    text-align: center;
    padding-bottom: 10px;
    color: var(--white);
    font-weight: bold;
}

.dest-map h3 {
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--gold-color);
}

.whatsapp img {
    position: fixed;
    bottom: 30px;
    left: 50px;
    z-index: 3;
    transition: transform .6s ease-in-out;

}

@media (max-width: 991px) {
    .whatsapp img {
        right: 20px;
        width: 80px !important;

    }
}

#destinationSplide .splide__pagination {
    bottom: -10px;
}

#destinationSplide .splide__pagination__page.is-active {
    background: var(--primary-color) !important;

}

.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: 991px) {

    .custom-form .radio-group,
    .custom-form .checkbox-group {
        flex-direction: column;
    }

    .preloader1 img {
        width: 180px !important;
    }

}

.cst-bg {
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.92)), url(../images/new-custom.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: 750px;
}

/* Preloader styles */
.preloader1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.preloader1 img {
    animation: bounce 2s infinite ease-in-out;
    width: 220px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


.package-bin {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 15px;

}

.package-bin img {
    width: 100%;
    height: 450px;
    object-fit: cover;

    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Smooth transition for transform and opacity */
}

.package-bin:hover img {
    transform: scale(1.05);
    /* Slightly zoom in on hover */
}

.pckge-all {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: #fff;


}

.pckge-all h3 {
    margin-bottom: 0;
    font-weight: 600;
}

.overlayer-pckg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 10px
}

.days-count {
    display: flex;

}

.days-count h4 {
    margin-right: 5px;
    font-size: 18px;
    padding: 5px;
    background-color: #ffffff50;

}

.arrow-pckg {
    position: absolute;
    color: #fff;
    bottom: 45px;
    right: 20px;
}

.arrow-pckg a {
    color: var(--white);
}

.arrow-pckg a i {
    font-size: 40px;
}

.place-cart {
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;


}

.place-cart img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transform: scale(1.08);
    transition: .3s ease;
}

.place-cart:hover img {
    transform: scale(1);
    filter: brightness(1.1);

}

.place-details {
    position: absolute;
    color: #fff;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
}

.place-details h3 {
    margin-bottom: 0;
    font-weight: bold;
}

.overlayer-place {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 10px
}

.arrow-place {
    position: absolute;
    color: #fff;
    bottom: 22px;
    right: 20px;
}

.arrow-place a {
    color: var(--white);
}

.arrow-place a i {
    font-size: 40px;
}

#vehicle-form {
    width: 100%;
    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    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-radius: 0;
    font-size: 14px;
    outline: 0;

    border: 1px solid #a2a2a2;
}

#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);
}