.vertical-slide {
    margin-top: -140px;
}



.offer-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    margin: 20px auto;
}

.offer-card img {
    width: 60%;
    object-fit: cover;
}

.offer-content {
    padding: 50px 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.3;
}

.offer-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-offer {
    padding: 14px 28px;
    background-color: #2e8f83;
    color: #fff;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    width: fit-content;
}

.btn-offer:hover {
    background-color: #25756b;
}

/* Responsive */
@media (max-width: 900px) {
    .offer-card {
        flex-direction: column;
    }

    .offer-card img,
    .offer-content {
        width: 100%;
    }

    .offer-content {
        padding: 30px 20px;
    }
}



.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}













/* slider */

.slider-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container.locked {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); */
}

.slide-content {
    position: absolute;
    bottom: 20px;
    left: 80px;
    color: white;
    max-width: 800px;
    padding: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 35px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
    color: #fff;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left;
    color: #fff;
}

.slide-content .btn {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
}

.slide-content a {
    color: #fff;
    text-decoration: none;
}

.slide-content .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.info-card {
    position: absolute;
    right: 60px;
    top: 60%;
    transform: translateY(-50%) translateX(100px);
    width: 220px;
    /* background: #ffffff3d;
    backdrop-filter: blur(10px); */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.8s ease-out 0.5s;
    display: inline-block;
    padding: 10px;
}

.info-card-bx {
    background: #ffffff3d;
    backdrop-filter: blur(10px);
    border-radius: 6px;
    margin-bottom: 12px;
}

.slide.active .info-card {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.info-card-image {
    width: 100%;
    height: 150px !important;
    object-fit: cover;
    border-radius: 6px 6px 0px 0px;
}

.info-card-content {
    padding: 8px;
    color: #333;
}

.info-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.info-card-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-card-link {
    display: inline-flex;
    align-items: center;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.info-card-link:hover {
    color: #3498db;
    transform: translateX(5px);
}

.info-card-link svg {
    margin-left: 8px;
    transition: transform 0.3s;
}

.info-card-link:hover svg {
    transform: translateX(5px);
}

.map-overlay {
    position: absolute;
    right: 0px;
    top: 40%;
    transform: translateY(-50%) translateX(100px);
    width: 600px;
    opacity: 0;
    transition: all 0.8s ease-out 0.5s;
}

.slide.active .map-overlay {
    transform: translateY(-50%) translateX(0);
    opacity: 0.5;
}

.map-overlay img {
    width: 100%;
    height: auto;
    filter: brightness(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
}

.scroll-indicator p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 100;
    display: none;
}

.progress-bar {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.3s;
}

.slide-counter {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.2rem;
    z-index: 100;
    font-weight: 600;
    display: none;
}

@media (max-width: 768px) {
    .slide-content {
        bottom: 40px;
        left: 20px;
    }

    .slide-content h1 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .info-card {
        right: 20px;
        width: 280px;
    }

    .map-overlay {
        right: 0;
    }
}

@media (max-width: 992px) {
    .info-card {
        width: 120px !important;
        top: 50%;
    }

    .info-card-image {
        height: 100px !important;
    }

    .info-card-content h3 {
        font-size: 10px;
    }

    .map-overlay {
        right: 0px;
        width: 300px;
    }
}









/*  */
.event-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 22px;
    max-width: 620px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.event-left {
    flex: 1;
}

.event-meta {
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #000;
}

.event-subtitle {
    font-size: 14px;
    color: #444;
}

.event-right {
    text-align: right;
    margin-left: 20px;
}

.event-price {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.buy-btn {
    background: #3177a1;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .event-title {
        font-size: 12px;
    }

    .buy-btn {
        padding: 1px 7px;
        font-size: 11px;
    }

    .event-subtitle {
        font-size: 11px;
        line-height: 13px !important;
    }

    .event-price {
        font-size: 11px;
    }

    .Customize-tour h5 {
        line-height: 1 !important;
        font-size: 18px !important;
    }

    .th-btn.style3.own-btn {
        padding: 10px 10px;
        font-size: 17px;
        width: 100%;
    }

    .th-btn.style3.own-btn::after {
        display: none;
    }
}

.header-layout3 .main-menu>ul>li:last-child>a:before {
    display: none;
}

/* tour  slider*/
.Customize-tour {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    max-width: 100%;
    margin-bottom: 40px;
}

.Customize-tour h5 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 2;
    margin-bottom: 0px;
}

.tour-tabs.lefttourtab {
    justify-content: start !important;
}

.tour_icon img {
    height: 25px;
}








/* slider start */
.tour-category-section {
    width: 100%;
    overflow: hidden;
    padding: 100px 0px 0px 0px;
}

.tour-category-container {
    max-width: 100%;
    padding: 0 20px;
}

.tour-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.tour-category-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tour-image-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.tour-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-category-item:hover img {
    transform: scale(1.1);
}

.tour-card-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    margin: 0;
}

.tour-card-title a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.tour-card-title a:hover {
    color: #007bff;
}

/* Custom Pagination Styling */
.tour-pagination-controls {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 15px;
}

.tour-slide-counter {
    background: var(--title-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tour-nav-button {
    background: var(--title-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tour-nav-button:hover {
    background: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.tour-nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.tour-nav-button:disabled:hover {
    background: #34495e;
    transform: none;
}

.tour-nav-button svg {
    width: 20px;
    height: 20px;
}

.tour-swiper-unique {
    padding-bottom: 20px;
}

/* Active center slide scaling */
.tour-swiper-unique .swiper-slide {
    transition: transform 0.3s ease;
    transform: scale(0.85);
}

.tour-swiper-unique .swiper-slide-active {
    transform: scale(1) !important;
    z-index: 2;
}

@media (max-width: 768px) {
    .tour-image-box {
        height: 300px;
    }

    .tour-main-title {
        font-size: 28px;
    }

    .tour-slide-counter {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tour-nav-button {
        width: 40px;
        height: 40px;
    }

    .tour-card-title a {
        font-size: 12px;
    }

    .tour-card-title {
        padding: 0px 0px 10px 10px;
    }
}

/* slider end */



/* calnder */
.selection-box {
    border: 2px solid var(--title-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.selection-box:hover {
    border-color: var(--title-color);
}

/* Calendar Styles */
.calendar-modal {
    background: #0d4d5c;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.calendar-header-top {
    background: #0d4d5c;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-header-top h6 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.calendar-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
    color: white;
}

.calendar-navigation {
    background: #0d4d5c;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-month-year {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.calendar-nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.2s;
}

.calendar-nav-btn:hover {
    color: #4ade80;
}

.calendar-body {
    background: #0d4d5c;
    padding: 0 20px 20px 20px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: white;
    transition: all 0.2s;
    font-size: 1rem;
}

.calendar-date:hover:not(.other-month) {
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-date.other-month {
    color: rgba(255, 255, 255, 0.3);
}

.calendar-date.selected {
    background-color: #4ade80;
    color: #0d4d5c;
    font-weight: 700;
}

.guest-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--title-color);
    background: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-circle:hover {
    background-color: #f3e5f5;
}

.package-card {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.earn-points {
    background-color: #fff3e0;
    color: #f57c00;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    display: inline-block;
}

.total-section {
    border-top: 2px solid #dee2e6;
    padding-top: 20px;
    margin-top: 15px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collapse-content {
    margin-top: 10px;
    padding: 20px;
    border: 2px solid var(--title-color);
    border-radius: 8px;
    background: white;
}

.selection-box span {
    color: var(--title-color);
}

.sidebar-area {
    border: 1px solid #e7e7e7;
    padding: 20px;
    border-radius: 10px;
}

.total-section span {
    color: var(--title-color);
}

.selection-box i {
    color: var(--title-color);
}


/* new side bar detail page */
.booking-card {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h5 {
    margin: 0;
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    gap: 12px;
}

.chevron {
    cursor: pointer;
    color: #6c757d;
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.chevron:hover {
    background-color: #f8f9fa;
    color: #212529;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.day-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    padding: 8px 0;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.day-cell.inactive {
    color: #dee2e6;
}

.day-cell.active:hover {
    background-color: #d3d3d3;
}

.day-cell.selected {
    background-color: #000;
    color: white;
    font-weight: 600;
}

.pricing-section {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.price-row h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.price-row .price {
    font-size: 14px;
    color: #000;
}

.original-price {
    text-decoration: line-through;
    color: #dc3545;
    font-size: 14px;
}

.current-price {
    color: #000;
    font-weight: 600;
    font-size: 14px;
}
.quantity-controls,
.price-row {
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: #000;
}

.qty {
    width: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin: 0 12px;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-info span {
    font-size: 14px;
    color: #000;
}

.cities-section {
    margin-bottom: 20px;
}

.cities-section h6 {
    font-weight: 600;
    margin-bottom: 12px;
}

.city-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.city-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #000;
}

.city-label {
    display: flex;
    align-items: center;
    flex: 1;
    cursor: pointer;
}

.city-name {
    color: #212529;
    font-size: 15px;
}

.city-count {
    color: #6c757d;
    font-size: 14px;
}

.show-more-btn {
    color: #113d48;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.show-more-btn:hover {
    text-decoration: underline;
}

.hidden-cities {
    display: none;
}

.hidden-cities.show {
    display: block;
}

.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.total-label {
    font-weight: 600;
    font-size: 18px;
}

.total-details {
    text-align: right;
}

.total-breakdown {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.total-price {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px;
    background-color: #0a3d4a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
    background-color: #083038;
}


/* new side bar detail page end*/
