﻿.spacerx {
    height: 40vh;
}

/* header  */
.header-image {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

    .header-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.header-text {
    z-index: 1 !important;
    bottom: 0;
    color: white;
}

    .header-text .container {
        display: flex;
        justify-content: space-between;
        padding: 1rem 3rem;
    }

    .header-text > .container > div {
        display: flex;
        align-items: flex-end;
    }


-text-left {
    font-size: 2.3rem;
    font-weight: bold;
}

.header-text-right {
    /*color:yellow !important;*/
    font-size: 1rem;
}
/* eof header  */

/* --- Mobile App Overlay Styles --- */
.overlay-container-mobile {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    min-height: 500px;
}

.img-overlay-mobile {
    transform: scale(1.7);
    position: absolute;
    top: 0;
    max-width: 300px; /* Optional: Max pixel width for each image */
    height: auto; /* Maintain aspect ratio */
    transition: all 0.3s ease-in-out; /* Smooth transitions if you add hover effects */
}

.img-left-mobile {
    left: 5%; /* Position from the left edge of the container */
    z-index: 2; /* Behind the right image */
}

.img-right-mobile {
    right: 5%; /* Position from the right edge of the container */
    z-index: 1; /* In front of the left image */
    /*     transform: rotate(3deg);*/
}
/* Responsive adjustments for the overlay */
@media (max-width: 767.98px) { /* Medium screens and below */
    .overlay-container-mobile {
        min-height: 450px; /* Adjust height for smaller screens */
        max-width: 400px; /* Reduce max width */
    }

    .img-overlay-mobile {
        width: 60%; /* Maybe make images slightly smaller relative to container */
    }

    .img-left-mobile {
        left: 8%;
    }

    .img-right-mobile {
        right: 8%;
    }
}

@media (max-width: 575.98px) { /* Small screens and below */
    .overlay-container-mobile {
        min-height: 400px; /* Further adjust height */
        max-width: 300px; /* Further reduce max width */
    }

    .img-overlay-mobile {
        width: 70%; /* Adjust again if needed */
        border-radius: 15px;
    }

    .img-left-mobile {
        left: 5%;
    }

    .img-right-mobile {
        right: 5%;
    }
}
/* --- Feature List Alignment --- */
/* Using d-flex utility classes in HTML now, but you could refine styling here */
/* Example: Ensure consistent icon size */
.d-flex .flex-shrink-0 img {
    display: block; /* Prevents extra space below inline images */
}

/* --- Text muted color consistency --- */
.text-muted {
    color: #6c757d !important; /* Ensure consistent muted text color */
    font-size: 0.9rem; /* Slightly smaller description text */
}

h5.fw-bold {
    font-size: 1.1rem; /* Adjust heading size if needed */
}


/* 3 imges in row  */
.overlay-container {
    background-color: yellow;
    position: relative;
    width: 100%;
}

.col img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.img-left {
    left: 0;
}

.img-right {
    right: 0;
}



/* custom list */
datalist .custom-list {
    list-style-type: none;
    padding: 0;
}

.list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

    .list-item .icon {
        margin-right: 10px;
    }

    .list-item .header {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .list-item .detail {
        color: #666;
    }

/* section 3 */
.col-left {
    background-color: #f0f0f0; /* Light gray background for the left column */
    min-height: 100px; /* Set a minimum height for visual demonstration */
    text-align: center;
    padding: 20px;
}

.col-right {
    background-color: #e9ecef; /* Light gray background for the right column */
    min-height: 100px; /* Set a minimum height for visual demonstration */
    text-align: center;
    padding: 20px;
}

/* section : service  */
.service-img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    /*    max-height: 600px;*/
    object-fit: cover;
}

/* section : events  */
.event-tour-container {
    height: 27.8rem;
    /* background-color:orange; */
}


/* section:testy */
.testy-img {
    max-width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
}

.testy-cardx {
    margin: 0 0.6rem;
    width: 15.6rem !important;
    /*width: 15rem;*/
    padding: .5rem !important;
    background-color: #D9E8F5;
    /*background-color: yellow;*/
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.testy-cardx-quote {
    font-size: 1rem;
    font-weight: bold;
    color: orangered;
}

/* ticket card */
.ticket-title {
    /* background-color:red; */
    font-size: 1.6rem;
    font-weight: 700;
}

.ticket-desc {
    padding-top: 1.5rem;
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.2rem;
}

div.ticketx {
    max-width: 1350px;
    margin: 0 auto;
    overflow: hidden
}

.upcomming {
    font-size: 45px;
    text-transform: uppercase;
    border-left: 14px solid rgba(255, 235, 59, 0.78);
    padding-left: 12px;
    margin: 18px 8px;
}

.ticketx .item {
    width: 90%;
    float: left;
    background: orange;
    overflow: hidden;
}

.ticketx .item-right, .ticketx .item-left {
    float: left;
    padding: 20px;
    background-color: #FFF;
    border-radius: 30px;
}

.ticketx .item-right {
    margin-right: 20px;
    position: relative;
    height: 286px
}

    .ticketx .item-right .up-border, .ticketx .item-right .down-border {
        padding: 14px 15px;
        border-radius: 50%;
        position: absolute
    }

    .ticketx .item-right .up-border {
        top: -8px;
        right: -35px;
    }

    .ticketx .item-right .down-border {
        bottom: -13px;
        right: -35px;
    }

    .ticketx .item-right .num {
        font-size: 2rem;
        text-align: center;
        color: #111
    }

    .ticketx .item-right .day, .ticketx .item-left .event {
        color: #555;
        font-size: 20px;
        margin-bottom: 9px;
    }

    .ticketx .item-right .day {
        text-align: center;
        font-size: 25px;
    }

.ticketx .item-left {
    width: 71%;
    padding: 34px 0px 19px 46px;
    border-left: 3px dotted #999;
}

    .ticketx .item-left .title {
        color: #111;
        font-size: 34px;
        margin-bottom: 12px
    }

    .ticketx .item-left .sce {
        margin-top: 5px;
        display: block
    }

        .ticketx .item-left .sce .icon, .ticketx .item-left .sce p,
        .ticketx .item-left .loc .icon, .ticketx .item-left .loc p {
            float: left;
            word-spacing: 5px;
            letter-spacing: 1px;
            color: #888;
            margin-bottom: 10px;
        }

        .ticketx .item-left .sce .icon, .ticketx .item-left .loc .icon {
            margin-right: 10px;
            font-size: 20px;
            color: #666;
            white-space: pre-wrap;
        }

    .ticketx .item-left .loc {
        display: block
    }

.fix {
    clear: both
}

.ticketx .item .tickets, .booked, .cancel {
    color: #fff;
    padding: 6px 14px;
    float: right;
    margin-top: 10px;
    font-size: 18px;
    border: none;
    cursor: pointer
}

.ticketx .item .tickets {
    background: #777
}

.ticketx .item .booked {
    background: #3D71E9
}

.ticketx .item .cancel {
    background: #DF5454
}

.linethrough {
    text-decoration: line-through
}

.ticket-container {
    padding: 9rem 3rem;
    display: flex !important;
    justify-content: center !important;
}
/* epi-ticket */
.rounded-card {
    padding: 3rem 2.3rem;
    border-radius: 1.5rem;
}

.ticket-right-section {
    border-left-color: green;
    border-left-style: dashed;
    border-left-width: .6rem;
    position: relative;
}

.ticket-circlemask {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    top: 0;
    left: -2rem;
    background-color: green;
}

.cta-transparent:hover {
    opacity: .7;
}

.cta-transparent:active {
    opacity: 1;
}

.socmed-icon {
    width: 2.2rem;
}

.socmed-button {
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 2rem;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    padding: .15rem;
    min-width: 13rem;
}

    .socmed-button > img {
        margin-left: 0;
        padding-left: 0;
    }

    .socmed-button > span {
        text-align: center;
        width: 100%
    }

.ticket-contact-type {
    font-weight: 500;
    margin-left: 0 !important;
    padding-left: 0 !important;
}


footer {
    padding-left: 900px !important;
}

.footer-descx {
    color: white !important;
    font-size: .8rem;
}

.footer-titlex {
    color: white !important;
    font-weight: bold;
    font-size: 2rem;
}

.img-socmed-link {
    text-decoration: none;
    opacity: 1;
}

    .img-socmed-link :hover {
        opacity: .6;
    }


/*==================
solution & service
==================*/

/* --- Service Carousel Styles --- */
.service-carousel-wrapper {
    overflow-x: auto; /* Enable horizontal scrolling */
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .service-carousel-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.service-carousel-track {
    /* d-flex flex-nowrap already applied via Bootstrap classes */
    padding-bottom: 1rem; /* Add space at bottom in case scrollbar briefly appears */
    margin-left: -10px; /* Counteract first item's padding */
    margin-right: -10px; /* Counteract last item's padding */
}

.service-item {
    /* flex-shrink-0 applied via Bootstrap class */
    box-sizing: border-box; /* Include padding in width calculation */
    padding: 0 10px; /* Gutter space between items */
    height: auto; /* Allow item height to adjust to content */

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-item:hover {
/*        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
        border-radius: .3rem;
        transform: scale(1.05); /* Slightly enlarge the item */
        border-radius: .3rem;
    }

    .service-item img.service-img {
        width: 100%; /* Make image fill the item width */
        height: auto; /* Fixed height for images - ADJUST AS NEEDED */
        /*height: 180px;*/ /* Fixed height for images - ADJUST AS NEEDED */
        object-fit: cover; /* Cover the area, cropping if necessary */
        border-radius: 8px; /* Optional: Rounded corners */
        display: block; /* Remove extra space below image */
    }

/* --- Responsive Item Widths --- */
/* Small screens (xs, sm) - 1 item visible */
@media (max-width: 767.98px) {
    .service-item {
        width: 100%;
    }

    .service-nav-btn { /* Adjust button size/position for smaller screens */
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 35%; /* Adjust vertical position based on image height */
    }
}

/* Medium screens (md) - 2 items visible */
@media (min-width: 768px) and (max-width: 991.98px) {
    .service-item {
        width: 50%; /* 2 items */
        /* width: 33.333%; */ /* Uncomment for 3 items */
    }

    .service-nav-btn {
        top: 40%; /* Adjust vertical position based on image height */
    }
}

/* Large screens (lg) - 3 items visible */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-item {
        width: 33.333%; /* 3 items */
    }

    .service-nav-btn {
        top: 40%; /* Adjust vertical position based on image height */
    }
}


/* Extra Large screens (xl and xxl) - 4 items visible */
@media (min-width: 1200px) {
    .service-item {
        width: 25%; /* 4 items */
    }
    /* Hide arrows when all items are potentially visible */
    /* .service-nav-btn {
        display: none;
    } */
    .service-nav-btn {
        top: 40%; /* Adjust vertical position based on image height */
    }

    /* --- OR --- If you want scrolling even on XL: */
    .service-carousel-wrapper {
        /* overflow-x: hidden; */ /* Prevent scrolling if hiding buttons */
    }
}


/* --- Navigation Button Styling --- */
.service-nav-btn {
    position: absolute;
    top: 40%; /* Adjust vertically - may need tweaking based on final content height */
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    line-height: 1; /* Center arrow vertically */
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex; /* Use flex to center icon easily */
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .service-nav-btn:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .service-nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

.service-prev-btn {
    left: -5px; /* Position near the edge, adjust as needed */
}

.service-next-btn {
    right: -5px; /* Position near the edge, adjust as needed */
}

/* Style for the 'Learn More' link if needed */
.underlined-cta2 {
    text-decoration: none; /* Or underline */
    font-weight: 500;
    display: inline-block; /* Or block depending on desired layout */
}

    .underlined-cta2:hover {
        font-weight: bold !important;
        text-decoration: none !important;
    }

/* Ensure text description has reasonable line height */
.service-item p.small {
    line-height: 1.4;
}



/*===========*/
/*==== tour ===*/

/* section : events & tours */

/* Remove fixed height from the old container class if it exists */
/* .event-tour-container {
    height: auto; /* REMOVE or set to auto */
/* } */

.event-tour-title_ {
    font-size: 7.3rem; /* Keep large size for desktop */
    font-weight: 700;
    position: absolute;
    top: 0; /* Position relative to the parent row */
    line-height: 1;
    /* z-index: 1; */ /* Optional: if needed to overlap correctly */
}

.event-tour-title-events {
    left: 0; /* Align to start */
    /* You might need small adjustments like left: -15px; depending on container padding */
}

.event-tour-title-tours {
    /*right: 0;*/ /* Align to end */
    right: 5rem;
    /*    margin-leftx: -20rem;*/
    /* You might need small adjustments like right: -15px; depending on container padding */
}

.event-tour-img {
    width: 100%;
    height: 100%; /* Make image fill column height */
    object-fit: cover; /* Cover the area, maintaining aspect ratio */
    border-radius: 20px; /* Match the rounded corners from screenshot */
    min-height: 250px; /* Ensure a minimum height, adjust as needed */
}

/* Responsive adjustments for Titles */
@media (max-width: 1199.98px) { /* Below XL */
    .event-tour-title {
        font-size: 6rem; /* Slightly smaller */
    }
}
/* Below LG (991.98px), the titles are hidden by d-none d-lg-block */


/* Ensure links pushed to bottom have consistent alignment */
.d-flex.flex-column > .mt-auto {
    margin-top: auto !important; /* Override default margins if needed */
}

/* Optional: Add bottom margin to columns when they stack */
@media (max-width: 767.98px) {
    .row > [class^="col-"] { /* Target columns inside rows */
        margin-bottom: 1.5rem; /* Add space below each column when stacked */
    }

        .row > [class^="col-"]:last-child {
            margin-bottom: 0; /* Remove margin from the very last item */
        }

    .event-tour-img {
        min-height: 200px; /* Adjust min-height for smaller screens */
    }
}

/* -- Colors defined elsewhere, example: -- */
.txt-clr-red {
    color: #F04E45; /* Example Red */
}

.txt-clr-accentblue {
    color: #255F8E; /* Example Blue */
}
/* -- Link style defined elsewhere, example: -- */
.underlined-cta2 {
    text-decoration: none;
    font-weight: 500;
    color: #dc3545; /* Bootstrap danger color */
    display: inline-block;
}

    .underlined-cta2:hover {
        text-decoration: underline;
    }

    .underlined-cta2 .fw-bold {
        font-weight: bold !important;
    }

    .underlined-cta2 .ms-1 {
        margin-left: 0.25rem !important;
    }
