* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Poppins", sans-serif;
}

.navbar-contener {
    width: 100%;
    background-color: #1D1D54;
    color: #fff;
    position: fixed;
    z-index: 999;
}

.navbar-overlay {
    background-image: url("../images/navbar-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.navbar-brand {
    color: #fff;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-toggler i {
    color: #fff;
}

.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: #fd661e;
}

.dropdown-menu {
    background-color: #1D1D54;
    /* opacity: .9; */
}

.dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    background-color: #fd661e;
    color: #fff;
}



/* hero banner style start  */
.video-div {
    position: relative;
}

.video-div::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #10102a;
    opacity: 0.5;
    pointer-events: none;
}

.banner-text-content {
    width: 600px;
    position: absolute;
    top: 270px;
    left: 100px;
    color: #fff;
}

/* ANIMATION BLOCK  */
.banner-text-div {
    position: absolute;
    -webkit-animation: fadeslideUp 16s infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    -moz-animation: fadeslideUp 16s infinite;
    /* Fx 5+ */
    -o-animation: fadeslideUp 16s infinite;
    /* Opera 12+ */
    animation: fadeslideUp 16s infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

.banner-text-div h2 {
    font-family: inherit;
    font-size: 70px;
    font-weight: bold;
}

.banner-text-div h2 span {
    color: #fd661e;
}

.banner-text-div p {
    font-weight: 600;
}

.banner-text-div .banner-button {
    margin-top: 10px;
    border: none;
    padding: 10px 25px;
    background-color: #1D1D54;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
}

#text2 {
    animation-delay: -12s;
    -webkit-animation-delay: -12s;
}

#text3 {
    animation-delay: -8s;
    -webkit-animation-delay: -8s;
}

#text4 {
    animation-delay: -4s;
    -webkit-animation-delay: -4s;
}

@-webkit-keyframes fadeslideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40%);
    }

    10% {
        opacity: 1;
        -webkit-transform: translateY(-50%);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-50%);
    }

    25% {
        opacity: 0;
        -webkit-transform: translateY(-60%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-60%);
    }
}

@-moz-keyframes fadeslideUp {
    0% {
        opacity: 0;
        transform: translateY(-40%);
    }

    10% {
        opacity: 1;
        transform: translateY(-50%);
    }

    20% {
        opacity: 1;
        transform: translateY(-50%);
    }

    25% {
        opacity: 0;
        transform: translateY(-60%);
    }

    100% {
        opacity: 0;
        transform: translateY(-60%);
    }
}

@-o-keyframes fadeslideUp {
    0% {
        opacity: 0;
        transform: translateY(-40%);
    }

    10% {
        opacity: 1;
        transform: translateY(-50%);
    }

    20% {
        opacity: 1;
        transform: translateY(-50%);
    }

    25% {
        opacity: 0;
        transform: translateY(-60%);
    }

    100% {
        opacity: 0;
        transform: translateY(-60%);
    }
}

@keyframes fadeslideUp {
    0% {
        opacity: 0;
        transform: translateY(-40%);
        -ms-transform: translateY(-40%);
    }

    10% {
        opacity: 1;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    20% {
        opacity: 1;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    25% {
        opacity: 0;
        transform: translateY(-60%);
        -ms-transform: translateY(-60%);
    }

    100% {
        opacity: 0;
        transform: translateY(-60%);
        -ms-transform: translateY(-60%);
    }
}

.mobile-video {
    display: none;
}

@media screen and (max-width: 1080px) {
    .banner-text-content {
        width: 500px;
        /* position: absolute; */
        top: 230px;
        left: 100px;
        /* color: #fff; */
    }
}

@media screen and (max-width: 990px) {
    /* .banner-text-content {} */

    .banner-text-div h2 {
        font-size: 50px;
    }
}

@media screen and (max-width: 800px) {
    .banner-text-content {
        top: 200px;
        left: 80px;
    }

    .banner-text-div h2 {
        font-size: 40px;
    }

    .banner-text-div p {
        font-weight: 500;
    }
}

@media screen and (max-width: 720px) {
    .banner-text-content {
        top: 170px;
        left: 60px;
    }

    .banner-text-div h2 {
        font-size: 40px;
    }

    .banner-text-div p {
        font-size: 14px;
        font-weight: 500;
    }
}

@media screen and (max-width: 650px) {
    .pc-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

    .banner-text-content {
        width: 400px;
        top: 220px;
        left: 60px;
        /* background-color: #1e93fd; */
    }

    .banner-text-div h2 {
        font-size: 50px;
    }

    .banner-text-div p {
        margin: 25px 0px;
    }
}

@media screen and (max-width: 480px) {
    .banner-text-content {
        width: 330px;
        top: 190px;
        margin: auto;
        left: 10%;
        /* background-color: #1e93fd; */
    }

    .banner-text-div h2 {
        font-size: 28px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 370px) {
    .banner-text-content {
        width: 270px;
        margin: auto;
        top: 175px;
        left: 7%;
        /* background-color: #1e93fd; */
    }

    .banner-text-div h2 {
        font-size: 34px;
    }

    .banner-text-div p {
        font-size: 12px;
    }
}

@media screen and (max-width: 315px) {
    .banner-text-content {
        width: 250px;
        margin: auto;
        top: 230px;
        left: 7%;
        /* border: 2px solid red; */
    }

    .banner-text-div h2 {
        font-size: 28px;
        margin-bottom: 0px;
    }

    .banner-text-div p {
        margin-top: 5px;
    }
}


/* service section start  */
.service-main-div {
    position: relative;
    top: -30px;
}

.service-main-div .services-main-image {
    margin: 5px;
    width: 100%;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0px 1px 3px 1px #a4a4a4;
}

.service-main-div .service-sub-div {
    position: relative;
}

.service-sub-div .service-icon {
    /* width: 100px; */
    position: absolute;
    top: 5px;
    left: 20px;
    display: flex;
    /* border: 2px solid red; */
    align-items: center;

}

.service-icon img {
    width: 100px;
}

.service-icon h3 {
    margin-left: 30px;
    color: #fff;
    font-weight: bold;
}

@media screen and (max-width: 950px) {
    .service-main-div {
        display: none;
    }
}


/* ABOUT US START   */
.about-section-main {
    background-image: url("../images/about-bg-image.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 641px auto;
    position: relative;
}

.about-overflow {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #ffff;
    opacity: .8;
}

.about-content-box {
    /* border: 2px solid rebeccapurple; */
    margin-top: 10px;
    padding: 10px 0px;
    z-index: 9;

}

.about-content-box h2 {
    /* margin-top: 20px; */
    margin-bottom: 0px;
    /* font-family: "Reenie Beanie"; */
    color: #fd661e;
    font-weight: bold;
    font-size: 30px;
    font-family: "Dancing Script";
}

.about-content-box h1 {
    font-size: 45px;
    color: #181d4e;
    font-weight: bold;
    margin-top: 0px;
}

.about-content-box p {
    margin: 20px 0px;
    color: #5c5c5c;
    font-weight: 500;
    font-size: 14px;
}

.about-content-box a {
    text-decoration: none;
    padding: 10px 25px;
    background-color: #fd661e;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    .about-section-main {
        background-position: top right;
        background-repeat: no-repeat;
        background-size: 441px auto;
    }

    .about-content-box h1 {
        font-size: 25px;
    }

    .about-content-box h2 {
        font-size: 20px;

    }
}

@media screen and (max-width: 390px) {
    .about-section-main {

        background-size: 381px auto;
    }

    .about-content-box h2 {
        font-size: 25px;

    }
}

/*##### packages card start ############### */
.packages-main-section {
    background-color: #edf2f5;
    padding: 20px 30;
}

.package-after-canatiner-div {
    /* width: 95%; */
    margin: 0px auto;
}

.package-card-main {
    position: relative;
    z-index: 9;
    box-shadow: 0px 1px 20px 1px #dbdbdb;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    border-radius: 7px;
    overflow: hidden;
    /*margin: 5px;*/
}

.package-card-image {
    width: 100%;
    /* position: relative; */
    /* object-fit: contain; */
}

.package-card-main .package-duratuion-div {
    width: 90%;
    margin: auto;
    box-shadow: 0px 1px 3px 1px #cdcdcd;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    position: relative;
    top: -15px;
    background-color: #fff;
    border-radius: 3px;
}

.package-duratuion-div .days {
    color: #5c5c5c;
    font-size: 14px;
    font-weight: 500;
}

.package-duratuion-div i {
    font-size: 14px;
    color: #fd661e;
    /* font-weight: 500; */
}

/* .package-duratuion-div a {} */

.package-card-main .package-title {
    width: 90%;
    margin: auto;
}

.package-card-main .package-title a {
    text-decoration: none;
    color: #181d4e;
    font-size: 18px;
    font-weight: 700;

}

.package-card-main .package-location {
    width: 90%;
    margin: auto;
    color: #fd661e;
}

.package-card-main .package-location a {
    text-decoration: none;
    color: #5c5c5c;
    font-size: 14px;
    font-weight: 500;

}

.package-line {
    width: 90%;
    height: 1px;
    margin: 10px auto;
    border: 1px dotted #e1e1e1;
}

.package-card-main .package-details {
    width: 90%;
    margin: auto;
    font-size: 14px;
    font-weight: 400;
    color: #5c5c5c;
}

.package-bottom-card-div {
    width: 90%;
    margin: auto;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-bottom-card-div .package-card-more {
    text-decoration: none;
    padding: 7px 25px;
    background-color: #fd661e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 3px;
    transition: all 1s;

}

.package-card-more:hover {
    background-color: #181d4e;
}

.package-bottom-card-div .package-price {
    font-size: 18px;
    font-weight: 700;
    color: #181d4e;
}

/* ### DESTINATION SECTION START ##########  */
.destination-maindiv {
    background-color: #edf2f5;
    padding: 30px 0px;
}

.destination-heading-content {
    text-align: center;
    padding: 20px 0px;
}

.destination-heading-content span {
    /* margin-top: 20px; */
    margin-bottom: 0px;
    /* font-family: "Reenie Beanie"; */
    color: #fd661e;
    font-weight: bold;
    font-size: 30px;
    font-family: "Dancing Script";
}

.destination-heading-content h3 {
    font-weight: 700;
    color: #181d4e;
}

.destination-heading-content p {
    font-size: 14px;
    font-weight: 400;
    color: #5c5c5c;

}

.destination-card-div {
    margin: 5px 0px;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 340px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
}

.destination-card-div1 {
    background-image: url("..//images/i-parallax-07-destination-01.jpg");
}

.destination-card-div2 {
    background-image: url("..//images/i-parallax-08-destination-02.jpg");
}

.destination-card-div3 {
    background-image: url("..//images/i-parallax-09-destination-03.jpg");
}

.destination-card-div4 {
    background-image: url("..//images/i-parallax-07-destination-01.jpg");
}

.destination-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #181d4e;
    opacity: .3;
}

.destination-text-contain1 {
    width: 90%;
    margin: auto;
    position: relative;
    top: 150px;
    text-align: center;

}

.destination-text-contain1 h2 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;

}

.destination-text-contain1 p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.destination-text-contain1 a {
    text-decoration: none;
    color: #fff;
    background-color: #fd661e;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    transition: all 1s;
}

.destination-text-contain1 a:hover {
    background-color: #181d4e;
}


/* GALLERY SECTIORN START  */
.gallery-section-main-div {
    /* margin-top: 30px; */
    padding: 80px 0px;
    background-image: url(../images/gallery-bg-image.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.gallery-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #181d4e;
    opacity: .5;
}

.gallery-sub-main-div {
    position: relative;
    z-index: 9;
}

/* .gallery-heading h2{
    font-size: 50px;
    color: #fd661e;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
} */
.gallerySwiper {
    width: 100%;
    height: 100%;
}

.gallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #181d4e;
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: #fd661e;
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.gallery-content-box {
    padding: 0px 20px;
    /* border: 1px solid red; */
    margin-top: 5px;
    color: #fff;
}

.gallery-content-box h2 {
    margin-bottom: 0px;
    color: #fd661e;
    font-weight: bold;
    font-size: 20px;
    font-family: "Dancing Script";
}

.gallery-content-box h3 {
    font-size: 40px;
    font-weight: bold;
    /* color: #fff; */
}

.gallery-content-box p {
    font-size: 14px;
    font-weight: 400;
    margin: 20px 0px;
}

.gallery-content-box h5 {
    font-size: 14px;
    margin: 0px;
}

.gallery-content-box .gallry-divid-line {
    width: 100%;
    height: 1px;
    background-color: #a9a9a9;
    margin: 10px 0px;
}

.gallery-link-div {
    margin-top: 20px;
}

.gallery-content-box a {
    color: #fff;
    background-color: #fd661e;
    padding: 7px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;

}


/* REVIEW SECTION START  */
.review-section-main-div {
    background-image: url("../images/background-review.jpg");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 736px auto;
    padding: 80px 0px;
}

.review-section-sub-div h2 {
    color: #181d4e;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.review-section-sub-div p {
    text-align: center;
    margin-top: 15px;
    color: #4d4d4d;
    font-size: 14px;
}

.reveiw-main-card {
    /* width: 300px; */
    padding: 20px;
    /* margin: 50px; */
    background-color: #1e93fd;
    color: #fff;
    border-radius: 10px;
}

.reveiw-main-card p {
    color: #fff;
    text-align: start;
    margin: 0px;
}

.reveiw-main-card .review-image-div {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.reveiw-main-card .review-image-div img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-image-div .review-name {
    margin-left: 10px;
}

.review-image-div .review-name p {
    font-weight: bold;
    margin: 0px;
    color: #fff;
}

.review-image-div .review-name span {
    font-size: 12px;
    font-weight: 500;

}

/* FOOTER SECTOR START  */
footer {
    background-color: #181d4e;

    padding: 50px 0px;
    position: relative;
}

.footer-overlay {
    background-image: url("../images/footer-background-image.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.footer-containerr {
    /* width: 95%; */
    /* margin: auto; */
    position: relative;
    z-index: 9;
    color: #fff;
}

.footer-about h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.footer-about h2 span {
    color: #fd661e;
}

.footer-address {
    padding: 0px 50px;
}

.footer-address h4 {
    font-size: 18px;
    font-weight: bold;
}

.footer-address p {
    font-size: 14px;
}

.footr-contact h4 {
    font-size: 18px;
    font-weight: bold;
}

.footr-contact .footer-mail-button {
    text-decoration: none;
    font-size: 12px;
    padding: 5px 15px;
    background-color: #fd661e;
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
}

.footr-contact p {
    font-weight: bold;
    margin-top: 20px;
}

.footr-contact .social-media-link {
    color: #fd661e;
    margin: 0px 5px;
    font-size: 18px;
    font-weight: bold;
}

.footer-copy-right {
    font-size: 12px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 99;
    bottom: -40px;
}

.footer-links {
    padding: 0px 10px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fd661e;
}

@media screen and (max-width: 970px) {
    .footer-address {
        margin-top: 15px;
        /* border: 2px solid rgb(207, 197, 217); */
        padding: 10px;

        /* margin-left: 1px; */
    }

    .footr-contact {
        margin-top: 10px;
    }
}

@media screen and (max-width: 520px) {
    .footer-about h2 {
        font-size: 1.5rem;
    }
}

/* ########  packages pages style start  ############*/
#package-banner-pc-img {
    height: 50vh;
}

.package-banner-overlay {
    width: 100%;
    height: 50vh;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #181d4e;
    opacity: .4;
}

.other-page-banner-text-content {
    width: 100%;
    position: absolute;
    top: 140px;
    z-index: 9;
    text-align: center;
}

.other-page-banner-text-div h2 {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}

.other-page-banner-text-div p {
    color: #ffff;
    font-weight: bold;
}

.other-page-banner-text-div h2 span {
    color: #fd661e;
}

@media screen and (max-width: 750px) {
    .package-banner-overlay {
        height: 30vh;
    }

    #package-banner-pc-img {
        height: 30vh;
    }

    .other-page-banner-text-div h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 430px) {
    .other-page-banner-text-content {
        top: 110px;
    }

    .package-banner-overlay {
        height: 25vh;
    }

    #package-banner-pc-img {
        height: 25vh;
    }

    .other-page-banner-text-div h2 {
        font-size: 25px;
    }
}

/* ######## about us page style #######  */
.divid-div-between {
    width: 100%;
    height: 40px;
}

#about-page-title {
    font-size: 34px;
    /* color: red; */
}

.about-content-box #about-page-title span {
    background-color: #fd661e;
    color: #fff;
    padding: 0px 5px;
    font-size: 28px;
}

.about-main-line-for-local {
    width: 80%;
    height: 6px;
    background-color: #e8e8e8;
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-sub-line-for-local {
    width: 90%;
    height: 6px;
    background-color: #1D1D54;
    border-radius: 2px;
    display: flex;
    align-items: center;
}

.about-sub-line-for-local .shining-div {
    width: 1px;
    height: 1px;
    background-color: #fff;
    box-shadow: 0px 0px 5px 5px #fff;
    border-radius: 50%;
    /* margin-left: 20px; */
    position: relative;
    animation: shining 25s linear infinite;
}

@keyframes shining {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/* secont div aboud us  */
.second-about-main-div {
    margin-top: 20px;
    padding: 30px 0px;
    background-color: #edf2f5;
}

.secont-about-para-div {
    margin-top: 20px;
    /* border: 2px solid red; */
    color: #5c5c5c;
}

.about-icon-conatener {
    margin-top: 40px;
}

.about-icon-main-div {
    margin: 10px auto;
}

.about-icon-main-div img {
    width: 100px;
}

.about-icon-main-div h5 {
    font-weight: bold;
    margin: 10px 0px;
}

.about-icon-main-div p {
    color: #5c5c5c;
}

@media screen and (max-width: 750px) {
    .second-about-main-div {
        margin-top: 10px;
        padding: 0px;
    }

    .secont-about-para-div {
        margin: 0px;
    }

    .secont-about-para-div p {
        margin-left: -10px;
        font-size: 14px;
    }

    .about-icon-conatener {
        margin-top: 10px;
        text-align: center;
    }

    .about-icon-main-div img {
        width: 70px;
    }

    .about-icon-main-div h5 {
        font-size: 16px;
        margin: 5px 0px;
    }

    .about-icon-main-div p {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {}

/* about book div start  */
.about-book-section {
    margin-top: 20px;
    background-color: #1D1D54;
    /* padding: 20px; */
}

.textbutton-div-book-section {
    color: #fff;
}

.textbutton-div-book-section h5 {
    color: #cdcdcd;
    margin-top: 20px;
    margin-left: 20px;
}

.textbutton-div-book-section h3 {
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 40px;
    font-weight: bold;
}

.textbutton-div-book-section button {
    margin-top: 40px;
    color: #fff;
    background-color: #fd661e;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
}

/*############ about page resposive ######## */
/* first about section   */
@media screen and (max-width: 750px) {
    /* .about-page-explore-div {
        text-align: center;
    } */

    .about-page-explore-div h1 {
        font-size: 20px;
    }

    .about-page-explore-div #about-page-title {
        font-size: 20px;
    }

    .about-page-explore-div #about-page-title br {
        display: none;
    }

    .about-page-explore-div #about-page-title span {
        font-size: 14px;
    }

    .about-page-explore-div p {
        font-size: 12px;
    }

    .about-page-explore-div h6 {
        font-size: 14px;
    }

    .about-page-explore-div .about-main-line-for-local {
        /* display: none; */
        width: 70%;
    }

    .about-page-explore-div a {
        /* font-size: 10px; */
        padding: 7px 15px;
    }
}

@media screen and (max-width: 1024px) {
    .textbutton-div-book-section h3 {
        font-size: 30px;
    }
}

@media screen and (max-width: 990px) {
    .textbutton-div-book-section {
        text-align: center;
    }

    .textbutton-div-book-section h5 {
        margin: 0px;
        margin-top: 10px;
    }

    .textbutton-div-book-section h3 {
        margin-left: 0px;
        text-align: center;
    }

    .textbutton-div-book-section button {
        margin-top: -3px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .textbutton-div-book-section h3 {
        font-size: 25px;
    }
}

@media screen and (max-width: 463px) {
    .textbutton-div-book-section h5 {
        font-size: 14px;
    }

    .textbutton-div-book-section h3 {
        font-size: 20px;
    }

    .textbutton-div-book-section button {
        padding: 7px 20px;
        font-size: 12px;
    }
}

@media screen and (max-width: 387px) {
    .textbutton-div-book-section h3 {
        font-size: 16px;
    }
}




/* CONTACT PAGE STYLE START  */
.caontact-page-main-div-deatils {
    padding: 40px 0px;
}

.contact-details-div {
    margin-top: 20px;
}

.contact-details-div .contact-page-icon-div {
    display: flex;
    align-items: baseline;
}

.contact-page-icon-div i {
    color: #fd661e;
    background-color: #e8e8e8;
    font-size: 34px;
    padding: 15px 20px;
    border-radius: 50%;
}

.contact-page-icon-div h5 {
    color: #1D1D54;
    font-size: 22px;
    font-weight: bold;
    margin-left: 20px;
}

.contact-details-div h6 {
    margin: 20px 0px;
    font-size: 18px;
}

.contact-details-div p {
    /* width: 400px; */
    color: #5c5c5c;
}

#call-icon-contact-page i {
    padding: 15px 17px;
    background-color: #fd661e;
    color: #fff;
}

#mail-icon-contact-page i {
    padding: 17px 18px;
    background-color: #1D1D54;
    color: #fff;
}

/*######### conatc form section ########## */
.form-section-first-div {
    background-color: #e1e1e1;
    padding-top: 50px;
    padding-bottom: 100px;
}

.contact-form-main-div {
    text-align: center;
}

.contact-form-main-div span {
    color: #fd661e;
    font-weight: bold;
    font-size: 18px;
    font-family: "Dancing Script";
}

.contact-form-main-div h3 {
    font-size: 30px;
    font-weight: bold;
    color: #181d4e;
}

.contact-form-main-div p {
    color: #5c5c5c;
}

.contact-form-main-div .form-submit-button {
    width: 100%;
    background-color: #fd661e;
    color: #fff;
    border: none;
    padding: 8px 0px;
    border-radius: 5px;
    font-weight: bold;
}


/* GULMARG VENTURES SERVICE PAGE STYLE  */
.service-page-hero {
    position: relative;
    top: 50px;
    margin-bottom: 120px;
    padding: 30px 0px;
    background-image: linear-gradient(to bottom, #181d4e, #43416d, #6c698d, #9693ae, #c2c0d0, #d6d5df, #eaeaef, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
}

.service-banner-div {
    position: relative;
    width: 100%;
    /* border: 2px solid red; */
    /* margin: auto; */
}

.service-banner-div {
    width: 280px;
    margin: auto;
}

.service-banner-div .main-image-div img {
    width: 100%;
    border-radius: 5px;
}

.service-banner-div .sub-image-banner-service-page {
    width: 120px;
    position: absolute;
    top: 10px;
    border-radius: 5px;
}

#bnr-img1 {
    top: -10px;
    left: -70px;
}

#bnr-img2 {
    width: 150px;
    top: 300px;
    left: -70px;
}

#bnr-img3 {
    right: -80px;
    top: 100px;
}

.service-page-hero-contact h1 {
    color: #fd661e;
    font-weight: bold;
}

@media screen and (max-width: 990px) {
    .service-page-hero {
        margin-bottom: 50px;
    }

    .service-page-hero-contact {
        margin-top: 60px;
    }
}

@media screen and (max-width: 550px) {
    .service-banner-div {
        width: 230px;
    }

    .service-banner-div .sub-image-banner-service-page {
        width: 100px;
    }

    #bnr-img1 {
        top: -10px;
        left: -60px;
    }

    #bnr-img2 {
        width: 120px;
        top: 250px;
        left: -50px;
    }

    #bnr-img3 {
        right: -60px;
        top: 80px;
    }
}

@media screen and (max-width: 380px) {
    .service-banner-div {
        width: 200px;
    }

    .service-banner-div .sub-image-banner-service-page {
        width: 80px;
    }

    #bnr-img1 {
        top: -10px;
        left: -50px;
    }

    #bnr-img2 {
        width: 100px;
        top: 220px;
        left: -40px;
    }

    #bnr-img3 {
        right: -40px;
        top: 80px;
    }
}

/* service page secrvice section  */
.service-page-main-div h5 {
    color: #181d4e;
    font-size: 18px;
    font-weight: bold;
}

.service-page-main-div p {
    font-size: 14px;
    color: #5c5c5c;
}

.service-page-main-div p b {
    color: #000;
}

.why-choose-main-div {
    background-color: #f1f1f1;
}

.why-choose-sub-div {
    padding: 30px 0px;
}

.why-choose-sub-div h4 {
    font-size: 20px;
    font-weight: bold;
    color: #181d4e;
    padding: 20px 0px;
}

.why-choose-sub-div p {
    font-size: 14px;
    color: #5c5c5c;
}

.why-choose-sub-div p b {
    color: #000;
}

/* featured-destinations-sub-div */
.featured-destinations-sub-div {
    padding: 30px 0px;
}

.featured-destinations-sub-div h4 {
    font-size: 20px;
    font-weight: bold;
    color: #181d4e;
    padding: 10px 0px;
}

.featured-destinations-sub-div p {
    font-size: 14px;
    color: #5c5c5c;
}

.featured-destinations-sub-div p b {
    color: #000;
}

/* ########## action style ############ */
.booking-form-div {
    width: 500px;
    padding: 5px;
    background-color: #d6d6d6;
    /* background: linear-gradient(10deg, #191E4E, #1E94FD); */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    box-shadow: 0px 0px 1px 1px #fff;
    border-radius: 5px;
    display: none;
}

.booking-form-div .form-sub-div {
    width: 90%;
    margin: auto;
    position: relative;
}

.formClose {
    color: #1e93fd;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
}

.booking-form-div .form-sub-div .form-title {
    color: #181d4e;
    font-weight: bold;
    font-size: 28px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 0px;
}

.booking-form-div .form-sub-div .form-slogan {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0px;
}

.booking-form-div .form-sub-div .form-slogan span {
    color: #fd661e;
    font-size: 16px;
}

.booking-form-div .form-sub-div form input {
    width: 100%;
    height: 30px;
    margin-bottom: 15px;
    border: none;
    padding-left: 7px;
    border-radius: 3px;
}

.booking-form-div .form-sub-div input::placeholder {
    color: #777777;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.booking-form-div .form-sub-div form label {
    text-align: start;
    color: #fff;
    font-size: 13px;
}

.booking-form-div .form-sub-div form .form-sumbmit-button {
    color: #fff;
    background-color: #fd661e;
    font-size: 14px;
    font-weight: bold;
    height: 34px;
}

@media screen and (max-width: 720px) {
    .booking-form-div {
        width: 95%;
        margin: auto;
    }
}

.whatsapp-btnn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-btnn a {
    color: green;
    font-size: 40px;

}

.call-now {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;

}

.call-now a {
    color: #fd661e;
    font-size: 40px;
    /* animation: callPop 5s infinite linear; */
}

/* package details page style start ############### */
.details-page-hero-banner {
    /* margin-top: 60px; */
    position: relative;
    /* bottom: 10px; */
    padding-top: 60px;
    padding-bottom: 20px;
    background-color: #edf2f5;
}

.detailsPageHeroSwiper {
    width: 100%;
    height: 315px;
}

@media screen and (max-width: 768px) {
    .detailsPageHeroSwiper {
        height: 210px;
    }
}

@media screen and (max-width: 480px) {
    .detailsPageHeroSwiper {
        height: 230px;
    }
}

.detailsPageHeroSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-page-heading-main-div {
    margin-top: 30px;
}

.detail-page-heading-main-div h1 {
    font-size: 26px;
    font-weight: bold;
    color: #181d4e;
    margin-bottom: 0px;
}

.detail-page-heading-main-div span {
    color: #5c5c5c;
    font-size: 14px;
    font-weight: bold;
}

.detail-page-heading-main-div span i {
    color: #fd661e;
}

.detail-page-heading-main-div p {
    font-size: 18px;
    font-weight: bold;
    color: #4d4d4d;
}

.detail-page-heading-main-div p i {
    color: #fd661e;
    font-size: 20px;
}

/* divedr div  */
.divider-detail-page {
    width: 1px;
    height: 40px;
}

/* package overview section  */
.overview-packg-text-contant h4 {
    font-size: 20px;
    font-weight: bold;
}

.overview-packg-text-contant p {
    font-size: 14px;
    color: #4d4d4d;
}

.confident-card {
    padding: 20px;
    box-shadow: 0px 0px 15px 1px #eaeaea;
}

.confident-card h6 {
    margin: 10px 0px;
    font-size: 16px;
    font-weight: bold;
    color: #1D1D54;
}

.confident-card p {
    font-size: 14px;
    color: #4d4d4d;
}

.confident-card p i {
    color: #fd661e;
}

@media screen and (max-width: 960px) {
    .confident-card {
        padding: 20px;
        box-shadow: none;
        background-color: #f6f9fa;
    }
}

/* include packages section  */
.inclsn-and-exclsn-div {
    margin: 10px 0px;
}

.inclsn-and-exclsn-div h6 {
    font-weight: bold;
}

.inclsn-and-exclsn-div p {
    font-size: 14px;
    color: #4d4d4d;
}

.inclsn-and-exclsn-div p i {
    color: #1e93fd;
}

/* book section and price  */
.detail-page-book-price-sub {
    background-color: #1D1D54;
    position: relative;
    padding: 20px 0px;
}

.detail-page-book-overlay {
    background-image: url("../images/footer-background-image.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.detail-page-price-div-book {
    color: #fff;
    position: relative;
    z-index: 9;
}

.detail-page-price-div-book span {
    color: #fd661e;
}

.detail-page-price-div-book h3 {
    font-size: 22px;
}

.detail-page-price-div-book h3 span {
    color: #fff;
    /* font-weight: bold; */
    font-size: 30px;
}

.detail-page-book-btn-div {
    position: relative;
    z-index: 9;
}

.detail-page-book-btn-div button {
    margin-top: 10px;
    border: none;
    padding: 10px 25px;
    /* font-size: 14px; */
    font-weight: bold;
    background-color: #fd661e;
    color: #fff;
    border-radius: 4px;
}

@media screen and (max-width: 960px) {
    .detail-page-book-price-sub {
        text-align: center;
    }
}

@media screen and (max-width: 560px) {
    .detail-page-price-div-book h3 {
        font-size: 18px;
    }

    .detail-page-price-div-book h3 span {
        color: #fff;
        /* font-weight: bold; */
        font-size: 24px;
    }

    .detail-page-book-btn-div button {
        margin-top: 10px;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* itinery section start  */
.itinery-main-div {
    margin: 30px 0px;
}

.itinery-main-div .iteneri-title-main {
    font-size: 22px;
    font-weight: bold;
}

.accordian {
    margin-top: 16px;
    cursor: pointer;
    background-color: #edf2f5;
    padding: 10px;
    border-radius: 4px;
}

.accordian hr {
    margin: 0;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question h6 {
    font-weight: bold;
    margin: 0px;
}

.question h6 span {
    color: #fd661e;
}

.question .icon-accordian {
    font-weight: bold;
    font-size: 24px;
    margin-top: 5px;
}

.icon-accordian.active {
    transform: rotate(-180deg);
}

.answer {
    max-height: 0;
    overflow: hidden;
}

.answer p {
    font-size: 14px;
    margin: 0px;
}

.answer.active {
    max-height: fit-content;
}


/* destination page style start ################################### */
.dstinsn-banner-text-sub {
    position: relative;
    top: -30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 1px 5px #e2e2e2;

}

.dstinsn-contact-banner-card {
    display: flex;
    align-items: center;
}

.dstinsn-contact-banner-card .dstinsn-banner-card-icon .bag {
    font-size: 26px;
    padding: 14px 18px;
    background-color: #fd661e;
    border-radius: 50%;
    color: #fff;
}

.dstinsn-banner-card-text {
    margin-left: 20px;
}

.dstinsn-banner-card-text p {
    margin: 0px;
    margin-bottom: 3px;
    font-weight: 400;
    color: #4d4d4d;
    font-size: 14px;
}

.dstinsn-banner-card-text h6 {
    margin: 0px;
    margin-top: 3px;
    font-size: 16px;
    font-weight: bold;
    color: #181d4e;
}

.dstinsn-banner-card-text h6 a {
    text-decoration: none;
    color: #181d4e;
}

.dstinsn-contact-banner-card .dstinsn-banner-card-icon .mail {
    font-size: 26px;
    padding: 14px 15px;
    background-color: #fd661e;
    border-radius: 50%;
    color: #fff;
}

@media screen and (max-width: 990px) {
    .dstinsn-banner-text-sub {
        top: -10px;
    }

    .dstinsn-contact-banner-card {
        margin-top: 15px;
    }
}

/* <!-- destinations about information section --> */
.dstinsn-about-info-main-div {
    padding: 20px 0px;
}

.dstinsn-inform-img-div {
    width: 100%;
}

.dstinsn-inform-img-div img {
    width: 100%;
}

.dstinsn-about-info-text-content .dstinsn-about-info-title {
    color: #1D1D54;
    font-size: 28px;
    font-weight: bold;
}

.dstinsn-about-info-text-content .dstinsn-about-info-title span {
    color: #fd661e;
}

.dstinsn-about-info-text-content p {
    font-size: 14px;
    color: #4d4d4d;
}

.dstinsn-about-info-text-content button {
    border: none;
    padding: 10px 20px;
    background: #fd661e;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
}

@media screen and (max-width: 990px) {
    .dstinsn-about-info-main-div {
        margin-top: 30px;
        /* text-align: center; */
    }

    .dstinsn-about-info-text-content {
        margin-top: 20px;
    }
}

/* dstinsn-package-main-div section start  */
.dstinsn-package-main-div {
    margin-top: 30px;
}

.dstinsn-packgages-title-div {
    padding-top: 30px;
    text-align: center;
}

.dstinsn-packgages-title-div span {
    /* margin-top: 20px;  */
    margin-bottom: 0px;
    color: #fd661e;
    font-weight: bold;
    font-size: 30px;
    font-family: "Dancing Script";
}

.dstinsn-packgages-title-div h2 {
    /* font-size: 24px; */
    font-weight: bold;
    color: #1D1D54;
}

.dstinsn-packgages-title-div p {
    font-size: 14px;
    color: #4d4d4d;
}

/* destinaion main page styling  ################################*/
.destination-page-title-h1 {
    font-size: 24px;
    font-weight: bold;
    color: #1D1D54;
}


/* Adventure & Experience Categories section styling */
.activity-cat-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.activity-cat-heading {
    text-align: left;
    margin-bottom: 35px;
    width: 100%;
    padding: 0 15px;
}

.activity-cat-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1D1D54;
    margin: 0;
    text-transform: capitalize;
}


.activity-cat-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.activity-cat-card {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-cat-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.activity-cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%); */
    transition: opacity 0.3s ease;
}

/* Distinct Colored Overlays */
/* Brown/Gold like the reference */
.overlay-brown {
    background: linear-gradient(to top, rgba(139, 101, 52, 0.95) 0%, rgba(139, 101, 52, 0.6) 30%, transparent 100%);
}

/* Dark Blue like the reference */
.overlay-blue {
    background: linear-gradient(to top, rgba(29, 45, 68, 0.95) 0%, rgba(29, 45, 68, 0.6) 30%, transparent 100%);
}

/* Teal/Green like the reference */
.overlay-teal {
    background: linear-gradient(to top, rgba(30, 77, 88, 0.95) 0%, rgba(30, 77, 88, 0.6) 30%, transparent 100%);
}

/* Eco Green */
.overlay-green {
    background: linear-gradient(to top, rgba(26, 92, 32, 0.95) 0%, rgba(26, 92, 32, 0.6) 30%, transparent 100%);
}

/* Navy/Deep Water */
.overlay-navy {
    background: linear-gradient(to top, rgba(8, 28, 84, 0.95) 0%, rgba(8, 28, 84, 0.6) 30%, transparent 100%);
}

.activity-cat-card:hover .activity-cat-overlay {
    background: linear-gradient(to top, rgba(29, 29, 84, 0.9) 0%, rgba(29, 29, 84, 0.4) 60%, transparent 100%);
}

.activity-cat-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.activity-cat-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}

.activity-cat-content p {
    color: #eee;
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

/* .activity-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(253, 102, 30, 0.2);
} */



/* Swiper Pagination Style */
.activityCatSwiper {
    padding-bottom: 30px;
}

.activityCatSwiper .swiper-pagination {
    bottom: 0 !important;
}

.activityCatSwiper .swiper-pagination-bullet-active {
    background: #fd661e;
}

/* Packages Slider Styling */
.packagesSwiper {
    padding-bottom: 50px;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.packagesSwiper .swiper-button-next,
.packagesSwiper .swiper-button-prev {
    color: #fd661e;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.packagesSwiper .swiper-button-next:after,
.packagesSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.packagesSwiper .swiper-pagination-bullet-active {
    background: #fd661e;
}

@media screen and (max-width: 768px) {
    .activity-cat-section {
        padding: 40px 0;
    }

    .activity-cat-heading h3 {
        font-size: 26px;
    }

    .activity-cat-content h4 {
        font-size: 16px;
    }
}

/* Featured Wedding Vendors Section - Themed */
.vendor-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

/* Fix layout for row inside p-0 container */
.vendor-section .row {
    margin-left: 0;
    margin-right: 0;
}

.vendor-section-heading {
    margin-bottom: 15px;
    text-align: left;
    width: 100%;
    padding: 0 15px;
}

.vendor-section-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1D1D54;
    /* Website Theme Blue */
    margin: 0;
    text-transform: capitalize;
}

.vendor-slider-container {
    padding: 0 15px;
    position: relative;
    width: 100%;
}

.vendor-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vendor-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    margin: 10px 0;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #fd661e;
    /* Website Theme Orange */
}

.vendor-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66%;
    /* Near 3:2 Aspect Ratio */
}

.vendor-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1c225c;
    /* Default Color */
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

/* Alternative colors for cards */
.vendorSwiper .swiper-slide:nth-child(even) .premium-badge {
    background: #fd661e;
}

.vendorSwiper .swiper-slide:nth-child(odd) .premium-badge {
    background: #1c225c;
}

.vendor-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vendor-name {
    font-size: 18px;
    font-weight: 700;
    color: #1D1D54;
    /* Theme Blue */
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    min-height: 50px;
}

.vendor-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.vendor-rating i {
    color: #ffc107;
}

.vendor-reviews {
    color: #777;
    font-size: 13px;
}

.vendor-location {
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.vendor-info-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.vendor-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-weight: bold;
}

.vendor-info-item i {
    width: 18px;
    color: #fd661e;
    font-size: 15px;
}


/* Updated Swiper Navigation */
.vendor-slider-container .swiper-button-next,
.vendor-slider-container .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #1D1D54;
}

.vendor-slider-container .swiper-button-next:after,
.vendor-slider-container .swiper-button-prev:after {
    font-size: 20px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 991px) {
    .vendor-section {
        padding: 40px 0;
    }

    .vendor-section-heading h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .vendor-section-heading {
        margin-bottom: 25px;
    }

    .vendor-section-heading h2 {
        font-size: 24px;
    }

    .vendor-slider-container .swiper-button-next,
    .vendor-slider-container .swiper-button-prev {
        display: none;
    }

    .vendor-content {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .vendor-section-heading h2 {
        font-size: 20px;
    }

    .vendor-name {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 8px;
    }

    .vendor-rating-row {
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 10px;
    }

    .vendor-location {
        width: 100%;
        margin-top: 2px;
    }

    .vendor-info-grid {
        gap: 10px;
    }

    .vendor-info-item {
        font-size: 12px;
        gap: 6px;
    }

    .vendor-info-item i {
        font-size: 13px;
        width: 15px;
    }

    .premium-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 10px;
        left: 10px;
    }
}

/* ########## Wedding Vendor Details Page Styles ########## */

/* Hero Gallery Grid */
.vd-gallery-container {
    padding: 20px 0;
}

/* ########## Wedding Vendor Details Page Styles ########## */
.vd-page-wrapper {
    background-color: #f8f9fa;
    padding-top: 65px;
    /* Offset for fixed navbar */
}

/* Top Alert Bar */
.vd-top-alert .alert {
    background-color: #e3f2fd;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
}

.text-orange {
    color: #fd661e !important;
}

.text-blue {
    color: #1D1D54 !important;
}

.btn-orange {
    background-color: #fd661e;
    color: #fff;
    border: none;
}

.btn-orange:hover {
    background-color: #e55a1a;
    color: #fff;
}

/* Refined Gallery Grid (Desktop) */
.vd-gallery-grid-refined {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    grid-gap: 10px;
    border-radius: 12px;
    overflow: hidden;
    transform: none !important;
    /* Disable swiper transform on desktop */
}

/* Ensure swiper-slide doesn't break grid on desktop */
.vd-hero-swiper .swiper-slide {
    width: auto !important;
    height: auto !important;
}

.vd-grid-item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
}

.vd-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vd-grid-item:hover img {
    transform: scale(1.05);
}

.item-large {
    grid-area: 1 / 1 / 3 / 3;
}

.item-small {
    grid-area: 1 / 3 / 2 / 4;
}

.item-small-2 {
    grid-area: 1 / 4 / 2 / 5;
}

.item-wide {
    grid-area: 2 / 3 / 3 / 5;
}

/* Badges & Buttons on Grid */
.vd-play-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.vd-hired-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vd-wish-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #444;
}

.vd-overlay-btns {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.vd-ov-btn {
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile Hero Overlays */
.vd-mobile-hero-top {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: none;
    /* Desktop hide */
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.vd-hired-badge-mobile {
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
}

.vd-btn-circle {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 14px;
}

.vd-photo-count-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: none;
    /* Desktop hide */
}

/* Mobile Fixed Action Bar */
.vd-mobile-fixed-action {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
}

.vd-hero-info-card {
    border-color: #eee !important;
}

.vd-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.vd-meta-info {
    font-size: 14px;
    color: #555;
}

.vd-pkg-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tabs Navigation */
.vd-navigation {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 50px;
    /* Below navbar */
    z-index: 100;
    margin-top: 30px;
}

.vd-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vd-nav-links li a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.vd-nav-links li a:hover,
.vd-nav-links li a.active {
    color: #fd661e;
    border-bottom-color: #fd661e;
}

/* Page Layout */
.vd-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 40px;
    padding-top: 10px;
}

/* Info Cards */
.vd-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.vd-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1D1D54;
    margin-bottom: 25px;
    border-left: 4px solid #fd661e;
    padding-left: 15px;
}

/* Quick Stats Bar */
.vd-quick-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.vd-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vd-stat-item i {
    font-size: 24px;
    color: #fd661e;
}

.vd-stat-text div {
    font-size: 14px;
    font-weight: 700;
    color: #1D1D54;
}

.vd-stat-text span {
    font-size: 12px;
    color: #777;
}

/* Sticky Pricing Form */
.vd-sticky-form {
    position: sticky;
    top: 150px;
}

.pricing-card {
    background: #1D1D54;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
}

.pricing-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.vd-form input,
.vd-form select,
.vd-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 6px;
    border: none;
}

.request-btn {
    width: 100%;
    padding: 14px;
    background: #fd661e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s;
}

.request-btn:hover {
    background: #e55a1a;
}

/* Service Tags */
.vd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vd-tag {
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* Media Queries */
@media screen and (max-width: 991px) {
    .vd-page-wrapper {
        padding-top: 65px;
        padding-bottom: 20px;
        /* Space for fixed bar */
    }

    .vd-gallery-grid-refined {
        display: flex !important;
        grid-template-columns: none;
        grid-template-rows: none;
        height: 300px;
        transform: translate3d(0, 0, 0);
        margin-bottom: 15px;
        /* Reduced gap */
    }

    .vd-hero-swiper .swiper-slide {
        width: 100% !important;
        height: 100% !important;
        flex-shrink: 0;
    }

    /* Show overlays only on mobile */
    .vd-mobile-hero-top {
        display: flex;
    }

    .vd-photo-count-badge {
        display: block;
    }

    /* Hide desktop overlays on mobile */
    .vd-play-btn,
    .vd-overlay-btns,
    .vd-hired-badge,
    .vd-wish-btn {
        display: none !important;
    }

    .item-large,
    .item-small,
    .item-small-2,
    .item-wide {
        grid-area: auto !important;
    }

    .vd-grid-item {
        height: 100%;
    }

    .vd-main-grid {
        grid-template-columns: 1fr;
        padding-top: 20px;
        /* Reduced gap */
        grid-gap: 20px;
        /* Reduced gap */
    }

    /* 20% Gap Reduction on Cards */
    .vd-card {
        padding: 20px;
        /* Reduced from 30px */
        margin-bottom: 20px;
        /* Reduced from 30px */
    }

    .vd-card-title {
        margin-bottom: 15px;
        /* Reduced from 25px */
    }

    .vd-sticky-form {
        position: relative;
        top: 0;
        display: none !important;
        /* Hide sticky form on mobile */
    }

    .vd-hero-info-card {
        margin-top: 0;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    /* Hide redundant card buttons on mobile */
    .vd-hero-info-card .vd-response-meta,
    .vd-hero-info-card .vd-action-btns,
    .vd-hero-info-card .text-center.mt-3 {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .vd-quick-stats {
        flex-direction: column;
        gap: 12px;
        /* Reduced from 15px */
    }
}

/* End of file */

/* Desktop Hero Banner Height Adjustment - General */
@media screen and (min-width: 992px) {
    .pc-video {
        height: 90vh;
        object-fit: cover;
    }

}

/* ALL ACTIVITIES PAGE - COMPLEX CARD DESIGN */
/* ALL ACTIVITIES PAGE - COMPLEX CARD DESIGN */
.complex-activity-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    /* Basic border removed, handled by alternating rules below */
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Alternating Border Colors */
/* Odd Children: Orange Border */
.destination-maindiv .row>div:nth-child(odd) .complex-activity-card {
    border: 1px solid #fd661e;
}

/* Even Children: Blue Border */
.destination-maindiv .row>div:nth-child(even) .complex-activity-card {
    border: 1px solid #1D1D54;
}

.complex-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.activityImageSwiper {
    width: 100%;
    height: 210px;
    /* Reduced from 250px by ~15% (more than 10% requested to be noticeable) */
    background: #f0f0f0;
}

.activityImageSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.complex-activity-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ca-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ca-title {
    font-size: 18px;
    font-weight: 700;
    color: #1D1D54;
    margin-bottom: 1px;
    line-height: 1;
}

.ca-duration {
    font-size: 10px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    background: #ffe9c6;
    padding: 3px 8px;
    border-radius: 4px;
}

.ca-category {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ca-desc {
    margin-bottom: 15px;
    flex-grow: 1;
    position: relative;
}

.ca-desc-text {
    font-size: 14px;
    color: #555;
    line-height: 24px;
    /* Fixed line-height for calculation (1.5em approx) */
    max-height: 72px;
    /* 3 lines * 24px */
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Expanded state class to be toggled by JS */
.ca-desc-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
    max-height: none;
    /* Allow full height */
}

.ca-read-more-toggle {
    font-size: 13px;
    color: #fd661e;
    font-weight: 600;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    /* Cover text behind it */
    padding-left: 8px;
    line-height: 24px;
    /* Match text line-height */
}

/* Adjust toggle position when expanded */
.ca-desc-text.expanded+.ca-read-more-toggle {
    position: static;
    display: block;
    text-align: right;
    margin-top: 5px;
}

.ca-read-more-toggle:hover {
    text-decoration: underline;
}

.ca-line {
    height: 1px;
    background: #eee;
    margin-bottom: 15px;
}

.ca-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ca-btn-book {
    background: #fd661e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.ca-btn-book:hover {
    background: #e55a1b;
    color: #fff;
}

.ca-price {
    font-size: 18px;
    font-weight: 700;
    color: #1D1D54;
}

.ca-btn-details {
    background-color: #1D1D54;
    /* Navbar color */
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.ca-btn-details:hover {
    background-color: #151540;
    color: #fff;
}

.activityImageSwiper .swiper-button-next,
.activityImageSwiper .swiper-button-prev {
    color: #fff;
    width: 30px;
    height: 30px;
}

.activityImageSwiper .swiper-button-next:after,
.activityImageSwiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

/* Mobile Adjustments for All Activities */
@media screen and (max-width: 768px) {
    .ca-title {
        font-size: 16px;
    }
}

/* =========================================
   THRILLOPHILIA STYLE ACTIVITY PAGE STYLES
   ========================================= */

.t-main-wrapper {
    background-color: #f9f9f9;
    /* Light grey bg for contrast */
    padding-bottom: 60px;
}

/* Breadcrumbs */
.t-breadcrumb .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.t-breadcrumb .breadcrumb-item.active {
    color: #999;
    font-size: 14px;
}

/* Header */
.t-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

/* Gallery Grid */
.t-gallery-grid {
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.t-gallery-main {
    height: 100%;
}

.t-gallery-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

/* Content Cards */
.t-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border: 1px solid #f0f0f0;
}

.t-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Text Content */
.t-content-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.t-read-more {
    color: #ff6b35;
    /* Orange accent */
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.t-read-more:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Highlights List */
.t-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t-highlight-list li {
    position: relative;
    padding: 12px 15px;
    margin-bottom: 12px;
    color: #444;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fcfcfc;
    border: 1px dashed #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.t-highlight-list li:hover {
    background-color: #fff;
    border-color: #fd661e;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.t-highlight-list li i {
    font-size: 18px;
    color: #28a745;
    /* Success Green */
    flex-shrink: 0;
}

/* Things To Do Cards */
.t-mini-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.t-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #ffe9c6;
}

.t-mini-card img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.t-mini-card:hover img {
    transform: scale(1.05);
}

.t-mini-card .card-body {
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
}

/* Accordion */
.t-accordion .accordion-button {
    font-size: 16px;
    color: #333;
    padding: 15px 0;
}

.t-accordion .accordion-button:not(.collapsed) {
    color: #ff6b35;
    box-shadow: none;
}

.t-accordion .accordion-button:focus {
    box-shadow: none;
}

.t-accordion .accordion-body {
    padding: 0 0 20px 0;
}

/* Sticky Sidebar */
.t-sidebar-sticky {
    position: sticky;
    top: 100px;
    /* Adjust based on navbar height */
}

.t-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #ebebeb;
}

.t-submit-btn {
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: #fff !important;
    transition: background-color 0.3s ease;
}

.t-submit-btn:hover {
    background-color: #e55a2b !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .t-gallery-grid {
        height: auto;
    }

    .t-gallery-grid .col-lg-4 {
        display: none;
        /* Hide 2nd column images on mobile */
    }

    .t-gallery-main {
        height: 250px;
    }

    .t-sidebar-sticky {
        position: static;
        margin-top: 30px;
    }
}


/* =========================================
   PIXEL-PERFECT HERO REDESIGN
   ========================================= */

.t-hero-wrapper {
    position: relative;
    width: 100%;
    background-color: #000;
}

.t-hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* transition: transform 8s ease-out; Remove zoom effect */
}

/* Slide active effect removed
.swiper-slide-active .t-hero-slide-bg {
} */

.t-hero-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0.9) 90%,
            /* Darker earlier */
            rgba(0, 0, 0, 0.9) 100%);
    /* Almost black at bottom */
    z-index: 2;
}

/* STATIC CONTENT */
.t-hero-content-static {
    max-width: 1000px;
    z-index: 10;
    pointer-events: none;
    /* Custom positioning for bottom placement */
    bottom: 100px;
    /* Positioned above trust bar */
    left: 50%;
    transform: translateX(-50%);
}

.t-hero-content-static * {
    pointer-events: auto;
    /* Re-enable clicks for buttons/links */
}

.t-hero-content-static p {
    font-size: 1rem;
    /* Reduced from 1.25rem */
    letter-spacing: 1px;
}

.t-hero-content-static h1 {
    font-size: 2.5rem !important;
    /* Reduced from 4.5rem */
    line-height: 1.1;
    font-weight: 800;
}

.text-yellow-highlight {
    color: #ffc107 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.t-hero-divider {
    width: 60%;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin: 10px auto;
    /* Reduced from 20px */
}


/* PRICE & BADGE */
.sales-price-tag {
    font-size: 1.3rem;
    margin-bottom: 0.5rem !important;
    /* Force reduced margin */
}

.republic-badge {
    background: linear-gradient(90deg, #138808 0%, #2e7d32 100%);
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* BUTTON */
.btn-orange-hero {
    background: #fd661e;
    color: white;
    /* font-weight: 600; */
    padding: 8px 36px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    margin-top: 5px;
    /* Minimal top margin */
}

.btn-orange-hero:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
    color: white;
}

/* CONTROLS */
.t-hero-nav-btn {
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
    z-index: 30;
    pointer-events: auto;
    cursor: pointer;
}

.t-hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.t-hero-nav-btn::after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-pagination-dashed {
    bottom: 80px !important;
    /* Moved closer to content (was 120px) */
    z-index: 30;
    pointer-events: auto;
}

.swiper-pagination-dashed .swiper-pagination-bullet {
    width: 40px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.3) !important;
    margin: 0 4px !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-dashed .swiper-pagination-bullet-active {
    background: white !important;
    width: 60px !important;
}


.t-trust-bar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    padding: 15px 0;
    z-index: 20;
    /* Ensure it stays on top */
    pointer-events: none;
    /* Allow clicks to pass through if needed, though icons probably shouldn't be clickable unless links */
}

.trust-icon-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
}

/* Brand Colors */
.fa-tripadvisor {
    color: #00af87;
}

.fa-rocket {
    color: #f26b35;
    /* Sitejabber orange-ish */
}

.fa-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Fallback for google if gradient fails or for simplicity: .fa-google { color: #4285f4; } */
.fa-star {
    color: #1c1c1c;
    /* Reviews.io usually black star */
}

/* RESPONSIVENESS */
/* RESPONSIVENESS */
@media (max-width: 991px) {
    .t-hero-wrapper {
        height: 500px !important;
    }

    .t-hero-content-static h1 {
        font-size: 2.5rem !important;
    }

    .swiper-pagination-dashed {
        bottom: 150px !important;
    }

    .t-hero-nav-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .t-hero-content-static {
        width: 90%;
        padding: 0;
    }

    .t-trust-bar {
        padding: 10px 0;
    }

    .trust-icon-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .t-trust-bar .fw-bold {
        font-size: 0.9rem !important;
    }

    .t-trust-bar small {
        font-size: 8px !important;
    }
}

@media (max-width: 576px) {
    .t-hero-wrapper {
        height: 600px !important;
    }

    .t-hero-content-static {
        top: auto !important;
        /* Reset top */
        bottom: 160px !important;
        /* Position above trust bar and pagination */
        text-align: left !important;
        /* Left align text */
        width: 100% !important;
        padding: 0 20px !important;
        /* Add side padding */
        left: 0 !important;
        transform: none !important;
        /* Reset transform */
    }

    .t-hero-content-static h1 {
        font-size: 1.5rem !important;
    }

    .t-hero-content-static p {
        font-size: 1rem !important;
        margin-bottom: 5px;
    }

    .sales-price-tag {
        flex-direction: column;
        align-items: flex-start !important;
        /* Left align price */
        font-size: 1rem;
        gap: 1px !important;
        margin-bottom: 0.55rem !important;
        /* Reduced from 1.5rem */
    }

    .btn-orange-hero {
        padding: 8px 0;
        font-size: 1rem;
        width: 100%;
        /* Full width button */
        display: block;
    }

    .swiper-pagination-dashed {
        display: none !important;
        /* Hidden as requested */
    }

    .t-hero-nav-btn {
        display: flex !important;
        /* Show arrows */
        width: 35px !important;
        /* Slightly smaller for mobile */
        height: 35px !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .t-hero-nav-btn::after {
        font-size: 14px !important;
        /* Smaller arrow icon */
    }

    /* Trust bar adjustments for 2x2 Grid */
    .t-trust-bar .container {
        padding: 0 20px !important;
        /* Increased from 10px to match hero content padding */
    }

    .t-trust-bar .col-6 {
        padding: 10px 5px;
        border: none !important;
        text-align: left !important;
    }

    .t-trust-bar .d-flex {
        flex-direction: row !important;
        /* Keep icon and text side-by-side */
        gap: 10px !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .trust-icon-circle {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    .t-trust-bar .text-start {
        text-align: left !important;
    }
}

/* REDESIGN CONTENT STYLES */
.t-main-wrapper {
    background-color: #fff;
    padding-bottom: 50px;
}

.t-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.t-section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #fd661e;
    /* Theme Orange */
}

.t-highlights-box {
    background: #fff;
    border: 1px solid #e0e0e0;
}

.t-check-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.text-orange {
    color: #fd661e !important;
}

.t-content-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* STICKY SIDEBAR */
.t-sticky-sidebar {
    transition: all 0.3s ease;
}

.t-sticky-sidebar .card {
    border: 1px solid #eee !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Override sticky for mobile */
@media (max-width: 991px) {
    .t-sticky-sidebar {
        position: relative !important;
        top: 0 !important;
        margin-top: 30px;
        z-index: 1 !important;
    }
}/ *   R e s t o r e d   A c t i v i t y   C a t e g o r y   S t y l e s   * / 
 . a c t i v i t y - c a t - c a r d   { 
         d i s p l a y :   b l o c k ; 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         o v e r f l o w :   h i d d e n ; 
         h e i g h t :   3 5 0 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 } 
 . a c t i v i t y - c a t - i m a g e   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d - s i z e :   c o v e r ; 
         b a c k g r o u n d - p o s i t i o n :   c e n t e r ; 
         p o s i t i o n :   r e l a t i v e ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ; 
 } 
 . a c t i v i t y - c a t - c a r d : h o v e r   . a c t i v i t y - c a t - i m a g e   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 . a c t i v i t y - c a t - o v e r l a y   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o p a c i t y :   0 . 7 ; 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s ; 
 } 
 . a c t i v i t y - c a t - c a r d : h o v e r   . a c t i v i t y - c a t - o v e r l a y   { 
         o p a c i t y :   0 . 8 ; 
 } 
 . a c t i v i t y - c a t - c o n t e n t   { 
         p o s i t i o n :   a b s o l u t e ; 
         b o t t o m :   0 p x ; 
         l e f t :   0 p x ; 
         r i g h t :   0 p x ; 
         z - i n d e x :   2 ; 
         c o l o r :   # f f f ; 
         t e x t - a l i g n :   l e f t ; 
         p a d d i n g :   2 0 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 0 , 0 , 0 , 0 . 8 ) ,   t r a n s p a r e n t ) ; 
 } 
 . a c t i v i t y - c a t - c o n t e n t   h 4   { 
         f o n t - s i z e :   2 0 p x ; 
         f o n t - w e i g h t :   8 0 0 ; 
         m a r g i n - b o t t o m :   8 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         c o l o r :   # f f f ; 
         l i n e - h e i g h t :   1 . 2 ; 
         t e x t - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 } 
 . a c t i v i t y - c a t - c o n t e n t   p   { 
         f o n t - s i z e :   1 3 p x ; 
         l i n e - h e i g h t :   1 . 4 ; 
         m a r g i n - b o t t o m :   0 ; 
         c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 9 5 ) ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - s h a d o w :   0   1 p x   2 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 } 
 / *   O v e r l a y   C o l o r s   -   G r a d i e n t s   a c t i n g   a s   t i n t   * / 
 . o v e r l a y - b l u e   {   b a c k g r o u n d - c o l o r :   # 1 e 3 c 7 2 ;   m i x - b l e n d - m o d e :   m u l t i p l y ;   } 
 . o v e r l a y - b r o w n   {   b a c k g r o u n d - c o l o r :   # 6 d 4 c 4 1 ;   m i x - b l e n d - m o d e :   m u l t i p l y ;   } 
 . o v e r l a y - t e a l   {   b a c k g r o u n d - c o l o r :   # 0 0 8 9 7 b ;   m i x - b l e n d - m o d e :   m u l t i p l y ;   } 
 . o v e r l a y - g r e e n   {   b a c k g r o u n d - c o l o r :   # 2 e 7 d 3 2 ;   m i x - b l e n d - m o d e :   m u l t i p l y ;   } 
 . o v e r l a y - n a v y   {   b a c k g r o u n d - c o l o r :   # 1 a 2 3 7 e ;   m i x - b l e n d - m o d e :   m u l t i p l y ;   } 
 
 