.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    /* moved from right to left */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

/* Navbar links */
.navbar-light .navbar-nav .nav-link {
    color: #333 !important;
    /* Dark text on white background */
    font-weight: 500;
}

/* Active link */
.navbar-light .navbar-nav .nav-link-active {
    color: #007bff !important;
    /* Example: blue active link */
}

/* Dropdown menu links */
.navbar-light .dropdown-menu {
    background-color: #ffffff;
    /* White background */
}

.navbar-light .dropdown-item {
    color: #333;
    /* Dark text in dropdown */
}

.navbar-light .dropdown-item:hover {
    color: #007bff;
    /* Highlight on hover */
    background-color: #f8f9fa;
    /* Light gray hover */
}



.badge--duration {
    background: #f5550c;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.my-float {
    margin-top: 16px;
}


@font-face {
    font-family: 'TukTukFont';
    src: url('/fonts/Dacherry.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.tuktuk {
    font-family: 'TukTukfont', regular;
    font-weight: 100 !important;
}

/* Responsive logo */
.responsive-logo {
    width: 120px;
    /* default on mobile */
    height: auto;
    max-width: 100%;
}

@media (min-width: 768px) {
    .responsive-logo {
        width: 160px;
        /* tablet */
    }
}

@media (min-width: 1200px) {
    .responsive-logo {
        width: 220px;
        /* desktop */
    }
}

footer .footer-logo img.responsive-logo {
    max-height: none !important;
    height: auto !important;
    width: 120px !important;
}

/* Custom Styles for Tour Card Layout */

/* 1. Ensure the item takes full height of the row */
.portfolio-wrapper>.d-flex {
    /* The d-flex on the li is necessary for equal height */
    height: 100%;
}

/* 2. Main Card Styling */
.services-box-style-06 {
    /* The Twig template already has d-flex and flex-column classes, 
       but we ensure the card wrapper takes up the full width/height of the grid item. */
    border: 1px solid #eee;
    /* Example border */
    overflow: hidden;
}

/* 3. Price Bubble Styling (Adjust values as needed) */
.price-bubble {
    width: 80px;
    height: 80px;
    right: 20px;
    top: -40px;
    /* Pulls it up over the image */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* 4. The Magic for Equal Height and Bottom Alignment */
.services-box-style-06>.bg-white {
    /* flex-grow-1 is the utility class that makes this area expand vertically. 
       If your framework doesn't have it, use the raw CSS below: */
    flex-grow: 1;
    /* justify-content-between ensures the last element (the "More" button) 
       is pushed to the bottom of this growing content area. */
}