/*** Spinner Start ***/
/*** Spinner ***/
#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;
    transition: 0.5s;
    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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
    background: transparent;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.nav-bar.hide-navbar {
    transform: translateY(-100%);
}


.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0% {
        margin-top: 35%;
    }

    50% {
        margin-bottom: 70%;
    }

    100% {
        margin-top: 35%;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0% {
        width: 100%;
        height: 100%;
    }

    25% {
        width: 115%;
        height: 115%;
    }

    50% {
        width: 130%;
        height: 130%;
    }

    75% {
        width: 120%;
        height: 120%;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    margin-top: 0;
    margin-right: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}

/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}

/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: none;
    z-index: -2;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0% {
        width: 100%;
    }

    25% {
        width: 115%;
    }

    50% {
        width: 130%;
    }

    75% {
        width: 120%;
    }

    100% {
        width: 100%;
    }
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.attractions .attractions-item:hover:after {
    height: 100%;
}

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}

/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}

/*** Team End ***/

/*** Testimonials Start ***/
.testimonials {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

/* Overlay for better text readability */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -2;
}

.testimonials .testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 20px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonials .testimonial-item .text-primary i {
    color: #0dadfd;
    margin: 0 2px;
}

.testimonials .testimonial-item p.italic {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials .testimonial-item h5 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.testimonials .testimonial-item small {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Owl Carousel Customization */
.testimonials .owl-dots {
    margin-top: 30px !important;
    display: flex;
    justify-content: center;
}

.testimonials .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonials .owl-dot.active {
    width: 30px;
    background: #0dadfd !important;
    border-radius: 10px;
}

.testimonials .owl-nav {
    display: none;
    /* Hiding arrows for cleaner look, dots are sufficient for 1 item */
}

/*** Testimonials End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/
/*** Feature Carousel Start ***/
.feature-carousel .feature-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    margin: 10px;
    /* Space for shadow */
}

.feature-carousel .feature-item img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-carousel .feature-item:hover img {
    transform: scale(1.1);
}

.feature-carousel .feature-item .feature-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    position: absolute;
    width: 100%;
    height: auto !important;
    /* Override full height */
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 2;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.5s;
}

.feature-carousel .owl-nav .owl-prev {
    left: -25px;
    /* Adjust based on container */
}

.feature-carousel .owl-nav .owl-next {
    right: -25px;
    /* Adjust based on container */
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Feature Carousel End ***/

/* Aesthetic Navigation for Feature Carousel (Desktop Only) */
.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default for cleaner look */
    z-index: 10;
}

.feature-carousel:hover .owl-nav .owl-prev,
.feature-carousel:hover .owl-nav .owl-next {
    opacity: 1;
    /* Show on hover */
}

.feature-carousel .owl-nav .owl-prev {
    left: 20px;
    /* Slight offset from edge */
}

.feature-carousel .owl-nav .owl-next {
    right: 20px;
    /* Slight offset from edge */
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    background: #fff;
    color: var(--bs-primary);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Explicitly hide on mobile just in case */
@media (max-width: 768px) {
    .feature-carousel .owl-nav {
        display: none !important;
    }
}

/* Aesthetic Pricing Cards */
.aesthetic-card {
    background: #0dadfd;
    /* Blue Default */
    border-radius: 20px;
    padding: 0;
    /* Clear container padding because we are controlling inner padding now */
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 173, 253, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-width: 350px;
    /* Limit max width to keep them neat */
    margin: 0 auto;
    /* Center in column */
}

.aesthetic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 173, 253, 0.4);
    background: #0099e5;
    /* Slightly darker blue on hover for effect */
}

/* Pseudo-element for background fill animation - Removed or subtle pulse */
.aesthetic-card::after {
    display: none;
}

/* Content Styling */
.aesthetic-card h2 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    /* Smaller heading */
}

.aesthetic-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    /* Smaller text */
}

.aesthetic-card .price-tag {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
    /* Smaller price */
}

.aesthetic-card .price-tag span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.aesthetic-card i {
    color: #fff;
}

.aesthetic-card .btn-aesthetic {
    background-color: #fff;
    color: #0dadfd;
    padding: 10px 25px;
    /* Smaller button padding */
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover States for Content */
.aesthetic-card:hover h2,
.aesthetic-card:hover p,
.aesthetic-card:hover .price-tag,
.aesthetic-card:hover i {
    color: #fff !important;
    /* Remain white */
}

.aesthetic-card:hover .btn-aesthetic {
    background-color: #f0f0f0;
    color: #007bff;
    transform: scale(1.05);
}

/* Attraction Style Card for Feature Section */
.attraction-style-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.attraction-style-card img {
    transition: 0.5s;
    width: 100%;
}

.attraction-style-card:hover img {
    transform: scale(1.1);
}

.attraction-style-card .attraction-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 173, 253, 0.7);
    /* Primary translucent overlay */
    color: #fff;
    opacity: 0;
    transition: 0.5s;
    text-decoration: none;
    padding: 20px;
    text-align: center;
}

.attraction-style-card:hover .attraction-name {
    opacity: 1;
}

.attraction-style-card .attraction-name h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}


/* Attraction Style Card Button Styling */
.attractions-item {
    position: relative;
    /* Context for absolute positioning on desktop */
}

/* Default Desktop Styles (Overlay) */
.attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 173, 253, 0.7);
    color: #fff;
    opacity: 0;
    transition: 0.5s;
    text-decoration: none;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    /* Match image rounding */
}

.attractions-item .attractions-name .btn-attraction {
    margin-top: 20px;
    /* Push button down */
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
    background: #fff;
    color: var(--bs-primary);
    font-weight: 600;
    padding: 8px 20px;
}

.attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-item:hover .attractions-name .btn-attraction {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile View Adjustments: Button below card */
@media (max-width: 768px) {
    .attractions-item .attractions-name {
        position: relative;
        /* Not absolute overlay */
        background: transparent !important;
        /* No overlay bg */
        height: auto;
        opacity: 1;
        /* Always visible */
        color: var(--bs-dark);
        /* Dark text for name */
        padding: 10px 0;
        justify-content: flex-start;
    }

    .attractions-item .attractions-name h4,
    .attractions-item .attractions-name {
        color: var(--bs-dark) !important;
        /* Ensure visibility on white bg */
        text-shadow: none;
        font-size: 1.2rem;
        font-weight: 700;
    }

    /* Button specific for mobile */
    .attractions-item .attractions-name .btn-attraction {
        opacity: 1 !important;
        transform: translateY(0) !important;
        display: block;
        /* Force block to sit below */
        width: 100%;
        /* Full width button looks good on mobile */
        margin-top: 10px;
        background: var(--bs-primary);
        color: #fff;
        border-radius: 10px;
        /* Semi-rounded for bar feel */
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 99;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    background-color: #25d366 !important;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    animation: none;
    /* Stop pulsing on hover */
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Navbar Desktop Background Fix */
@media (min-width: 768px) {
    .header {
        background-color: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 991px) {
    .attractions .attractions-item .attractions-name {
        display: none !important;
    }

    .attractions .attractions-item::after {
        display: none !important;
    }
}


/* Experience Badge Styles */
.experience-badge {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    z-index: 10;
}

@media (max-width: 991px) {
    .experience-badge {
        top: -18px;
        padding: 0.3rem 1rem;
        width: max-content;
        transform: translateX(-50%);
    }

    .experience-badge h5 {
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

/* Call Button */
/* Update this section in your style.css */
/* Enhanced Fixed Call Button */
.call-btn-fixed {
    position: fixed !important;
    bottom: 150px !important;
    right: 30px !important;
    left: auto !important;
    /* Explicitly prevents it from sticking to the left */
    z-index: 9999 !important;
    /* Ensures it stays above all other layers */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    background-color: #0dadfd !important;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: call-pulse 2s infinite;
}

.call-btn-fixed:hover {
    transform: scale(1.1);
    background-color: #0088cc !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    animation: none;
}

@keyframes call-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 173, 253, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13, 173, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 173, 253, 0);
    }
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    animation: none;
}

@keyframes call-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 173, 253, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13, 173, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 173, 253, 0);
    }
}

/* Testimonials Styling */
.testimonials {
    position: relative;
    overflow: hidden;
}

/* Semi-transparent dark overlay to make white text readable over the background image */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust darkness here */
    z-index: -1;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    margin: 10px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    background: var(--bs-primary) !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}