/*  1 LODER */
/*  2 NANBAR */
/*  3 HREO SECTION */
/*  4 ABOUT US */
/*  5 PACKERS */
/*  6 RENDER CARD NAME */
/*  7 PROCESS */
/*  8 Gujarat IMAGE */
/*  9 TOUR LOCATION NAME */
/*  10 WHY CHOOS US */
/*  11 SERVICES */
/*  12 OUR FLEETS */
/*  13 AREA TO PROVIDE TAXI */
/*  14 OUR ACHIVEMENTS */
/*  15 RANGE */
/*  16 TAGE CONTACT */
/*  17 OUR CONTACT */
/*  18 FOOTER */


.loder-body {
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    overflow: hidden;
    transition: height 0.6s ease, opacity 0.6s ease
}

.loder-body::after {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--prim-color);
    content: 'Gujarat';
    font-size: 18px;
    padding: 13px 30px;
    line-height: 1;
    text-transform: uppercase;
    color: black;
    border-radius: 30px;
    font-weight: 500;
    font-family: var(--heading);
    display: none;
}

.loder-body .loder-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.loder-body .loder-item .name {
    font-size: 30px;
    font-family: 'StoryScript', cursive;
    font-weight: 700;
    line-height: 1;
    color: var(--action-color);
    text-shadow: 0 0 3px var(--gray);
    display: none;
}

.loder-body .loder-item img {
    width: 120px;
    animation: rotte360 linear 3s infinite;
    filter: invert(1);
}


.loder-body .loder-img {
    width: 100%;
    height: 150px;
    background: url('../images/bg/loder-bg.png');
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: 0;
}

.loder-body.hide {
    height: 0;
}

.loder-body.hide .loder-img {
    display: none;
}

.loder-body.hide .loder-item img {
    display: none;
}


/* ============ NAVBAR ============== */
header {
    background-color: rebeccapurple;
    background: linear-gradient(135deg, #FF9933, #FF5E62, #8E2DE2);
}

.header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.header-body .header-item a {
    font-size: 15px;
    font-family: var(--heading);
    font-weight: 500;
    color: var(--white);
}

.header-body .socail-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9vw;
}

.header-body .socail-bar a {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
    font-size: 13px;

}

.header-body .socail-bar a:hover {
    background: var(--sec-color);
    color: var(--action-color);
}

.header-body .center-item {
    font-size: 17px;
    font-weight: 600;
    font-family: 'StoryScript', cursive;
    color: var(--prim-color);
    color: white;
    text-shadow: 0 0 2px rgb(0, 0, 0);
}

.mynavbar {

    position: fixed;
    width: 100%;
    top: 44px;
    backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, 0.322);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;

}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;

}

.navbar .logo {
    height: 75px;
    padding: 10px 0;
}

.navbar .logo img {
    height: 100%;
}

.right-sec .navbar-body {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 75px;
}

.right-sec .navbar-body .navitem {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.right-sec .navbar-body .navitem .navlist {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    padding: 0 3px;
    font-family: var(--heading);
}

.right-sec .navbar-body .navitem:hover {
    background: #ffd6aeb0;
}

.right-sec .navbar-body .navitem:hover .navlist {
    color: var(--action-color);
}

.submenu {
    width: 280px;
    height: auto;
    max-height: 325px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    z-index: 100;
    overflow: auto;
    display: none;
}

.submenu::-webkit-scrollbar {
    background-color: var(--action-color);
    width: 5px;
}

.submenu::-webkit-scrollbar-thumb {
    background-color: var(--prim-color);
}

.submenu .subitem:nth-last-child(1) {
    border-bottom: none;
}

.submenu .subitem {
    padding: 14px 10px 14px 20px;
    border-bottom: 1px solid black;
}

.submenu .subitem a {
    font-size: 15px;
    font-family: var(--heading);
    font-weight: 500;
    color: black;
}

.submenu .subitem:hover {
    background-color: var(--action-color);
    border-bottom-color: #fff;
}

.submenu .subitem:hover a {
    color: var(--white);
}

.submenu .subitem:has(+ .subitem:hover) {
    border-bottom-color: #fff;
}

.right-sec .navbar-body .navitem:hover .submenu {
    display: block;
}

.mynavbar.scrolled {
    animation: navbarDown 1s ease forwards;
    top: 0;
    background: white;
}



.hamburger {
    width: 40px;
    height: 35px;
    display: none;
    border-radius: 0 !important;
    padding: 0 !important;
    flex-direction: column;
    justify-content: space-evenly;

}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 30px;
}


.scrolled .hamburger .line {
    background-color: black;
}


/* =========== phone  navbar ===========  */

.phone-navbar {
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0px;
    min-width: 0px;
    width: 50%;
    background-color: white;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0px -10px 10px rgb(134, 134, 134);
    display: none;
    transition: all .3s;

}

.phone-navbar::-webkit-scrollbar {
    background: rgb(224, 223, 223);
    width: 6px;
    border-radius: 30px;

}

.phone-navbar::-webkit-scrollbar-thumb {
    background-color: #0066ff;
    border-radius: 30px;
}

.phone-navbar .pheader {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-bottom: 1px solid black;
}

.phone-navbar .pheader .plogo {
    width: 150px;
}

.phone-navbar .pheader .plogo img {
    width: 100%;
}

.phone-navbar .pheader .close-btn {
    width: 35px;
    height: 35px;
    background: rgba(170, 169, 169, 0.548);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.1s;

}

.phone-navbar .pheader .close-btn i {
    transition: all 0.1s;

}


.phone-navbar .pheader .close-btn:hover {
    background-color: white;
    color: var(--action-color);
}

.phone-navbar .pheader .close-btn:hover i {
    transform: rotate(360deg);
}

.pmenu .pitem {
    width: 100%;
    /* height: 100%; */
    background-color: whitesmoke;
    border-bottom: 1px solid lightgray;
    padding: 15px 0px;
    background-color: white
}

.pmenu .pitem a {
    width: 100%;
    height: 100%;
}

.pmenu .pitem:hover {
    background: rgb(189, 214, 252);
}

.pmenu .pitem .pitem-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pmenu .pitem .pitem-btn .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmenu .pitem .pitem-btn .icon:hover {
    color: var(--action-color);
}

.pmenu .pitem a {
    color: black;
    padding: 0px 15px;

    font-weight: 600;
    font-family: var(--heading);
}

.pmenu .pitem .pdropdown {
    background: whitesmoke;
    margin-top: 10px;
    display: none;
}

.pmenu .pitem .pdropdown li {
    padding: 10px 20px;
}

.pmenu .pitem .pdropdown li a {
    color: rgb(94, 93, 93);
    font-weight: 400;
}

.pmenu .pitem .pdropdown li:hover {
    background: rgb(203, 222, 250);
}

.menu-open {
    display: block;
    min-width: 320px;

}



.dropdown-open {
    display: block !important;

}

.phone-btn-body {
    width: 100%;
    height: auto;
    padding: 10px;
}

.phone-btn-body .phone-number {
    width: 100%;
    padding: 10px;
    background-color: #1447E6;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.2s;
}

.phone-btn-body .phone-number1 {
    color: var(--action-color);
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.phone-btn-body .phone-number3 {
    background-color: #FDC700;
}

.phone-btn-body .phone-number:hover {
    transform: translateY(-3px);
}




/* ============= slider =============== */
.slider-section {
    position: relative;
}

.MySlider {
    width: 100%;
}

.MySlider .swiper-slide {
    width: 100%;
}

.MySlider .swiper-slide .slider-img {
    width: 100%;
}

.MySlider .swiper-slide .slider-img img {
    width: 100%;
}

.MySlider .swiper-pagination-bullet {
    background: transparent;
    background-color: var(--gray);
    opacity: 1;
}

.MySlider .swiper-pagination-bullet-active {
    background: var(--action-color);
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: hsla(0, 0%, 0%, 0.522);
    border-radius: 50%;
    color: #fff;

}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--action-color);
    color: #fff;
    transform: scale(1.1);
    transition: 0.3s;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.tow-section {
    background: linear-gradient(#fde5cc, white);
    position: relative;
    overflow-x: hidden;
}

.about-bg-img {
    position: absolute;
    right: -50px;
    width: 400px;
    top: 40%;
    filter: opacity(0.2);

}

.about-bg-img img {
    width: 100%;
    filter: invert(-1);
}

.gujarat-top {
    display: none;
}

.gujarat-heading {
    font-size: 65px;
    font-size: clamp(36px, 6vw, 65px);
    color: black;
    text-align: center;
    margin-top: 50px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: var(--heading);
    line-height: 1.3;
}

.gujarat-heading strong {
    /* text-shadow: 2px 5px 7px rgb(90, 90, 90); */
    color: brown;
}

.gujarat-heading .heading-body-img {
    display: inline-flex;
    width: 100px;
    height: 55px;
    overflow: hidden;
    margin-top: 20px;
    margin-top: auto;
    margin-bottom: 0;
    border-radius: 30px;
    transform: translateY(8px);
    transition: all ease-in 0.3s;
    position: relative;

}

.gujarat-heading .heading-body-img::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background: url('../images/img/pop.gif');
    z-index: 1;
    display: none;
}

.gujarat-heading .heading-body-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all ease-in 0.3s;
}

.gujarat-heading .heading-body-img:hover img {
    transform: scale(1.1);
}

.gujarat-heading .heading-body-img:hover {
    transform: scale(1.1) translateY(8px);

}

.gujarat-heading .heading-body-img:hover::after {
    display: block;
}

.box-img {
    overflow: hidden;
    width: 100%;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 29px 0px
}

.box-img img {
    border-radius: 30px;

}

.tour-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tour-body .tour-right {
    width: 50%;
}

.tour-body .tour-right img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
}

.tour-body .tour-left {
    width: 50%;
}

.tour-body .tour-left img {
    width: 100%;
}

.right-side-body .right-side {
    width: 70%;
    margin: auto;
    margin-top: 30px;

    position: relative;

}

.right-side-body .right-side::before {
    position: absolute;
    top: -20px;
    right: -20px;
    content: '';
    background: #dfbaff;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.right-side-body .right-side img {
    width: 100%;
    border-radius: 18px;
    position: relative;
}

.left-side-body {
    margin-left: 3vw;
}

.left-side-body .text {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--black);
}

.left-side-body .text i {
    color: var(--action-color);
}

.left-side-body .text p {
    font-weight: 300;
    font-size: 13px;
    width: 90%;
}

.left-side-body .left-side {
    width: 70%;
    /* margin: auto; */
    margin-top: 30px;

    position: relative;

}

.left-side-body .left-side::before {
    position: absolute;
    top: -20px;
    left: -20px;
    content: '';
    background: #dfbaff;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.left-side-body .left-side img {
    width: 100%;
    border-radius: 18px;
    position: relative;
}

.right-content {
    margin-top: 60px;
}

.right-content p {
    font-size: 14px;
}

.right-content .button-content i {
    transform: rotate(-45deg);
    transition: all ease 0.4s;
}

.right-content .button-content:hover i {
    transform: rotate(-90deg);

}

/* =============== About Us ================ */
.about-img {
    width: 100%;
}

.about-img img {
    width: 100%;
}

.services-card {
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 4px;
    /* overflow: hidden; */
    background: #4da3ff;
}

.services-card .ser-img {
    width: 100%;
}

.services-card .ser-img img {
    width: 100%;
}

.services-card .name {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-weight: 500;
    color: white;
    padding: 2px;
    font-size: 14px;
}

.brand-card {
    width: 100%;
    height: 100%;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.brand-card .card-img {
    width: 100%;
    /* background: white; */
    border-radius: 10px;
    /* box-shadow: rgba(173, 173, 173, 0.2) 0px 2px 8px 0px; */
}

.brand-card .card-img img {
    width: 80%;
    padding: 20px 0;
    margin: auto;
    display: block;
}

.brand-card .card-des {
    padding: 10px;
    /* margin: 10px ; */
    background-color: #dfbaff;
    background-color: #A5CE57;
    border-radius: 5px;
    text-align: center;
}

.brand-card .card-des .tilte {
    font-size: 20px;
    font-family: var(--heading);
    font-weight: 600;
    text-transform: uppercase;
    color: black;
}

.brand-card .card-des .line {
    font-size: 12px;
    padding: 5px 0;
}

.odd {
    margin-top: 60px;
}

.back-img-pro {
    width: 300px;
    position: absolute;
    left: -100px;
    top: 10px;
    opacity: 0.3;
}

.back-img-pro img {
    width: 100%;
}

.process-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 40px 20px;
    border-radius: 15px;
    background-color: white;
}

.process-card:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.process-card .next-btn {
    position: absolute;
    right: -20px;
    top: 45%;
    color: var(--gray);
    font-size: 20px;
}

.process-card .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #96ffef;
    border-radius: 50%;
    color: black;
    font-size: 18px;
    border: 1px solid var(--prim-color);
}

.process-card .num {
    width: 90px;
    height: 35px;
    background-color: var(--prim-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: black;
    transform: translateY(-13px);
    text-transform: capitalize;
    font-weight: 500;

}

.process-card .title {
    font-size: 23px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.process-card .des {
    text-align: center;
    padding: 0 5px;
    font-size: 15px;

}

.fleet-btn-body {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: auto;
    gap: 1.7vw;
    margin-top: 20px;
    flex-wrap: wrap;

}

.fleet-btn-body button {
    background-color: transparent;
    width: 100% !important;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    font-family: var(--heading);
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
}

.fleet-btn-body .tab-btn::after {
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: white;
    bottom: 0;
    left: 0;
    content: '';
    transition: all ease 0.3s;
}

.fleet-btn-body .tab-btn:hover {
    color: var(--sec-color);
}

.fleet-btn-body .tab-btn:hover::after {
    background-color: var(--sec-color);
    width: 100%;

}



.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    margin: 0px;
    margin: 7px 7px;
    animation: galleryitem 0.5s ease-in;



}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s ease;
    border-radius: 10px;

}

.gallery-item:hover img {
    transform: scale(1.1);
}

.tab-content {
    display: none;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    height: 490px;
    overflow-y: auto;
    position: relative;
}

.tab-content::-webkit-scrollbar {
    width: 7px;
    background-color: wheat;
    border-radius: 30px;
    display: none;
    position: absolute;
}

.tab-content::-webkit-scrollbar-thumb {
    background-color: rgb(134, 134, 134);
    border-radius: 30px;

}

.tab-content:hover::-webkit-scrollbar {
    display: block;
}

.tab-content.active {
    display: flex !important;
    /* gap: 10px; */
}

.tab-btn.active {

    color: var(--sec-color);
}

.fleet-btn-body .tab-btn.active::after {
    width: 100%;
    background: var(--sec-color);
}

.location-card {
    width: 100%;
    padding: 10px;
}

.location-card .location-img {
    width: 100%;
    height: 190px;
    border-radius: 20px;
}

.location-card .location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;


}

.location-card .name {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading);
    text-transform: capitalize;
}

.location-card2 {
    margin-top: 100px;
}

.location3 {
    margin-top: 180px;
}

.location-heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
}

.locat-img-left {
    width: 13vw;
    max-width: 200px;
    position: absolute;
    left: 0;
    bottom: -30px;
    opacity: 0.8;
}

.locat-img-left img {
    width: 100%;
}

.locat-img-right {
    width: 7vw;
    max-width: 100px;

    position: absolute;
    right: 0;

    bottom: -30px;
}

.locat-img-right img {
    width: 100%;
}

.mypackages {
    width: 100%;
    padding: 60px 0 30px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;

}

.package-card {
    width: 90%;
    min-width: 300px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid gainsboro;
    position: relative;
    margin: auto;
    transition: all 0.5s ease;
    background-color: var(--black);

}

.package-card .des {
    font-size: 12px;
    color: lightgray;
}

.package-card .package-img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;

}

.package-card .package-img img {
    width: 100%;
}

.package-card .name {
    font-size: 20px;
    color: white;
    font-family: var(--heading);
    font-weight: 500;
}

.package-card .icon {
    min-width: 30px;
    width: 5vw;
    bottom: 10px;
    position: absolute;
    right: 5px;
}

.package-card .icon img {
    width: 100%;
    filter: brightness(0.3);
    transition: all 0.5s ease;

}

.package-card .line .button {
    font-size: 14PX;
    padding: 0PX 20PX;
    height: 2rem;
    font-weight: 400;
    margin-top: 10PX;
}

.package-card .line .button:hover {
    color: black;
    font-weight: 500;

}

.backgroud-sec {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70%;
}

.swiper-slide-active .package-card {
    border-color: var(--action-color);
    /* your theme color */
    transform: scale(1.15) translateY(-24px);
}

.swiper-slide-active .package-card .icon img {
    filter: brightness(1);
}

.why-img-body {
    width: 100%;
    height: 100%;
}

.why-img-body .why-img {
    width: 100%;
    background-color: goldenrod;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.why-img-body .why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 130px;
    background-color: var(--action-color);
    margin-top: 20px;
    border-radius: 10px;
    gap: 10px;
    font-size: clamp(12px, 1.5vw, 21px);
    color: white;
    font-family: var(--heading);
    line-height: 1.2;

}

.year b {

    font-size: clamp(20px, 2vw, 35px);
}

.year img {
    width: 6vw;
    min-width: 35px;

    filter: invert(0.9);
}

.why-content {
    padding: 0 10px;
}

.why-item {
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.why-item .icon {
    font-size: 30px;
    color: var(--black);
    margin-bottom: 10px;
}

.why-item .title {
    font-size: 19px;
    font-family: var(--heading);
    font-weight: 600;
    color: #8E2DE2;
}

.why-item .des {
    font-size: 14px;
    line-height: 1.4;
    color: rgb(51, 51, 51);
    font-weight: 500;
}

.why-btn {
    background: #8E2DE2;
    padding: 10px 15px;
    cursor: pointer;
}

.why-btn a {
    color: white;
    font-size: 18px;
}

.why-num {
    background: black;
    padding: 10px 15px;

    cursor: pointer;
}

.why-num a {
    color: var(--action-color);
    font-size: 18px;
}

.counter-body {
    width: 100%;
    /* height: 500px; */
    border-radius: 30px;
    background: url('../images/img/bannger-bg1.jpeg') center center / cover;
    background-attachment: fixed;
    position: relative;
}

.counter-body .tagline {
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: white;
    width: 50%;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2.5vw, 28px);
    gap: 10px;
    font-family: 'Ms Madi', cursive;
}

.tagline img {
    width: 50px;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--sec-color);
    margin: 40px;
    gap: 0px;
    flex-wrap: wrap;
    border-radius: 30px;
    margin-bottom: 10px;
}

.counter-box .counter-item {
    width: 220px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.counter-item1 {
    border-right: 1px solid rgb(218, 216, 216);
    border-bottom: 1px solid rgb(218, 216, 216);
}

.counter-item2 {
    border-bottom: 1px solid rgb(218, 216, 216);
}

.counter-item3 {
    border-right: 1px solid rgb(218, 216, 216);


}

.counter-box .counter-item .num {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--heading);
}

.counter-box .counter-item .tilte {
    font-size: 23px;
    font-weight: 600;
    margin-top: 10px;
}

.test-img {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.test-img img {
    width: 100%;
}

.test-card {
    width: 100%;
    height: auto;
    padding: 25px;
    border: 1px solid black;
    background-color: white;
    background: linear-gradient(45deg, white, rgba(255, 255, 255, 0.658)), url('../images/bg/bg\ \(1\).jpg') center /contain;
}

.test-card .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;

}

.test-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-card .des {
    font-size: 14px;
    margin-bottom: 10px;
}

.test-card .title {
    font-size: 18px;
    color: black;
    font-weight: 600;
    font-family: var(--heading);
    text-transform: capitalize;
}

.test-card .rating {
    color: var(--action-color);
}

.test-card .back-img {
    width: 130px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    opacity: 0.8;
    transition: 0.3s;
}

.test-card .back-img img {
    width: 100%;
}

.test-card:hover .back-img {
    opacity: 1;
    transform: scale(1.1);
}

.test-body {
    position: relative;
    height: 100%;
}

.test-arrow-body {
    position: absolute;
    right: 0px;
    bottom: 40px;
    width: 150px;
    display: flex;
    align-items: center;
    gap: 0px;

    transform: unset;
}

.test-arrow-body .arrow {
    position: relative;
}

.car-section {
    width: 100%;
    height: auto;
    position: relative;
}

.car-section .card-img {
    width: 100%;
    height: auto;
}

.car-section .card-img img {
    width: 100%;
}

.contact-detail {
    position: absolute;
    top: 0;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    height: fit-content;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px;

}

.contact-card {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card .icon {
    width: 80px;
}

.contact-card .icon img {
    width: 100%;
}

.contact-card .des .title {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading);
}


/* contact section  */
.contact-container {
    width: 400px;
    background: #081a36;
    padding: 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #5a6c89;
    padding: 8px 5px;
    color: white;
    font-size: 15px;
    outline: none;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 14px;
    color: #aaa;
    transition: 0.3s;
    pointer-events: none;
}

.input-group select option {
    color: black;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
    top: -8px;
    font-size: 12px;
    color: #4da3ff;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(90deg, #2f80ed, #56ccf2);
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.mycontact {
    width: 100%;
    height: 100%;

}

.contact-slider {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 3vw;
    width: 100%;
    height: 100%;
    position: relative;

}

.contact-content::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(107, 106, 106, 0.288);
    z-index: 1;
}

.contact-content .header {
    color: black;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 600;
    position: relative;
    z-index: 4;
    width: fit-content;
    background: rgba(255, 255, 255, 0.2);
    /* transparent background */
    backdrop-filter: blur(10px);
    /* blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* safari support */
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: white;
    margin-top: 30px;
}

.contact-content .des {
    width: 90%;
    font-size: clamp(14px, 1.2vw, 18px);
    position: relative;
    z-index: 4;
    padding: 8px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: rgb(245, 225, 225);
}

.footer-item {
    width: 100%;
    height: auto;
}

.footer-item .f-heading {
    width: 100%;
    height: auto;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.footer-item .f-heading::after {
    position: absolute;
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--sec-color);
    left: 0;
    bottom: -4px;
    transform: skewX(-45deg);
}

.footer-item .f-heading::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: var(--sec-color);
    left: 35px;
    bottom: -4px;
    transform: skewX(-45deg);
}

.footer-item ul li {
    margin-bottom: 8px;
}

.footer-item ul li a {
    color: rgb(179, 177, 177);
    font-size: 14px;
    position: relative;
    transition: all 0.4s;
    text-transform: capitalize;
}

.footer-item ul li a::before {
    position: absolute;
    content: '>';
    left: 0;
    top: -3px;
    display: none;
    transition: all 0.7s;

}

.footer-item ul li a:hover {
    padding-left: 17px;
    color: white;
}

.footer-item ul li a:hover::before {
    display: block;
}

.socailbar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.socailbar a {
    width: 35px;
    height: 35px;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-about {
    display: flex;
    align-items: end;
    /* justify-content: end; */
    flex-direction: column;
}

.footer-about .f-logo {
    width: 200px;
    background-color: rgb(214, 214, 214);
    padding: 10px 20px;
    border-radius: 3px;
}

.footer-about .f-logo img {
    width: 100%;
}

.footer-about .f-heading {
    /* text-align: end; */
    width: fit-content;
}

.footer-about .des {
    text-align: end;
    font-size: 14px;
    color: rgb(190, 190, 190);
}

.quicklinks {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid white;
    width: 95%;
    margin: auto;
    padding: 20px 10px 0px 10px;
    flex-wrap: wrap;
}

.quicklinks a {
    padding: 0px 12px;
    border-right: 1px solid white;
    line-height: 1;
    margin-top: 15px;
    color: lightgray;
}
.footer-item ul{
    height: 262px ;
    overflow-y: auto;
}
.footer-item ul::-webkit-scrollbar {
  width: 8px;
}

.footer-item ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.footer-item ul::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0px;
}

.footer-item ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.quicklinks a:nth-last-child(1) {
    border: none;
}

.quicklinks a:hover {
    color: white;
}

.copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 10px 5px 10px;
}

.copyright .container p {
    font-size: 14px;
    color: black;
    font-weight: 600;
    font-family: var(--heading);
}

.copyright .container p a {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.action-text {
    position: fixed;
    right: -25px;
    bottom: 40px;
    transform: rotate(90deg);
    width: 80px;
    height: 40px;
    background-color: #0066ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 2px;
    z-index: 200;
}


.action-body {
    width: fit-content;
    height: auto;
    background-color: white;
    position: fixed;
    bottom: 20px;
    right: -100%;
    padding: 10px;
    box-shadow: 0 0 4px gray;
    transition: 0.6s;
    z-index: 210;

}

.action-body img {
    width: 25px;
    margin-right: 10px;
}

.action-body ul {
    display: flex;
    align-items: start;
    flex-direction: column;

}

.action-body ul li {
    padding: 7px 3px;
}

.action-body ul li:nth-last-child(1) {
    border-top: 1px solid rgba(0, 0, 0, 0.377);
}

.action-body ul li a {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--heading);
    color: black;
    text-transform: uppercase;
}

.action-body ul li a:hover {
    color: #0066ff;
}

.action-sec:hover .action-body {
    right: -3px !important;
}

.breadcrumb-body {
    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: column;
    height: 300px;
    width: 100%;
    background: linear-gradient(rgba(128, 128, 128, 0.25),
            rgba(128, 128, 128, 0.28)),
        url('../images/bg/breadcrumb-body.jpg') center center / cover no-repeat;
}

.breadcrumb-body .breadcrumb-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;

}

.breadcrumb-body .breadcrumb-item h1 {
    color: black;
    font-weight: 600;

}

.page-left {
    width: 50%;
    float: left;
    padding-right: 30px;
}

.page-left .page-img {
    width: 100%;
    height: 100%;
    border-left: 10px solid;
    border-image: linear-gradient(#ff512f, #dd2476) 1;
    position: relative;
    overflow: hidden;
}

.page-left .about-page-sec::after {
    width: 100%;
    height: 100%;
    content: '';
    left: -100%;
    top: 0;
    position: absolute;
    background: linear-gradient(#ff512f, #dd2476);
    animation: showimage 2s;
}


.page-left .page-img img {
    width: 100%;
    height: 100%;
    display: block !important;
}

.vision-body {
    background-color: black;
    border-radius: 30px;
    padding: 5vw;
    position: relative;
}



.vision-card {
    border: 1px solid lightgray;
    padding: 25px;
    border-radius: 20px;
}

.vision-img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    overflow: hidden;
    border-radius: 20px;
}

.vision-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
}

.fleet-header img {
    width: 150px;
}

.fleet-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-family: var(--heading);
    font-weight: 600;
}

.fleet-header .fleet-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;

}

.fleet-header .fleet-link a {
    color: white;
    font-weight: 400;
    font-size: 18px;
    text-decoration: underline;
}

.fleet-header .fleet-link a:hover {
    color: var(--black);
}

.fleets-body {
    /* padding: 30px; */
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* border: 2px solid rgb(0, 0, 0); */
    margin-bottom: 30px;
}


.fleed-img {
    width: 100%;
    /* border-right: 2px solid rgb(0, 0, 0); */

}

.fleed-img img {
    width: 100%;
}

.fleet-content {
    width: 100%;
    padding: 20px 30px;

}

.fleet-content .fleet-heading {
    font-size: 24px;
    font-weight: 600;

}

.fleet-section {
    display: flex;
    align-items: center;
    justify-content: center;

}

.fleet-card {
    width: 100%;
    height: 300px;
    height: auto;
    overflow: hidden;
    padding: 5px;
}


.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Tariff page  */

.tariff-section {
    max-width: 1100px;
    margin: auto;
}

.title {
    color: #3AAAE9;
    margin-bottom: 15px;
    font-size: 24px;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.tariff-table thead {
    background: black;
    color: white;
}

.tariff-table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
}

.tariff-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
}

/* .tariff-table tr:hover {
    background: #f7f7f7;
} */

.note {
    padding: 12px 14px;
    font-size: 14px;
    background: #fafafa;
    border-top: 1px solid #ddd;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px) {

    .title {
        font-size: 20px;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 10px;
        font-size: 13px;
    }

}

.gujarat-page-body {
    background: linear-gradient(rgba(255, 255, 255, 0.932), rgba(255, 255, 255, 0.842)), url('../images/bg/tour-bg.jpg');
    background-position: center;
    background-size: contain;
}

.guja-body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
    padding-bottom: 150px;
}

.gujarat-card {
    width: 100%;
    position: relative;
    z-index: 10;
}

.gujarat-card .guj-img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.gujarat-card .guj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gujarat-card .name {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: black;
    font-size: 17px;
}

.gujarat-card5 {
    transform: rotate(20deg) translateY(80px) translateX(20px);
}

.gujarat-card4 {
    transform: rotate(10deg) translateY(25px) translateX(0px);
}

.gujarat-card1 {
    transform: rotate(-20deg) translateY(80px) translateX(-20px);
}

.gujarat-card2 {
    transform: rotate(-10deg) translateY(25px) translateX(0px);
}

.trip-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 6px rgb(165, 164, 164);
    margin-bottom: 15px;
}

.trip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-img2 {
    width: 100%;
    height: 250px;

    border-top-right-radius: 50px;
}

.trip-img3 {
    width: 100%;
    height: 250px;
    border-bottom-right-radius: 50px;

}

.trip-img1 {
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
}

.trip li .title {
    font-size: 19px;
    margin: 0;
    font-weight: 600;
    color: var(--action-color);
}

.trip li .des {
    font-size: 15px;
}

.tirp-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-bg {
    position: absolute;
    bottom: 0;
    left: 0;
}

.trip-bg img {
    width: 100%;
}

.pcontact-card {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    padding: 25px;
    gap: 10px;
}

.pcontact-card .icon {
    width: 60px;
    height: 60px;
}

.pcontact-card .icon img {
    width: 100%;
}

.pcontact-card .title {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--heading);
    /* background-color: red; */
    margin-bottom: 0;
}

.pcontact-card .des {
    color: black;
    font-size: 15px;
}

.pcontact-card .des a {
    color: black;
    font-size: 15px;
}

.map {
    margin-bottom: 30px;
}

.contact-banner {
    width: 100%;
    height: auto;
}

.contact-banner img {
    width: 100%;
}

.vides-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-body {
    width: 100%;
    height: 450px;
    border: 10px solid var(#33A5F2);
    padding: 10px;
    background-color: white;
    border-radius: 30px;
    transition: all 0.4s;
}

.video-body video {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;

}

.video-body1 {
    transform: rotate(-10deg) translateX(20px) translateY(30px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.video-body3 {
    transform: rotate(10deg) translateX(-20px) translateY(30px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.video-body2 {
    position: relative;
    z-index: 5;
    transform: translateY(10px);
}

.vides-section:hover .video-body {
    transform: unset;
}

.video-sec-bg {
    background: linear-gradient(rgb(222, 243, 252), rgba(222, 243, 252, 0.884)),
        url('../images/bg/tour-bg.jpg') center/contain repeat;
}






/* tour package page  */

.tour-packagers-section {
    width: 100%;
}

.tour-packagers-section img {
    width: 100%;
}

.tour-page-heading h1 {
    font-size: clamp(28px, 5vw, 45px);
    font-family: var(--heading);
    font-weight: 700;
    color: rgb(0, 94, 156);
    text-transform: uppercase;
}

.tour-page-heading p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--heading);
}

.packager-image-body {
    width: 100%;


}

.packager-image-body .packager-section-body {
    height: auto;
    overflow: hidden;
}

.packager-image-body .mySwiper2 {
    width: 100%;
    height: 100%;
    padding-right: 10px;
}

.packager-image-body .mySwiper2 .swiper-slide {
    width: 100%;
    height: 100%;

}

.packager-image-body .mySwiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packager-image-body .mySwiperpackage {
    width: 100%;
    height: 500px;


}

.packager-image-body .mySwiperpackage .swiper-slide {
    width: 100%;
    height: 150px;
}

.packager-image-body .mySwiperpackage .swiper-wrapper {
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: auto; */
    height: 100%;
    background-color: red;
    width: 100%;
}

.packagerbanner {
    width: 100%;
}

.packagerbanner .packagebanner-img {
    width: 100%;
}

.packagerbanner .packagebanner- img {
    width: 100%;
}

.weprovide-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weprovide-card .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #9841e4;
}

.weprovide-card .des .name {
    font-size: 18px;
    font-weight: 700;
    color: var(--action-color);
}

.weprovide-card .des .line {
    font-size: 14px;
    line-height: 1.1;
    color: black;
    font-weight: 600;
}

.disabled-card .icon {
    color: rgb(56, 56, 56);
}

.disabled-card .des .name {
    color: rgb(56, 56, 56);
}

.disabled-card .des .line {
    color: rgb(56, 56, 56);
}

.heading-page {
    font-weight: 600;
    font-family: var(--heading);
}

.tab-btn-body .tab-btnp {
    background: #d6a7ff;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 17px;
    font-family: var(--heading);
    font-weight: 500;
    color: var(--black);
}

.package-contetn {
    padding-top: 0px;
    display: none;
}

.packager-tab-section .activep {
    display: block;
}

.packager-tab-section .activepb {
    background-color: #8E2DE2;
    color: white;
}


.accordion {
    width: 100%;
}

.accordion-body .accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-body .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    background-color: #bfdbff;
}

.accordion-body .accordion-header i {
    transition: 0.3s;
}

.accordion-body .accordion-content {
    display: none;
    padding: 0 15px 15px;
    color: #000000;
    font-weight: 500;
    background-color: #deecff;
    font-size: 15px;

}

.accordion-body .accordion-content p {
    font-size: 14px;
}

.accordion-body .accordion-item.active .accordion-content {
    display: block;
    padding-top: 20px;
}

.accordion-body .accordion-item.active .accordion-header {
    background: #0056b3;
    color: white;
}

.accordion-body .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.package-contetn ul li {
    list-style: circle;
    margin-left: 30px;
}

.cancellation span {
    color: red;
    font-size: 20px;
    font-weight: 600;
}

.pack-img-page {
    width: 100%;
}

.pack-img-page img {
    width: 100%;
}



.packager-form .form-container {
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.packager-form .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.packager-form .form-group {
    margin-bottom: 0px;
}

.packager-form .form-group input,
.packager-form .form-group select,
.packager-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.packager-form .form-group textarea {
    resize: none;
    height: 170px;
}

.packager-form .btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.packager-form .btn-submit:hover {
    background: #e65c00;
}

.allpackageslink {
    height: 400px;
    width: 100%;
}

.allpackageslink .swiper-wrapper {
    height: 100%;
    transition-timing-function: linear !important;
}

.allpackageslink .swiper-slide {
    display: flex;
    width: 100%;

    flex-direction: column;
}

.allpackageslink .swiper-slide .pack-link {
    height: 70px;
    width: 100%;
    background: white;
    padding:0 15px ;
    border-bottom: 1px solid gray;
    display: flex;
    align-items: center;
    justify-content: center;

}
.allpackageslink .swiper-slide .pack-link:hover{
    background-color: #33A5F2;

}

.allpackageslink .swiper-slide .pack-link a {
    font-size: 17px;
    color: black;

}