@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&family=Kalam:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 
  font-family: "Covered By Your Grace", cursive;
  font-family: "Poppins", serif;  
  font-family: "Kalam", cursive;
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-size: 16px;
}

:root {
    --main-color: #ffcc00;
    --blue-color: #0088FF;
    /* global scope */
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* NAVBAR */
.header_bar {
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

p {
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 300;
}

b {
    font-weight: bold;
    color: #000000;
}

/* Shadow after scroll */
.header_bar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav_layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* LOGO */
.site_logo img {
    height: 40px;
}

/* ---------- search  -------------- */

.combobox {
    position: relative;
}

#searchInput {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

#dropdown {
    position: absolute;
    width: 100%;
    background: #ffffff85;
    display: none;
    margin: 0;
    padding: 23px;
    list-style: none;
    z-index: 10;
    top: 80px;
    max-width: 881px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px #3131313b;
    flex-wrap: wrap;
    backdrop-filter: blur(23px);
}

#dropdown li {
    cursor: pointer;
    border: 1px solid #626262;
    border-radius: 50px;
    margin: 5px;
}

#dropdown li a {
    display: block;
    padding: 5px 17px;
    text-decoration: none;
    color: inherit;
}

#dropdown li:hover a {
    background-color: #f0f0f0;
    border-radius: 50px;
}

#dropdown li.active a {
    background-color: #007bff;
    color: #fff;
}

/* MENU */
.center_menu {
    justify-self: center;
}

.center_menu ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

.center_menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    flex-basis: 45%;
    padding: 5px 15px;
    margin: 0 5px;
}

.center_menu a:hover {
    background: #fff1bb;
    color: #000000;
}

/* DROPDOWN */
.menu_item {
    position: relative;
    cursor: pointer;
}

.menu_item .drop_btn {
    padding: 5px;
}

.menu_item .drop_btn i {
    color: #ffcc00;
}

.drop_menu {
    position: absolute;
    top: 28px;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    min-width: 160px;
    display: none
}

.drop_menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.menu_item.active .drop_menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-child-menu {
    display: flex;
    flex-wrap: wrap;
    min-width: 300px;
    padding: 10px;
}

.drop_menu li {
    padding: 10px 15px;
}

.menu_item.active .drop_menu {
    display: block !important;
    transition: all 1s ease;
}


/* BUTTON */
.taxi_btn {
    max-width: 200px;
    animation: horizontal-shaking 1s infinite;
}

@keyframes horizontal-shaking {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(3px)
    }

    50% {
        transform: translateY(-3px)
    }

    75% {
        transform: translateY(3px)
    }

    100% {
        transform: translateY(0)
    }
}

/* HAMBURGER */
.menu_toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:1000px) {
    .hero_section{
        height: calc(100vh - 60px) !important;
    }
    .menu_item.active .drop_menu {
        display: block;
    }

    .banner-content {
        flex-direction: column;
        align-items: center;
    }

    .banner-content .banner-text {
        width: 100% !important;
        text-align: center;
    }

    .banner-content img {
        width: 100% !important;
        max-width: 450px;
    }

    .kashmir-tour-hero {
        display: none;
    }

    .packages-mobile-none {
        display: none !important;
    }

    .packages-desktop-none {
        display: block !important;
    }

    .drop_menu {
        left: 0;
    }

    .menu_item .drop_btn i {
        color: #424242;
    }

    .center_menu ul {
        gap: 30px !important;
    }

    .center_menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--main-color);
        padding: 40px 30px;
        transition: 0.35s;
        z-index: 11111;
    }

    .fa-bars,
    .fa-xmark {
        font-size: 24px;
        color: #000000;
    }

    .center_menu.open {
        left: 0;
    }

    .center_menu ul {
        flex-direction: column;
        gap: 12px;
    }

    .drop_menu {
        position: relative;
        top: 10px;
        box-shadow: none;
    }

    .taxi_btn {
        display: none;
    }

    .menu_toggle {
        display: block;
    }

    .nav_layout {
        padding: 15px 10px !important;
    }

    .center_menu a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
        font-weight: 600;
    }

    .drop-child-menu {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .drop-child-menu a {
        font-size: 16px;
        font-weight: normal;
        padding: 5px;
    }

}

/* ---------------  banner  -------------- */

.hero_section {
    height: 100vh;
    position: relative;
    background: #FADB5F;
    width: 100%;
}

/* TOP GREY SKY */

.hero_sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 145px;
    background: #ffffff;
    z-index: 1;
}

/* BALANCED WAVE */

.hero_wave {
    position: absolute;
    bottom: -1px;
    width: 100%;
    line-height: 0;
}

.hero_wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* CONTENT */

.hero_content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home-search {
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 3%;
    max-width: 950px;
}

.kashmir-tour-hero {
    position: absolute;
    z-index: 1;
    bottom: 13%;
    max-width: 750px;
    left: 13%;
}

.home-search .form-control {
    margin: 0 10px;
    padding: 0;
    border: none;
    outline: none;
}

.home-search .form-control:focus {
    border: none !important;
    outline: none;
    box-shadow: none !important;
}

.home-search .fa-solid {
    font-size: 22px;
    color: #696969;
}

.hero_img img {
    max-width: 100%;
}

.hero-img {
    max-width: 750px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
}

.banner-content .banner-text {
    width: 50%;
    padding-top: 75px;
}

.banner-content img {
    width: 50%;
}

.banner-text p {
    font-size: 55px;
    font-weight: 700;
    line-height: normal;
    margin: 0 !important;
    padding: 0;
    line-height: 1;
    color: #000000;
}

.banner-text-next {
    font-family: "Covered By Your Grace", cursive;
    color: #F26435;
    font-size: 80px;
    text-shadow:
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff,
        -3px 0px 0 #ffffff,
        3px 0px 0 #ffffff,
        0px -3px 0 #ffffff,
        0px 3px 0 #ffffff;
}

.left-cloud {
    position: absolute;
    top: 30%;
    left: 0;
    opacity: 0.8;
}

.right-cloud {
    position: absolute;
    top: 40%;
    right: 0;
    opacity: 0.8;
}

/* --------------------- top tour packages  ------------------------ */

.top-packages-main {
    position: relative;
}

.top-packages-main .section-heading {
    text-align: right;
}

.section-heading {
    margin-bottom: 30px;
}

.top-packages {
    justify-content: end;
}

.top-packages .card {
    margin-bottom: 30px;
    border-color: #f5f5f5;
    border-radius: 20px;
    box-shadow: 0px 10px 10px #e9e9e9;
    min-height: 422px;
}

.lh-25 {
    line-height: 25px;
}

.all-packages-mobile {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1111111;
}

.card-title {
    font-size: 16px;
}

.card-price {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.card-price .start-from {
    color: #6e6e6e;
}

.card-price .start-from-price {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
}

.card-image {
    position: relative;
}

.package-duration {
    position: relative;
    top: -44px;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
    background: #ffffff24;
    color: #ffffff;
    padding: 10px 20px;
    display: inline-block;
    /* display: flex; */
    justify-content: center;
    /* align-items: center; */
    text-align: center;
    margin: auto;
    border: 1px solid #ffffff;
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.top-packages .card-body {
    padding-top: 0px;
    margin-top: -25px;
}

.package-duration p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.best-tour-packages {
    position: absolute;
    left: 3%;
    top: -7%;
    max-width: 300px;
}

.best-tour-packages .card-img,
.card-img-bottom,
.card-img-top {
    padding: 15px 15px 0 !important;
}

.section-heading p {
    font-family: "Kalam", cursive;
    font-weight: bold;
    font-size: 20px;
    padding: 0;
    color: #000000;
    margin: 0;
    margin-top: 100px;
    text-shadow:
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff,
        -3px 0px 0 #ffffff,
        3px 0px 0 #ffffff,
        0px -3px 0 #ffffff,
        0px 3px 5px #6e6e6e;
}

.section-heading h2 {
    font-family: "Poppins", serif;
    font-weight: bold;
    font-size: 50px;
    padding: 0;
    margin: 0;
    text-shadow:
        -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff, -3px 0px 0 #ffffff, 3px 0px 0 #ffffff, 0px -3px 0 #ffffff, 0px 6px 7px #c5c5c5
}

.section-heading h3 {
    font-family: "Covered By Your Grace", cursive;
    letter-spacing: 2px;
    font-size: 80px;
    padding: 0;
    margin: 0;
    color: var(--main-color);
    text-shadow:
        -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff, -3px 0px 0 #ffffff, 3px 0px 0 #ffffff, 0px -3px 0 #ffffff, 0px 3px 5px #6e6e6e
}

.section-heading h3 img {
    max-width: 80px;
}

@media (max-width:1650px) {
    .best-tour-packages {
        max-width: 250px !important;
    }
}

@media (max-width:1300px) {
    .best-tour-packages {
        max-width: 200px !important;
    }
}

@media (max-width:1200px) {
    #dropdown {
        max-width: 800px;
    }

    .best-tour-packages {
        max-width: 300px !important;
    }

    .section-heading h2 {
        font-size: 35px;
    }

    .section-heading h3 {
        font-size: 50px;
    }

    .center_menu ul {
        gap: 12px;
    }

}

@media (max-width: 992px) {
    #dropdown {
        max-width: 630px;
    }
}

@media (max-width:768px) {
    #dropdown {
        left: 0;
        max-width: 90%;
        left: 50%;
        transform: translate(-50%);
        top: 60px;
    }

    .home-search {
        padding: 6px 30px !important;
    }

    .banner-text p {
        font-size: 35px !important;
        line-height: 1.3;
    }

    .banner-text p span {
        font-size: 45px !important;
        line-height: 1.3;
    }

    .banner-content img {
        margin-top: 30px;
    }

    .best-tour-packages {
        display: none;
    }

    .top-packages-main .section-heading {
        text-align: center;
    }

    .section-heading h2 {
        font-size: 35px;
        padding: 10px 0;
    }

    .section-heading h3 {
        font-size: 40px;
    }

    .section-heading .coconut-doodle-arrow {
        display: none;
    }

    .section-heading {
        flex-direction: column-reverse;
        align-items: center !important;
    }

    .section-heading h3 img {
        max-width: 55px;
    }

    .faq-home {
        padding: 100px 0 36px !important;
    }
}

/* -------------------  snow capped -------------------------- */

.snow-capped-packaged {
    margin-top: 50px;
    position: relative
}

.snow-capped-packaged .section-heading h3 {
    color: var(--blue-color);
}

.snow-capped-packaged.summer-packaged .section-heading h3 {
    color: var(--main-color)
}

.winter-vacation-background {
    position: relative;
    top: 0;
    left: 0;
    z-index: -1;
}

.snow-packaged-heading {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.snow-capped-packaged-down {
    background-color: #edf8ff;
    padding-bottom: 150px;
}

.snow-capped-packaged-down .section-heading {
    display: flex;
    align-items: center;
}

.snow-capped-packaged-down .section-heading .coconut-doodle {
    max-width: 80px;
    margin-left: 30px;
}

.snow-capped-packaged-down .section-heading .coconut-doodle-arrow {
    margin-left: 30px;
    position: relative;
    top: 40px;
    max-width: 150px;
}

.summer-packaged-down {
    background-color: #ffcb57;
    padding-bottom: 150px;
}

.summer-packaged-down .section-heading {
    display: flex;
    align-items: center;
}

.summer-packaged-down .section-heading .coconut-doodle {
    max-width: 80px;
}

.summer-packaged-down .section-heading .coconut-doodle-arrow {
    margin-left: 30px;
    position: relative;
    top: 40px;
    max-width: 150px;
}

.summer-packaged-down .owl-stage-outer .days-badge {
    background-color: #FFCC00 !important;
    color: #000000;
}

.summer-packaged-down .owl-stage-outer .days-badge i {
    color: #000000
}

.mansoon-packaged-down .owl-stage-outer .days-badge {
    background-color: #34C759 !important;
    color: #000000;
}

.mansoon-packaged-down .owl-stage-outer .days-badge i {
    color: #000000;
}

.mansoon-packaged-down {
    background-color: #0F8FFF;
    padding-bottom: 150px;
}

.mansoon-packaged-down .section-heading {
    display: flex;
    align-items: center;
}

.mansoon-packaged-down .section-heading .coconut-doodle {
    max-width: 80px;
    margin-left: 30px;
}

.mansoon-packaged-down .section-heading .coconut-doodle-arrow {
    margin-left: 30px;
    position: relative;
    top: 40px;
    max-width: 150px;
}

/* arrow buttons */

.slider-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #000000;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #ffffff
}

.nav-btn .fa-solid {
    color: #000000;
}

/* card */

.journey-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
    margin: 0 15px 15px;
    width: 100%;
}

.image-box {
    position: relative;
}

.image-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* days badge */

.days-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-color);
    color: white;
    padding: 10px 12px;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.card-content {
    padding: 18px;
}

.card-content p {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.price-row span {
    color: #777;
}

.price-row strong {
    font-size: 18px;
}

/* ------------------------- counter start  ----------------- */

.travel-section {
    background: url('../images/adventure-trip.png') center/cover no-repeat;
    padding: 120px 0;
    position: relative;
    background-position: bottom right;
}

.travel-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(80, 150, 220, 0.8), rgba(80, 150, 220, 0.2));
}

.travel-content {
    position: relative;
    z-index: 2;
}

.travel-content .counter {
    border: none;
}

.stats-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 30px 10px;
}

.stat-item i {
    font-size: 40px;
    color: #43a047;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
}

.stat-text {
    color: #666;
    font-size: 15px;
}

.stat-border-right {
    border-right: 1px solid #e6e6e6;
}

.stat-border-bottom {
    border-bottom: 1px solid #e6e6e6;
}

.hero-text {
    color: white;
    font-weight: 600;
    font-size: 95px;
    line-height: 1.1;
    padding-left: 50px;
}

.hero-text span {
    font-family: "Kalam", cursive;
    font-weight: bold;
    font-size: 95px;
}

.counter-section .stats-box img {
    max-width: 70px;
    margin-bottom: 15px;
}

.tour-packages-love {
    position: absolute;
    right: 0;
    bottom: 5%;
}

@media(max-width:1400px) {
    .hero-text {
        font-size: 85px;
    }

    .hero-text span {
        font-size: 85px;
    }

    .tour-packages-love {
        max-width: 180px;
    }

    .taxi_btn {
        max-width: 170px;
    }

    .top-packages .card {
        min-height: 380px;
    }

}

@media(max-width:1200px) {
    .hero-text {
        font-size: 75px;
        line-height: 1;
    }

    .hero-text span {
        font-size: 75px;
    }

    .tour-packages-love {
        max-width: 150px;
    }

    .taxi_btn {
        max-width: 150px;
    }

    .home-search {
        padding: 15px 30px;
    }

}

@media(max-width:992px) {
    .hero-text {
        margin-bottom: 70px;
    }

    /* Shadow after scroll */
    .header_bar.scrolled {
        position: inherit;
    }

    .hero_sky {
        height: 133px;
    }

    .about-airoplane-tour {
        display: none;
    }
}

@media(max-width:768px) {

    .hero-text {
        font-size: 41px;
        margin-top: 11px;
        margin-bottom: 31px;
    }

    .hero-text span {
        font-size: 40px;
    }

    .tour-packages-love {
        bottom: inherit;
    }

    .travel-section {
        padding: 50px 0;
    }

}

/* ------------------ testimonial  ----------------------- */

/* heading */

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}


.section-title span {
    color: #f7b500;
}

.testimonial-section {
    padding: 100px 0;
    position: relative;
}

.testimonial-section .section-heading h2 span {
    font-family: "Covered By Your Grace", cursive;
    color: var(--main-color);
    letter-spacing: 5px;
    font-weight: bold;
    font-size: 50px;
}

/* slider arrows */

.slider-nav-testimonial button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #000000;
    margin-left: 10px;
}

/* testimonial card */

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 70px 30px 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 7px 14px rgb(0 0 0 / 12%);
}

.testimonial-section .owl-carousel.owl-drag .owl-item {
    padding: 50px 15px;
}

.testimonial-section .section-heading {
    margin: 0 !important;
}

/* profile image */

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #1a73e8;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-airoplane {
    position: absolute;
    right: 0;
    max-width: 300px;
    top: 2%;
    z-index: -1;
}

/* name */

.testimonial-card h4 {
    color: #1a73e8;
    font-weight: 600;
    margin: 0;
}

.testimonial-card small {
    color: #777;
}

.testimonial-card p {
    margin-top: 15px;
    color: #555;
}

/* rating */

.rating {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.rating i {
    color: #f7b500;
}

.blog-section {
    position: relative;
    padding: 100px 0;
    background-color: #f0f0f06e;
}

.passport-pune {
    position: absolute;
    left: 0;
    top: -160px;
    z-index: -1;
    max-width: 110px;
}

.blog-section .section-heading span {
    font-family: "Covered By Your Grace", cursive;
    color: var(--main-color);
    letter-spacing: 5px;
    font-size: 50px;
    font-weight: bold;
}

.blog-section .owl-india-journey a {
    text-decoration: none;
}

/* ---------------  faq section  ----------------- */

.faq-home {
    padding: 100px 0 200px;
    position: relative;
}

.faq-home .section-heading {
    text-align: center !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-home .section-heading h2 {
    width: 100%;
}

.faq-home .section-heading h2 span {
    font-family: "Covered By Your Grace", cursive;
    color: #FFDA46;
    letter-spacing: 5px;
    font-weight: bold;
    font-size: 50px;
}

.read-more-faq {
    text-align: center;
    display: block;
    margin-top: 50px;
}

.modal-dialog-scrollable .modal-content {
    max-height: 80vh;
}

.trending-packages {
    padding: 100px 0 0;
    position: relative;
}

.trending-packages .section-heading {
    text-align: center !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trending-packages .section-heading h2 {
    width: 100%;
}

.trending-packages .section-heading h2 span {
    font-family: "Covered By Your Grace", cursive;
    color: #FFDA46;
    letter-spacing: 5px;
    font-weight: bold !important;
    font-size: 50px;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    background: #FFDA46;
    font-weight: 700;
    color: #2e2e2e;
    box-shadow: none;
}

.faq-modal .accordion-button,
.faq-modal .accordion-body {
    font-size: 14px;
    font-weight: 500;
    padding: 15px 20px;
}

.faq-modal .modal-title {
    color: var(--main-color);
    font-weight: 600;
}

.accordion {
    background-color: #ffffff;
}

.accordion-item {
    margin-bottom: 15px;
    border: solid #dee2e652 1px !important;
    box-shadow: 0px 2px 8px #0000000d;
    border-radius: 10px;
}

.accordion-body {
    background-color: #ffffff;
    color: #6b6b6b;
    border-radius: 0 0 15px 15px;
    padding-top: 20px;
}

.accordion-item {
    border-radius: 0 0 15px 15px !important;
}

.accordion-button {
    font-weight: 700;
    color: #2e2e2e;
    padding: 20px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}

.accordion-tour-plan .accordion-button:not(.collapsed) {
    background-color: #ffda46;
}

.accordion-tour-plan .accordion-body {
    background-color: #ffda463b;
    padding: 20px 40px;
}

.accordion-tour-plan .accordion-body li {
    padding: 5px 0;
}

.accordion-tour-plan ul {
    list-style-type: disc;
}

.tour-time {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.tour-piramid {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.ui-datepicker .ui-datepicker-header {
    padding: 6px 0;
    border-radius: 6px;
    background-image: none;
    background-color: var(--gotur-base, #ffcc00);
    color: var(--gotur-white, #fff);
    font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}

/* -------------  footer  ----------------- */
#block-footer {
    background: #161616;
    color: #CCCCCC;
    padding: 100px 0 30px;
    font-size: 14px;
    border-top: 10px solid #ffc61a;
    position: relative;
    overflow: visible;
}

#block-footer p {
    line-height: 1.7em;
    font-size: 14px;
    color: #bdbdbd;
}

#block-footer h4 {
    color: #FFC61A;
    margin-bottom: 30px;
    font-weight: bold;
}

#cityText2 a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 14px;
}

#cityText2 a:hover {
    color: #ffffff;
}

.city-container2 p b {
    font-size: 14px !important;
}

#block-footer .social-small {
    margin-top: 20px;
}

.footer_more a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
}

.footer_more a:hover {
    color: #ffffff;
}

#block-footer .social-small a {
    font-size: 18px;
    margin-right: 10px;
}

#block-footer .social-small i:hover {
    color: #f7b500 !important;
}

#block-footer .address {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}

#block-footer .address li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

#block-footer .address li span {
    color: #FFC61A;
    margin: 0 10px 0 0;
    width: 16px;
    font-size: 16px;
}

#block-footer .address li span.fa-envelope {
    font-size: 14px;
}

#block-footer .address li a {
    font-weight: 500;
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
}

#block-footer .address li a:hover {
    color: #FFC61A;
}

.mt-100 {
    margin-top: 100px;
}

@media (max-width: 768px) {
    nav.navbar .logo img {
        max-width: 150px !important;
    }

    #block-footer .address li {
        font-size: 10pt;
    }
}

#block-footer ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    float: none;
}

#block-footer ul.nav li {
    padding: 0;
    margin: 0;
    float: none;
}

#block-footer ul.nav li a {
    display: block;
    color: #bdbdbd;
    font-weight: 500;
    /*border-bottom: 1px dashed @black-light;*/
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
    margin: 0 0 10px;
    padding: 0 0 10px 0;
    font-size: 14px;
    text-decoration: none;
}

#block-footer ul.nav li a:hover {
    color: #FFC61A !important;
    background-color: transparent;
}

#block-footer ul.nav li a:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: " \f105";
    font-size: 16px;
    margin-right: 8px;
    vertical-align: middle;
    color: #FFC61A;
}

#block-footer ul.nav li:last-child a {
    background: none;
}

#block-footer ul.nav li.active a {
    color: #FFC61A;
    cursor: default;
}

@media (max-width: 991px) {
    #block-footer {
        padding: 0px 0 15px 0;
        font-size: 14px;
    }

    #block-footer h4 {
        margin: 30px 0 20px;
    }

    #block-footer .social-small {
        margin: 0 0 30px 0;
    }
}

.social-small {
    margin-top: -3px;
    margin-left: 0px;
}

.social-small a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 29px;
    margin: 0 0 0 0px;
    font-size: 14px;
    transition: all .3s ease;
    color: #1F1F1F;
}

.social-small a:hover {
    color: #fff;
    border-color: #fff;
}

.yellow {
    color: #FFC61A;
    font-weight: bold;
}

.social-small.social-yellow a {
    color: #FFC61A !important;
}

.social-small.social-yellow a:hover {
    color: #fff;
}

.social-big {
    list-style: none;
    margin: 50px 0 25px 0;
    padding: 0;
}

.social-big li {
    display: inline;
    margin-right: 4px;
    vertical-align: middle;
}

.social-big li a {
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 50%;
    -moz-background-clip: padding;
    border-radius: 50%;
    background-clip: padding-box;
    text-align: center;
    line-height: 40px;
    font-size: 18pt;
    transition: background .4s ease;
    background-color: #161616;
}

.social-big li a:hover {
    background: #FFC61A !important;
}



.tags {
    margin: 26px 0 0 8px;
    padding: 0 0 30px;
}

.tags a {
    float: left;
    margin: 8px 0 0 8px;
    padding: 0px 12px;
    font-size: 11pt;
    font-weight: 500;
    border: 2px solid #FFC61A;
    -webkit-border-radius: 36px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 36px;
    -moz-background-clip: padding;
    border-radius: 36px;
    background-clip: padding-box;
    color: #FFC61A;
    transition: all .3s ease;
}

.tags a:hover {
    border: 2px solid #FFC61A;
    color: #FFC61A;
}

/*
	13. Footer and copyrights
*/
footer {
    background: #0C0C0C;
    color: #868686;
    text-align: left;
    padding: 37px 0 27px;
    overflow-y: hidden;
}

footer div {
    font-size: 14px;
}

footer a {
    color: #FFC61A;
}

footer a:hover {
    color: #fff;
}

footer .go-top {
    position: relative;
    float: right;
    margin: -15px 0 0 0;
}

.stering {
    position: absolute;
    top: -100px;
    z-index: 1;
    right: 5%;
    transform: rotate(0);
    transition: all 1s ease;
    max-width: 200px;
}

.stering:hover {
    transform: rotate(360deg);
    transition: all 1s ease;
}

footer .go-top:hover:before {
    top: -5px;
}

.d-desktop-none {
    display: none;
}

.packages-desktop-none {
    display: none;
}

.packages-mobile-none {
    display: block;
}

.all-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/*
/* responsive */
@media (max-width: 1700px) {
    .kashmir-tour-hero {
        max-width: 666px;
    }
}

@media (max-width: 1550px) {
    .kashmir-tour-hero {
        max-width: 600px;
    }

    .banner-content .banner-text {
        width: 50%;
        padding-top: 112px;
    }

    .banner-text p {
        font-size: 45px;
        padding-left: 115px;
    }
}

@media (max-width: 1400px) {

    .banner-content .banner-text {
        width: 50%;
        padding-top: 75px;
    }

    .banner-text p {
        font-size: 45px;
        padding-left: 25px;
    }
}

@media (max-width: 1300px) {

    .left-cloud,
    .right-cloud {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .stering {
        top: -80px;
        right: 2%;
        width: 150px;
    }

    .section-heading p {
        margin-top: 50px;
    }

    .blog-section .section-heading span {
        font-size: 40px;
    }

    .testimonial-section .section-heading h2 span {
        font-size: 40px;
    }

    .faq-home .section-heading h2 span {
        font-size: 40px;
    }

}

@media (max-width: 992px) {
    .blog-section .section-heading span {
        font-size: 35px;
    }

    .testimonial-section .section-heading h2 span {
        font-size: 35px;
    }

    .faq-home .section-heading h2 span {
        font-size: 35px;
    }

    .snow-capped-packaged-down .section-heading .coconut-doodle {
        max-width: 60px;
        margin-left: 0;
    }

    .passport-pune {
        display: none;
    }

    .snow-capped-packaged-down .section-heading .coconut-doodle-arrow {
        display: none;
    }

    .summer-packaged-down .section-heading .coconut-doodle {
        max-width: 60px;
        margin-left: 0 !important;
    }

    .summer-packaged-down .section-heading .coconut-doodle-arrow {
        display: none;
    }
}

@media (max-width: 776px) {

    .tour-airoplane {
        display: none;
    }

    .tour-time {
        display: none;
    }

    .tour-piramid {
        display: none;
    }

    .snow-pacaged-heading-mobile {
        position: relative;
        text-align: center;
        top: 94px;
        left: 0;
        transform: none;
    }

    .snow-capped-packaged {
        margin-top: -70px;
    }

    .snow-capped-packaged-down {
        padding-bottom: 115px;
    }

    .stering {
        width: 100px;
        top: -50px;
    }

    .d-mobile-none {
        display: none;
    }

    .d-desktop-none {
        display: block;
    }


    .all-heading {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 800px) {
    .section-heading h2 {
        font-size: 30px;
        padding: 4px 0;
    }

    .mansoon-packaged-down .slider-nav,
    .snow-capped-packaged-down .slider-nav {
        position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translate(-50%);
    }

    .summer-packaged-down .slider-nav {
        position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translate(-50%);
    }

    .blog-section .slider-nav,
    .testimonial-section .slider-nav {
        position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translate(-50%);
    }

}


/* -------------- tour listing -------------------- */

.tour-header {
    padding: 40px 0 20px;
}

.tour-title {
    font-size: 32px;
    font-weight: 700;
}

.tour-meta {
    color: #777;
    font-size: 14px;
    padding: 5px 0;
}

.accordion-item {
    border-radius: 0 !important;
    border: none;
}

.info-box {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    border-radius: 0;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-right: 1px solid #eee !important;
    flex-direction: column;
    text-align: center;
}

.info-item.border-none {
    border: none !important;
}

.price-btn {
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}



.highlight-list li {
    margin-bottom: 10px;
}

.booking-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #eeeeee;
    position: sticky;
    top: 100px;
}

.book-btn {
    background: var(--main-color);
    color: #000000;
    font-weight: 600;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    border: none;
}

/* ---------------------- booking box --------------------- */

.trip-card {
    border-radius: 15px;
    background: #fff;
    border: 1px solid #eeeeee;
    position: sticky;
    top: 100px;
}

.trip-card i {
    color: var(--main-color);
    font-size: 20px;
}

.text-muted-date {
    color: #000000;
    font-weight: 500;
    font-size: 18px;
}

.price {
    color: #000000;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 5px;
}

.discount {
    color: #dc3545;
    font-size: 14px;
    margin-left: 5px;
    font-weight: 600;
}

.counter {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 5px 10px;
}

.btn-count {
    border: none;
    background: none;
    font-size: 18px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#travellerCount {
    width: 30px;
    text-align: center;
    font-weight: 600;
}

.enquiry-btn {
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
    background-color: var(--main-color);
    border: none;
    color: #000000;
}

.enquiry-btn:hover {
    background-color: #f0c001;
}

.whatsapp-btn {
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.whatsapp-btn i {
    color: #25D366;
}

/* ------------------- booking box end ------------------- */

.amenities li {
    margin-bottom: 10px;
}

.check {
    color: green;
}

.cross {
    color: red;
}

.tour-listing-details {
    margin-top: 40px;
}


.tour-listing-details .section-title {
    color: #000000 !important;
    margin-top: 40px;
}

.tour-after:after {
    content: '';
    background-color: #0000006e;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.tour-listing-details-banner .banner-heading {
    font-size: 50px;
    font-weight: bold;
    position: relative;
    color: #ffffff;
}

.tap2tour-breadcrumb {
    display: flex;
    justify-content: center;
}

.tap2tour-breadcrumb li {
    padding: 0 5px;
    color: var(--main-color);
}

.tap2tour-breadcrumb li a,
i {
    color: #ffffff;
}

@media(max-width:768px) {

    .info-box {
        align-items: flex-start;
    }

    .info-item {
        border: none;
        padding: 8px 0;
        margin-bottom: 10px
    }

    .booking-box {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .info-item {
        border: none !important;
    }

}

.video-banner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding-top: 100px;
    margin: auto;
    max-width: 750px;
}

.inner-banner-content h1 {
    padding: 0 25px;
}

.inner-banner-content p {
    color: #ffffff;
}

.video-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* overlay */
    z-index: 1;
}

/* .maldives-budeget-tour-package-banner {
    background: url(../../assets/images/video/thailand.mp4);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    padding: 250px 0 150px;
    text-align: center;
} */

/* ---------------------  packages slider  --------------------- */

/* scroll container */

.destination-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: 10px;
}

/* hide scrollbar */

.destination-scroll::-webkit-scrollbar {
    display: none;
}

.destination-scroll {
    scrollbar-width: none;
}

/* card */

.destination-card {
    min-width: 280px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: .3s;
}

.destination-card:hover {
    transform: scale(1.04);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.destination-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 14px;
    margin: 0;
    color: #efefef;
}

/* responsive */

@media(max-width:768px) {

    .destination-card {
        min-width: 230px;
        height: 300px;
    }

    .section-title {
        font-size: 22px;
    }

}

.trending-packages {
    margin: 30px 0;
}

.trending-packages .section-title {
    color: #000000;
    margin-bottom: 5px;
}

hr {
    border: 1px solid #cdcdcd;
}

.testimonial-pacakges {
    padding: 80px 0 !important;
    background-color: #c7c3af17;
    margin-top: 100px;
}

.testimonial-pacakges .section-title {
    color: #000000;
}



/* ---------------------------- about SECTION  -----------------------------*/

.about-section {
    padding: 100px 0;
    position: relative;
}

.about-airoplane-tour {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    z-index: -1;
    animation: about-airoplane-tour 5s infinite;
}

@keyframes about-airoplane-tour {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(30px)
    }

    50% {
        transform: translateY(-30px)
    }

    75% {
        transform: translateY(30px)
    }

    100% {
        transform: translateY(0)
    }
}

/* IMAGE */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.small-img {
    position: absolute;
    bottom: 40px;
    right: -60px;
    width: 240px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* TAG */

.about-tag {
    display: inline-block;
    background: #ffcc00;
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* TITLE */

.about-title {
    font-size: 44px !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-title span {
    font-size: 44px;
    color: var(--main-color);
}

/* FEATURES */

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-list i {
    color: #4CAF50;
    margin-right: 8px;
}

/* MISSION */

.mission-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.mission-icon {
    min-width: 65px;
    min-height: 65px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 47px !important;
    align-items: center;
}

.mission-icon i {
    font-size: 25px;
}

/* BUTTON */

.btn-discover {
    background: #ffc61a;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-discover:hover {
    background: #f3bc17
}

.btn-discover i {
    color: #000000;
}

/* PHONE */

.call-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.call-icon {
    width: 55px;
    height: 55px;
    background: #ffc61a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.call-icon i {
    color: #000000;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .about-title {
        font-size: 32px !important;
    }

    .about-title span {
        font-size: 32px !important;
    }

    .small-img {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        width: 200px;
    }

    .call-box {
        margin-left: 0;
        margin-top: 15px;
    }

}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background-color: #c7c3af17;
}

.why-choose-one__thumb {
    margin-right: 0;
}

@media (min-width: 1200px) {
    .why-choose-one__thumb {
        margin-left: 40px;
    }
}

.why-choose-one__thumb__item-one {
    overflow: hidden;
    border-radius: 135px 135px 0 0;
}

.why-choose-one__thumb__item-one:last-child {
    margin-top: 25px;
    border-radius: 0 0 135px 135px;
}

.why-choose-one__thumb__item-two {
    border-radius: 135px;
    overflow: hidden;
}

.why-choose-one__thumb img {
    object-fit: cover;
    width: 100%;
}

@media (min-width: 1200px) {
    .why-choose-one__content {
        margin-right: -12px;
    }
}

.why-choose-one__content .sec-title {
    margin-left: -20px;
    padding-bottom: 22px;
    text-align: right;
}

.why-choose-one__content__text {
    margin-bottom: 32px;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
}

.why-choose-one__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 30px 17px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 767px) {
    .why-choose-one__list {
        grid-template-columns: auto;
    }
}

.why-choose-one__list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    border-radius: 12px;
    padding: 16px 20px;
    background-color: #fff5ca;
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex-direction: column;
    text-align: center;
    padding-top: 25px;
}

.why-choose-one__list__item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gotur-base, #ffcc00);
    transform: translateX(101%);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.why-choose-one__list__item:hover .why-choose-one__icon {
    color: var(--gotur-white, #000000);
    transform: scaleX(-1);
}

.why-choose-one__list__item:hover .why-choose-one__title {
    color: var(--gotur-white, #000000);
}

.why-choose-one__list__item:hover::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gotur-base, #ffcc00);
    transform: translateX(0%);
}

.why-choose-one__icon {
    color: var(--gotur-base, #ffcc00);
    font-size: 44px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

.why-choose-one__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--gotur-black, #1D231F);
    transition: all 0.4s ease-in-out;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-choose-one__element {
    position: absolute;
    right: 0;
    bottom: 10%;
    animation: topToBottom 3s ease-in-out infinite;
    z-index: -1;
    display: none;
}

.why-choose-one__element::after {
    content: "";
    position: absolute;
    width: 344px;
    height: 344px;
    background: var(--gotur-base, #ffcc00);
    filter: blur(150px);
    z-index: -1;
    right: 0;
    top: -30%;
    opacity: 0.4;
}

.perasut-tour {
    animation: perasut-tour 5s infinite;
}

@keyframes perasut-tour {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(30px)
    }

    50% {
        transform: translateY(-30px)
    }

    75% {
        transform: translateY(30px)
    }

    100% {
        transform: translateY(0)
    }
}

@media (min-width: 1200px) {
    .why-choose-one__element {
        display: block;
    }
}

@media (max-width: 992px) {

    .why-choose-one__thumb__item-one:last-child,
    .why-choose-one__thumb__item-one {
        border-radius: 0 !important;
    }

    .why-1,
    .why-3 {
        display: none;
    }

    .why-choose-one__content .sec-title {
        text-align: center;
    }
}

/* ---------------  bottom navigation --------------------- */
.bottom-navigation {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: #fffbed;
    border: 1px solid #9797973f;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 9999999;
    transition: transform 0.3s ease;
    border-radius: 25px 25px 0 0;
}

/* .bottom-navigation.hide {
    transform: translateY(100%);
} */

.bottom-navigation .nav-item {
    color: #333;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bottom-navigation .nav-item i {
    color: #000000;
    font-size: 25px;
}
.bottom-navigation .nav-item .bi-whatsapp{
    line-height: 0;
    padding-bottom: 5px;
}
.bottom-navigation .nav-item:hover {
    color: #007bff;
}

.bottom-navigation a:hover {
    color: #000000 !important;
}

.bottom-navigation-fixed {
    padding: 15px;
    position: fixed;
    bottom: 0;
    background: #ffffff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 11111;
    box-shadow: 2px -2px 16px 3px #00000029;
    align-items: center;
}

.bi-whatsapp {
    color: #0fbb55 !important;
}

.taxi-nav {
    max-width: 32px;
}

.packages-book h6 {
    font-size: 20px;
    font-weight: bold;
}

.packages-book p {
    margin: 0;
    color: #000000;
}

.packages-book p i {
    color: #000000;
}

.btn-main {
    background-color: var(--main-color);
}

.btn-main:hover {
    background-color: #f7b500;
}

/* Only mobile */
@media (min-width: 992px) {
    .bottom-navigation {
        display: none;
    }
}

/* ---------------------- About us --------------------- */

.about-tour-1 {
    max-width: 70%;
    border-radius: 0 !important;
}

.about-tour-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50%;
    border: 15px solid #ffffff;
    border-radius: 0 !important;
    border-bottom: none;
}

.about-tour-3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    max-width: 250px;
    animation: about-tour 3s infinite;
}

/* -------------------  vision mission  --------------------------- */

.section-wrap {
    padding: 70px 0;
    background: #f6f7fb;
}

.left-img {
    position: relative;
}

.left-img img.main {
    width: 100%;
    border-radius: 20px;
}

.discount-badge {
    position: absolute;
    right: 30px;
    top: 120px;
    background: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ff7a00;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.bottom-img {
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 70%;
    border-radius: 20px;
    border: 8px solid #fff;
}

.tag {
    display: inline-block;
    background: #e9f0ff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.desc {
    color: #6c757d;
    margin-bottom: 25px;
}

.icon-box {
    display: flex;
    align-items: start;
    gap: 15px;
}

.icon-circle {
    min-width: 60px;
    min-height: 60px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.icon-circle i {
    font-size: 25px;
}

.feature-box {
    border-bottom: 1px solid #ddd;
    margin-top: 20px;
}

.award-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.award-box i {
    font-size: 40px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.check-list li {
    margin-bottom: 10px;
}

.check-list i {
    color: var(--main-color);
    margin-right: 8px;
}

.btn-orange {
    background: #343a40;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
}

.btn-orange:hover {
    background: var(--main-color);
    color: #000000;
}

@media(max-width:768px) {
    .heading {
        font-size: 26px;
    }

    .bottom-img {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

@keyframes about-tour {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }

    100% {
        transform: translateY(0)
    }
}

/* SECTION */
.trending-packages-slider {
    padding: 50px 0;
}

/* HEADING */
.section-heading h2 {
    font-size: 28px;
    font-weight: 700;
}

.section-heading span {
    color: #0d6efd;
}

/* CARD */
.destination-card {
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

.destination-card:hover {
    transform: scale(1.03);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.destination-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 14px;
    margin: 0;
    color: #eaeaea;
}

/* OWL FIX */
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .destination-card {
        height: 300px;
    }

    .section-heading h2 {
        font-size: 22px;
    }
}

/* -------------------- packages menu  -------------------- */
.packages-menu {
    display: flex;
}

/* ---------------- whatsapp-btn ------------- */

.btn_whatsup_side {
    position: fixed;
    top: 50%;
    right: -150px;
    width: 205px !important;
    z-index: 111111;
    display: flex;
    font-size: 22px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all 0.5s ease;
    text-decoration: none;
    color: #ffffff;
}

.btn_whatsup_side:hover {
    right: 0px;
    width: 190px;
    z-index: 111111;
    display: flex;
    font-size: 18px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #42c452;
    padding: 10px 15px;
    border-radius: 50px 0 0 50px;
    color: #ffffff;
}

.btn_whatsup_side:hover img {
    max-width: 35px;
    transition: all 0.5s ease;
}

.btn_whatsup_side img {
    width: 100%;
    max-width: 55px;
    transition: all 0.5s ease;
}

@media (max-width: 768px) {
    .btn_whatsup_side img {
        width: 50px !important;
    }

    .btn_whatsup_side:hover img {
        max-width: 50px !important;
        right: 5px !important;
    }

    .btn_whatsup_side {
        right: -150px !important
    }

    .btn_whatsup_side:hover {
        right: -153px !important;
        width: 200px;
        z-index: 11111111;
        display: flex;
        font-size: 22px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 50px 0 0 50px;
        color: #ffffff;

    }
}

/* -------------------------------- */
.packages-menu {
    overflow-x: auto;
    scrollbar-width: none;
}

.packages-menu li {
    border: 1px solid #8d8d8d;
    margin-right: 10px;
    padding: 5px 25px;
    border-radius: 60px;
    margin-bottom: 20px;
}

.packages-menu li a {
    color: #000000;
    text-decoration: none;
}

.tour-header p {
    margin: 0;
}