.destination-item {
    height: 400px;
    /* Adjust as needed */
    display: flex;
    flex-direction: column;
}

.destination-item_img {
    flex: 1;
    overflow: hidden;
}

.destination-item_img img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Cover the area without stretching */
}

.destination-content {
    padding: 15px;
}

.destination-content h3 {
    margin: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-xl-3,
.col-lg-4,
.col-md-6 {
    display: flex;
    justify-content: center;
}

.destination-item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the area without distortion */
}

.destination-content {
    padding: 15px;
    /* Consistent padding */
}

.destination-item {
    margin-bottom: 20px;
    /* Adjust if needed */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Full width of the Swiper container */
    box-sizing: border-box;
}

.destination-box {
    width: 100%;
    /* Make it take full width of the swiper-slide */
    max-width: 424px;
    /* Adjust as needed */
    height: 565px;
    /* Adjust as needed */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.destination-img {
    flex: 1;
    overflow: hidden;
}

.destination-img img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Cover the area without stretching */
}

.destination-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Space out content to fill available space */
}

.media-left {
    margin-bottom: 10px;
    /* Adjust spacing between title and subtitle */
}

.destination-content .box-title {
    margin: 0;
    font-size: 1.2rem;
    /* Adjust font size as needed */
}

.destination-content .destination-subtitle {
    font-size: 0.9rem;
    /* Adjust font size as needed */
}

.th-btn {
    margin-top: auto;
    /* Push the button to the bottom of the content area */
}

.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    /* Ensure slides are aligned horizontally */
}

.swiper-container {
    overflow: hidden;
    /* Hide overflow to maintain slide layout */
}

#aboutSlider1 .swiper-button-prev::after,
#aboutSlider1 .swiper-button-next::after {
    font-size: 40px;
}

.tour-gallery-card {
    position: relative;
}

.gallery-img {
    position: relative;
}

.play-icon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    /* Adjust size as needed */
    color: white;
    /* Adjust color as needed */
    z-index: 10;
    /* Ensure it appears above other elements */
}

.play-btn.style2 {
    display: inline-block;
    position: relative;
}

.tour-slider-img img {
    width: 100%;
    height: auto;
    max-width: 872px;
    max-height: 536px;
}

/* Specific styles for mobile view */
@media (max-width: 767px) {
    .tour-slider-img img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: none;
    }
}

.play-btn.style2::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive th,
.table-responsive td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }
}

/* Hide Swiper buttons by default */
.custom-swiper .swiper-button-next,
.custom-swiper .swiper-button-prev {
    display: none;
}

/* Show Swiper buttons on screens smaller than 768px */
@media (max-width: 768px) {

    .custom-swiper .swiper-button-next,
    .custom-swiper .swiper-button-prev {
        display: flex;
        background-color: rgba(0, 0, 0, 0.5);
        /* Semi-transparent background */
        border-radius: 50%;
        /* Rounded shape */
        width: 50px;
        /* Button width */
        height: 50px;
        /* Button height */
        align-items: center;
        justify-content: center;
    }

    .custom-swiper .swiper-button-next::after,
    .custom-swiper .swiper-button-prev::after {
        font-size: 20px;
        /* Arrow icon size */
        color: white;
        /* Arrow icon color */
    }

    .custom-swiper .swiper-button-next:hover,
    .custom-swiper .swiper-button-prev:hover {
        background-color: rgba(0, 0, 0, 0.7);
        /* Darker background on hover */
    }

    .custom-swiper .swiper-button-next {
        right: 10px;
        /* Position from the right */
    }

    .custom-swiper .swiper-button-prev {
        left: 10px;
        /* Position from the left */
    }
}


/*************** Banner Image ****************/


.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 7em;
    text-align: center;
    font-family: 'Impact', sans-serif;
    padding: 10px;
    border-radius: 5px;
    width: 100%;

}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5em;
    }
}