html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

ul {
    list-style-type: none;
}


/*Fonts css*/

h1 {
    font-family: 'Ubuntu Medium';
}

h2,
h3,
h4,
h5 {
    font-family: 'Ubuntu';
}

a {
    font-family: 'Ubuntu Light';
    color: #019517;
    text-decoration: none;
}

    a:hover {
        color: rgb(133, 169, 4);
    }

p,
h6 {
    font-family: 'Segoe UI';
    text-align: justify;
    font-size: large;
}

.carousel-caption p {
    text-align: center;
}

.sort-banner {
    height: 350px;
}

.btn-private {
    background: rgb(133, 169, 4);
}

    .btn-private:hover {
        background: yellowgreen;
    }

.side-ads-headers {
    font-size: 14px;
}

.side-ads-body {
    font-size: 13px;
}

.side-ads-menu {
    color: whitesmoke;
}

/*Fonts css ends*/
.main-banner {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.img-lord {
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 5px;
    max-width: 100%;
}

footer {
    background-image: url(../images/footer/back-cover.jpg);
    height: 100%;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: whitesmoke;
    background-position: center;
    background-size: cover;
}

.top {
    background-color: #000000b0;
    height: 100%;
    padding: 10px;
}


/* Custom CSS for the Navbar */

.custom-navbar .nav-link {
    color: black !important;
    /* Black text color */
    font-family: Ubuntu Medium !important;
}

    .custom-navbar .nav-link:hover {
        color: rgb(133, 169, 4) !important;
        /* Green text color on hover */
        transition: color 0.4s ease;
        /* Smooth transition effect */
    }

.dropdown-item:hover {
    background-color: rgb(133, 169, 4) !important;
    transition: color 0.4s ease !important;
}

.custom-navbar .navbar-brand {
    margin-right: auto;
    /* Pushes the brand/logo to the left */
}

.dropdown-menu {
    border-radius: 0.5rem !important;
}

.back-light {
    background-color: #15141466;
    border-radius: 0.5rem;
}


/* Style for the sticky header */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow for the header */
    z-index: 1000;
    /* Make sure it's above other content */
    transition: color 0.4s ease;
    /* Smooth transition effect */
}


/*Overridden css*/

.navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background-color: #ffffffcf !important;
}


/*Overridden css ends*/


/*3D CARDS*/

.container .box {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}

    .container .box .body {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: 0.9s ease;
    }

        .container .box .body .imgContainer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            /*For text in image card*/
            position: relative;
            text-align: center;
            color: white;
        }

            .container .box .body .imgContainer .centered-text {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: #00000075;
                padding: 5px 15px 5px 15px;
                border-radius: 1rem;
            }

            .container .box .body .imgContainer img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 1rem;
            }

        .container .box .body .content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #333;
            backface-visibility: hidden;
            transform-style: preserve-3d;
            transform: rotateY(180deg);
            border-radius: 1rem;
        }

    .container .box:hover .body {
        transform: rotateY(180deg);
    }

    .container .box .body .content div {
        transform-style: preserve-3d;
        padding: 20px;
        background: linear-gradient(45deg, #749e00, #FFEB3B);
        transform: translateZ(100px);
        border-radius: 1rem;
    }

        .container .box .body .content div h3 {
            letter-spacing: 1px;
        }


/*3D Cards ends*/


/*Social/Contact icons*/

.float-right {
    position: fixed;
    bottom: 30px;
    right: 15px;
    text-align: center;
    z-index: 100;
}

.float-left {
    position: fixed;
    bottom: 30px;
    left: 15px;
    text-align: center;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}


/*Social/contact icons ends*/


/*Animesta*/

.bounce-in-top {
    -webkit-animation: bounce-in-top 1.1s both;
    animation: bounce-in-top 1.1s both;
}

@-webkit-keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


/*Animesta Ends*/

.zoom {
    transition: transform .3s;
    /* Animation */
}

    .zoom:hover {
        transform: scale(1.15);
        /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }

.headline {
    padding-bottom: 15px;
}

    .headline p {
        display: inline;
        vertical-align: top;
        color: black;
    }

    .headline h1 {
        display: inline;
        vertical-align: top;
        color: rgb(133, 169, 4);
    }

.golden-traingle {
    background-image: url(../images/background/worldback.gif);
    background-position: center;
    background-size: cover;
    padding: 15px;
    text-align: center;
}

.gt-header p {
    display: inline;
    vertical-align: top;
    color: black;
}

.gt-header h2 {
    display: inline;
    vertical-align: top;
    color: rgb(133, 169, 4);
}

.eye-tone {
    background-color: #f2f2f2;
}

.my-cars {
    padding: 25px;
}

    .my-cars .gt-header {
        text-align: center;
    }

    .my-cars img {
        width: -webkit-fill-available;
        max-height: 130px;
        border-radius: .2rem;
    }


/*Card Customization*/

.card-header {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
    background-color: black;
    color: #E6B022;
    border-bottom: 0;
}

.card {
    border-radius: 1rem !important;
    font-family: 'Ubuntu';
    text-align: center;
}

.card-img,
.card-img-top {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.card-footer {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
    background-color: #fdfdfd;
    border-top: 0;
}


/*Card Customization Ends*/

.trust {
    padding: 20px;
    background-color: #f9c03a;
}

.best-tours {
    background-image: linear-gradient(rgb(253 253 253 / 80%), rgb(0 0 0 / 80%)), url(../images/background/back.jpg);
    background-size: cover;
    height: 100%;
    background-attachment: fixed;
}

.sort-gallery p {
    color: white;
}

.sort-gallery h6 {
    color: white;
}

.galary-img {
    border-radius: 1rem;
    width: 230px;
    background-color: transparent;
    border: 0;
}

.center-col {
    text-align: -webkit-center;
}

.not-found {
    background-image: url(../images/background/worldback.gif);
    background-position: center;
    background-size: cover;
}

    .not-found h1 {
        color: orange;
        font-size: 150px;
    }

    .not-found .info {
        color: #85a904;
    }

    .not-found .logo {
        width: 35%;
        padding: 20px 10px 30px 10px;
    }

img.no-drag {
    pointer-events: none;
}

.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    background: url('../images/logo/loader.webp')no-repeat top;
    background-size: 60px;
}


/* Then style the iframe to fit in the container div with full height and width */

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.recognitions .nav .nav-link.active {
    font-family: Ubuntu;
    color: orange !important;
    text-shadow: 0.5px 0px 0px black;
}

.recognitions .nav .nav-link {
    font-family: Ubuntu;
    color: yellowgreen;
}


/*Flip card*/

.flip-card {
    background-color: transparent;
    width: 320px;
    height: 400px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #bbb;
    color: black;
    border-radius: 1rem;
}

    .flip-card-front img {
        width: 320px;
        height: 400px;
        border-radius: 1rem;
    }

.flip-card-back {
    background-color: #000000;
    color: white;
    transform: rotateY(180deg);
    padding: 25px;
    border-radius: 1rem;
}

    .flip-card-back h4 a {
        color: #E6B022 !important;
        font-family: Ubuntu;
    }

.best-tours .card-title {
    border-radius: .2rem;
    color: #f4f3f1;
    padding: 5px 0 5px 0;
    margin-bottom: 17px !important;
}

.card-img-overlay {
    border-radius: 1rem;
    background: linear-gradient(to bottom, #000000, #00000014 40%, #0000000f 40%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5)
}


/*Flip card ends*/

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 70%;
        width: 100%;
        position: absolute;
    }

.responsive-video {
    position: relative;
    border-radius: 1rem;
    width: 100%;
    height: 300px;
}

.sort-services img {
    width: 50%;
}

.rajasthanTours .rounded-start {
    border-radius: 1rem !important;
}

.rajasthanTours .left h6 {
    text-align: left;
    font-weight: 600;
}

.mtb {
    padding-top: 50px;
    padding-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: .75em;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

.badge-part {
    font-size: medium !important;
}

.tour-title {
    color: #E6B022;
    font-family: Ubuntu;
    font-size: 28px;
}

.contact-card {
    background-color: #efefef;
    border: none;
    padding: 20px;
}

.car-rentals img {
    width: -webkit-fill-available;
    max-height: 135px;
}

.footer-navigation {
    text-align: justify;
}

.city-img {
    float: left;
    width: 35%;
    margin-right: 12px;
    border-radius: 1rem !important;
}

.itinerary {
    background-color: whitesmoke;
}

.accordion-button:not(.collapsed) {
    color: #e9b53f !important;
    background-color: #000000;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

.accordion-item:first-of-type {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

.accordion-item {
    background-color: rgb(245 245 245 / 0%) !important;
    border: 1px solid rgb(0 0 0 / 16%) !important;
}

.accordion-button {
    background-color: #d1e7dd;
    font-size: 18px;
    font-weight: 500;
}

@media print {
    @page {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.thumb-img {
    height: 100%;
    width: auto;
}

.blog-card-img {
    max-width: 250px;
    height: 200px;
}
/*Css for Mobile screens only*/
@media only screen and (max-width: 600px) {
    .city-img {
        float: left;
        width: 65%;
        padding: 10px;
        border-radius: 1rem !important;
        border: 0.5px solid #c9c5c5;
    }
}
