
/*** Spinner Start ***/
/*** Spinner ***/

html {
  scroll-behavior: auto;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #ffbe58 !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
    .navbar-light{
        background: #000 !important;
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: #ffff !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: translateY(10px);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-black {
        position: relative;
        background: var(--bs-black);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-black .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #000;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-light);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-light) !important;
}
/*** copyright end ***/

.carousel-item img {
    width: 100%;
    height: 500px; /* adjust as per your design */
    object-fit: cover;
}

.logo-img {
    height: 80px;   /* increase size */
    width: auto;
}

.navbar {
    min-height: 90px; /* give space for bigger logo */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
}

.navbar-brand img {
    height: 90px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #4be28a, #25D366);
    color: #fff;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
     will-change: transform;
}


.service-content-inner {
    transition: 0.3s;
}

.service-content-inner:hover {
    transform: translateY(-5px);
     box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.blog-img-inner {
    height: 250px; /* same height for all */
    overflow: hidden;
}

.blog-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* important */
}

.contact-btn {
    background-color: #e0a800; /* default blue */
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #e0a800; /* dark yellow */
    color: #000;
}


.navbar .nav-link.active {
    color: #ffc107 !important;
    font-weight: 600;
}

/* Input Styling */
.custom-input {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #f4b400;
    box-shadow: 0 0 8px rgba(244, 180, 0, 0.3);
}

/* Button Styling */
.booking-btn {
    background: #f4b400;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #d89c00;
    color: #000;
}

.booking-outer {
    padding: 60px 15px;
    background: #f8f9fa;
}

.booking-card {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* LEFT IMAGE FIX */
.booking-left {
    height: 100%;
    min-height: 500px;
}

.booking-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT FORM */
.booking-right {
    padding: 40px;
}

.booking-right h3 {
    margin-bottom: 25px;
    color: #000;
}

/* INPUT STYLE */
.booking-right input,
.booking-right textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.booking-right textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.book-btn {
    width: 100%;
    padding: 14px;
    background: #ffbe58;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    text-align: center;
}

.book-btn:hover {
    background: #000;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .booking-card {
        grid-template-columns: 1fr;
    }

    .booking-left {
        min-height: 250px;
    }

    
}


/* ===== SECTION HEADING ===== */
.section-title {
    display: inline-block;
    background: #ffbe58;
    color: #000;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 15px;
}

h1, h4 {
    font-family: 'Poppins', sans-serif;
    color: #000;
}

/* ===== TOUR CARD ===== */
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
     transition: transform 0.2s ease;
    will-change: transform;
}

/* ===== IMAGE ===== */
.tour-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s;
}

.tour-card:hover .tour-img {
    will-change: transform;
}

/* ===== BODY ===== */
.tour-body {
    padding: 20px;
}

.tour-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tour-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

/* ===== BADGE ===== */
.badge {
    background: #ffbe58;
    color: #000;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 30}


    /* ===== BOOK NOW BUTTON ===== */
.book-btn {
    display: inline-block;
    margin-top: 15px; /* 👈 space above button */
    padding: 10px 28px;
    
    background: #ffbe58;
    color: #000;
    
    border-radius: 50px; /* 👈 capsule shape */
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    
    transition: all 0.3s ease;
}

/* Hover (NO BLUE, only yellow shades) */
.book-btn:hover {
    background: #ffbe58; /* dark yellow */
    color: #000;
}

/* Optional: slight press effect */
.book-btn:active {
    transform: scale(0.96);
}       


/* add css by Dev H */

#packages,
.tour-card-wrapper {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}


