/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/
.px-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Footer Fixed seen in small device**/
.footerfixednav {
    height: 45px;
    position: fixed;
    bottom: -3px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: none;
    z-index: 1000;
    background-color: #fff !important;
}
.footerfixednav i {
    font-size: 22px;
}
@media (max-width: 991px) {
    .footerfixednav {
        display: block;
    }
    .back-to-top {
        right: 10px;
        bottom: 49px;
    }
}
/*End fixed footer*/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 #ff6a00;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #ff6a00 !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 #ff6a00;
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 #ff6a00;
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #ff6a00;
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid #ff6a00 !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid #ff6a00 !important;
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: #ff6a00 !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Roboto", sans-serif;
    position: relative;
    padding: 35px 15px;
    color: #9b4000 !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: #ff6a00;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 60px;
    /*margin: 0px 33px;*/
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: 0.5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #ff6a00;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: 0.5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: fixed;
        width: 100%;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: #ff6a00;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 10px;
        border: 1px solid #ff6a00;
        color: #ff6a00;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
        position: absolute;
        background: rgb(255, 255, 255);
        width: 100%;
        margin: 0px;
        top: 100%;
        left: 0px;
        padding: 0px 20px 20px 20px;
        z-index: 99;
        text-align: left;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #ff6a00 !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        background: cornsilk;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: cornsilk;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: #ff6a00;
        transition: 0.5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 400px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 300px !important;
        background-color: #ff6a00;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        position: absolute;
        top: 22%;
        left: 0;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        position: absolute;
        top: 22%;
        right: 0;
    }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(41, 40, 40, 0.6), rgba(41, 40, 40, 0.6)),
        url(../img/allbackimg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 50px 0;
}
@media (max-width: 768px) {
    .bg-breadcrumb {
        height: 200px;
        padding: 20px 0 50px 0;
    }
}
.bg-breadcrumb .breadcrumb-item a {
    color: white !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #ff6a00;
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid #ff6a00 !important;
}
/*** About End ***/

/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: #ff6a00 !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/

/*** Walking Tour Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(41, 40, 40, 0.6) rgba(41, 40, 40, 0.6)
        rgba(41, 40, 40, 0.6) rgba(41, 40, 40, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: #ff6a00;
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #ff6a00;
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #ff6a00;
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: #ff6a00;
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: #ff6a00;
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Walking Tour End ***/

/*** Booking Process ***/
.ProcessIcon {
    height: 90px;
    width: 90px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
}
.DisProcess img {
    height: 80px;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .DisProcess {
        display: none;
    }
}
/*** End Booking Process **/

/*** Cab Booking Start ***/
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: #ff6a00;
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour
    #InternationalTab-2
    .international-item
    .international-content
    .international-info
    a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour
    #InternationalTab-2
    .international-item:hover
    .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour
    #InternationalTab-2
    .InternationalTour-carousel
    .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid #ff6a00;
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: #ff6a00;
}
/*** Cab Booking End ***/

/*** Gallery ***/
.galleryborder {
    border-radius: 10px;
    border: 2px solid #ff6a00;
    /*height: 200px;*/
    /*object-fit: cover; */
    /*transition: transform 0.3s ease; */
}

/*** End gallery ***/

/*** Package Booking Form Start ***/
.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 #ff6a00;
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: #ff6a00 !important;
}
/*** Package Booking Form end ***/

/*** Start Contact Page Image ***/
.image-container {
    overflow: hidden; /* Ensure the image stays within the container */
}

.image-container img {
    width: 100%;
    transition: transform 1s ease; /* Smooth transition */
}

.image-container:hover img {
    transform: scale(1.2); /* Adjust the scale factor as needed */
}
/*** End Contact Page Image***/

/*** Rice Pudding Border ***/
.ricepuddingborder {
    border-right: 1px solid grey;
}
@media (max-width: 991px) {
    .ricepuddingborder {
        border-right: none;
    }
}
/** end rice pudding border**/

/*** Room Boooking Card***/
.roombook {
    overflow: hidden; /* Ensure the div stays within the container */
    position: relative;
    margin-top: 30px;
}

.roombook-item {
    width: 100%;
    height: 100%;
    transition: transform 1s ease; /* Smooth transition */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.roombook:hover .roombook-item {
    transform: translateY(20px); /* Adjust the translation value as needed */
}
/*** End Room Booking Card ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid #ff6a00;
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(41, 40, 40, 0.6);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: #ff6a00 !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/

/*** Room Booking Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(46, 45, 45, 0.6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Room Booking End ***/

/*** Walking Tour Start***/
.tourpackage {
    overflow: hidden; /* Ensure the div stays within the container */
    position: relative;
}

.tourpackage-item {
    width: 100%;
    height: 100%;
    transition: transform 1s ease; /* Smooth transition */
    overflow: hidden;
    position: relative;
}

/*.tourpackage:hover .tourpackage-item {*/
/* transform: translateY(20px);  */
/*}*/

.tourpackage-img-inner,
.tourpackage-img {
    overflow: hidden; /* Ensures that the image doesn't overflow the card */
}

.tourpackage-img-inner img {
    transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
    width: 100%;
    height: auto;
    display: block;
}

.tourpackage-item:hover .tourpackage-img-inner img {
    transform: scale(1.8); /* Zooms in the image on card hover */
}

/**** Walking Tour End****/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #ff6a00;
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid #ff6a00;
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: #ff6a00;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #ff6a00;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #ff6a00;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: #ff6a00;
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: #ff6a00;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial
    .testimonial-carousel
    .owl-item.center
    .testimonial-item
    .testimonial-comment {
    background: #ff6a00 !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial
    .testimonial-carousel
    .owl-item.center
    .testimonial-item
    .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** About Carousel Start ***/
.aboutimg .aboutimg-carousel {
    position: relative;
}

.aboutimg .aboutimg-carousel .aboutimg-item .aboutimg-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #ff6a00;
    border-style: dotted;
    border-radius: 50%;
    margin: 0px;
}

/*.aboutimg .aboutimg-carousel .owl-dots {*/
/*    margin-top: 30px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.aboutimg .aboutimg-carousel .owl-dot {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    margin: 0 5px;*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    background: var(--bs-light);*/
/*    border: 1px solid #ff6a00;*/
/*    border-radius: 10px;*/
/*    transition: 0.5s;*/
/*}*/

/*.aboutimg .aboutimg-carousel .owl-dot.active {*/
/*    width: 40px;*/
/*    background: #ff6a00;*/
/*}*/

/*.aboutimg .aboutimg-carousel .owl-nav .owl-prev {*/
/*    position: absolute;*/
/*    top: -55px;*/
/*    left: 0;*/
/*    padding: 5px 30px;*/
/*    border: 1px solid #ff6a00;*/
/*    border-radius: 30px;*/
/*    transition: 0.5s;*/
/*}*/

/*.aboutimg .aboutimg-carousel .owl-nav .owl-next {*/
/*    position: absolute;*/
/*    top: -55px;*/
/*    right: 0;*/
/*    padding: 5px 30px;*/
/*    border: 1px solid #ff6a00;*/
/*    border-radius: 30px;*/
/*    transition: 0.5s;*/
/*}*/

/*.aboutimg .aboutimg-carousel .owl-nav .owl-prev i,*/
/*.aboutimg .aboutimg-carousel .owl-nav .owl-next i {*/
/*    color: #ff6a00;*/
/*    font-size: 17px;*/
/*    transition: 0.5s;*/
/*}*/

/*.aboutimg .aboutimg-carousel .owl-nav .owl-prev:hover,*/
/*.aboutimg .aboutimg-carousel .owl-nav .owl-next:hover {*/
/*    background: #ff6a00;*/
/*}*/

/*.aboutimg .aboutimg-carousel .owl-nav .owl-prev:hover i,*/
/*.aboutimg .aboutimg-carousel .owl-nav .owl-next:hover i {*/
/*    color: var(--bs-white);*/
/*}*/

.aboutimg .aboutimg-carousel .owl-item.center .aboutimg-item .aboutimg-comment {
    background: #ff6a00 !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.aboutimg .aboutimg-carousel .owl-item.center .aboutimg-item .aboutimg-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}
/*** About Carousel End ***/

/*** Map Css Start ***/
.mapcss {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 10px;
}
@media (max-width: 860px) {
    .mapcss {
        height: 300px;
    }
}
/*** Map CSS End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(41, 40, 40, 0.6), rgba(41, 40, 40, 0.6)),
        url(../img/ricepudding.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(17, 17, 17, 0.7)),
        url(../img/footerback.png);

    background-position: center center;
    background-repeat: no-repeat;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    color: #ff6a00;
}

/*** Footer End ***/

/** Fixed cab booking **/
.fixed-cab {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    background-color: #ff6a00 !important; /* Primary color */
    color: white !important;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    transition: all 0.3s ease;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.fixed-cab:hover {
    background-color: #ff5500 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
}

.fixed-cab:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.4);
}

/* Cab icon styling */
.fixed-cab .cab-icon {
    font-size: 22px;
    margin-right: 2px;
    margin-bottom: 10px;
}

/* Pulse animation */
.fixed-cab::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(255, 106, 0, 0.4);
    z-index: -1;
    animation: pulse 2s infinite;
    left: 0;
    top: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Animation for initial appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fixed-cab {
    animation: fadeInUp 0.5s forwards;
}

@media (max-width: 991px) {
    .fixed-cab {
        bottom: 50px;
        left: 10px;
    }
}

@media (max-width: 991px) {
    .copyright {
        margin-bottom: 40px;
    }
}

@media (max-width: 500px) {
    .copyright {
        margin-bottom: 100px;
    }
}

/* Image on index css */
.fixed-gallery-img {
    height: 250px;
    /* Set desired uniform height */
    object-fit: cover;
    /* Crops the image while maintaining aspect ratio */
    object-position: center;
    /* Centers the crop */
    border-radius: 8px;
    /* Optional: smooth corners */
}

/**popup */
    .user-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .user-popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .user-popup-container {
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        max-width: 450px;
        width: 90%;
        padding: 0;
        position: relative;
        transform: scale(0.7) translateY(100px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
    }

    .user-popup-overlay.show .user-popup-container {
        transform: scale(1) translateY(0);
    }

    .user-popup-header {
            background: linear-gradient(145deg, #ff5e00 0%, #b33c0a 40%, #ff5e00 50%, #802b00 100%) !important;
        padding: 30px 30px 20px;
        text-align: center;
        position: relative;
    }

    .user-popup-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    .success-icon i {
        font-size: 36px;
        color: white;
    }

    .user-popup-title {
        color: white;
        font-size: 28px;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .user-popup-body {
        padding: 40px 30px 30px;
        text-align: center;
    }

    .welcome-message {
        font-size: 18px;
        color: #495057;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .user-name {
        color: #913C10;
        font-weight: 600;
    }

    .features-list {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 15px;
        padding: 20px;
        margin: 25px 0;
        border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
           background: linear-gradient(145deg, #ff5e00 0%, #b33c0a 40%, #ff5e00 50%, #802b00 100%) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .feature-icon i {
        font-size: 14px;
        color: white;
    }

    .feature-text {
        color: #495057;
        font-size: 14px;
        margin: 0;
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    @media (max-width: 576px) {
        .user-popup-container {
            margin: 20px;
            width: calc(100% - 40px);
        }

        .user-popup-title {
            font-size: 24px;
        }

        .welcome-message {
            font-size: 16px;
        }
    }