     /* Custom CSS */
        body {
            font-family: 'Space Grotesk', sans-serif;
        }
        .mx-l-auto {
            /* margin-right: auto !important; */
            margin-left: auto !important;
        }
        .container {
            padding-right: 0px;
            padding-left: 0px;
        }

        .header-nav {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
        }

        .header-nav .nav-link:hover {
            color: #28a745;
        }

        .hero-section {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
            background-size: cover;
            background-position: center;
            color: #fff;
        }

        #welcome_hading{
        padding-top: 35px;
        }
        #welcome_para{
        padding-top: 5px;
        }

        .search-box {
            background: #fff;
            border-radius: 50px;
            padding: 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .search-input {
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
        }

        .search-input:focus {
            box-shadow: none;
        }

        .search-btn {
            border-radius: 50%;
            width: 40px;
            height: 40px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card {
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s;
            cursor: pointer;
            background: #f9f9f9;
            margin: 5px;
            border-bottom: 3px solid transparent;
        }

        .service-card:hover, .service-card.active {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-bottom: 3px solid #28a745;
        }

        .service-card i {
            color: #28a745;
            font-size: 24px;
            margin-bottom: 10px;
        }

               .datepicker-box {
            background: #fff;
            border-radius: 10px;
            padding: 10px 15px;
            margin: 20px 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .date-number {
            font-size: 24px;
            font-weight: bold;
            color: #1F7F7B;
        }

        .date-details {
            font-size: 12px;
            color: #777;
        }

        .search-result-title {
            position: relative;
            margin-bottom: 30px;
        }

        .search-result-title h3 {
            font-weight: 600;
            font-size: 24px;
        }

        .search-result-title p {
            color: #777;
            font-size: 14px;
        }

        /* Blog section */
/* Compact card styling */
/* Compact card styling */
  .blog-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }
  .blog-card img.blog-cover {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease; /* Smooth zoom effect */
  }
  .blog-card:hover img.blog-cover {
    transform: scale(1.08); /* Slight zoom */
  }
  .blog-location-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: 3px 7px;
    font-size: 11px;
    border-radius: 999px;
  }
  .blog-details {
    padding: 10px 12px;
  }
  .blog-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 4px 0 6px;
    line-height: 1.25;
  }
  .blog-excerpt {
    color: #555;
    margin-bottom: 6px;
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .author-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0 6px;
  }
  .author-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
  }
  .author-name {
    font-weight: 500;
    font-size: 0.8rem;
  }
  .card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
  }
  .see-all-link {
    text-decoration: none;
    font-weight: 600;
  }
  .see-all-link:hover {
    text-decoration: underline;
  }


        .nav-tabs {
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 0;
        }

        .nav-tabs .nav-link {
            border: none;
            color: #333;
            font-weight: 500;
            padding: 1rem 0.5rem;
            margin-right: 1rem;
            position: relative;
            transition: color 0.3s;
        }

        .nav-tabs .nav-link:hover {
            color: #1F7F7B;
            cursor: pointer;
        }

        .nav-tabs .nav-link.active {
            background-color: transparent;
            color: #1F7F7B;
            border: none;
        }

        .nav-tabs .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #1F7F7B;
            z-index: 10;
        }

        .nav-tabs .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #1F7F7B;
            transition: width 0.3s;
            z-index: 10;
        }

        .nav-tabs .nav-link:hover::after {
            width: 100%;
        }

        .nav-icon {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }

        /* Renamed classes for search container */
        .travel-search-wrapper {
            padding: 10px;
        }

        .travel-search-box {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
            position: relative;
            cursor: pointer;
        }

        .travel-search-box:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .travel-search-box:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            height: 60%;
            width: 1px;
            background-color: #dee2e6;
            z-index: 5;
        }

        .travel-search-input {
            border: none;
            padding: 10px;
            width: 100%;
        }

        .travel-search-input:focus {
            outline: none;
        }

        .travel-location-icon {
            color: #1F7F7B;
        }

        .travel-search-action {
            background-color: #1F7F7B;
            border: none;
            aspect-ratio: 1/1;
            height: 100%;
            max-width: 100%;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .travel-search-action-container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .travel-search-action:hover {
            background-color: #176663;
            cursor: pointer;
        }

        .travel-search-action:hover .travel-search-icon {
            color: #ffffff;
        }

        .travel-search-icon {
            font-size: 1.2rem;
        }

        .popular-search-tag {
            display: inline-block;
            padding: 5px 15px;
            margin: 5px;
            background-color: #f1f1f1;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #333;
            border: 1px solid #e0e0e0;
        }

        .popular-search-tag:hover {
            background-color: #e9ecef;
            text-decoration: none;
            color: #1F7F7B;
            border-color: #1F7F7B;
        }

        .popular-search-tag.active {
            background-color: #e9ecef;
            border-color: #1F7F7B;
            color: #1F7F7B;
        }

        .travel-small-label {
            font-size: 0.8rem;
            color: #6c757d;
        }

        .travel-date-value,
        .travel-location-value {
            font-weight: 500;
        }

        .travel-divider {
            width: 1px;
            background-color: #dee2e6;
            height: 40px;
        }

        /* Guest Counter Styling */
        .guest-counter {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .guest-counter-btn {
            background-color: #1F7F7B;
            color: #fff;
            border: none;
            border-radius: 5px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            cursor: pointer;
        }

        .guest-counter-btn:hover {
            background-color: #176663;
        }

        .guest-counter-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        /* Calendar Styling */
        .datepicker {
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: none;
            font-family: Space Grotesk !important;
            z-index: 1000;
        }

        .datepicker table tr td,
        .datepicker table tr th {
            border-radius: 5px;
            padding: 10px;
            text-align: center;
        }

        .datepicker table tr td.day:hover,
        .datepicker table tr td.focused {
            background-color: #1F7F7B !important;
            color: #fff !important;
        }

        .datepicker table tr td.today {
            background-color: #f8f9fa;
            color: #333;
        }

        .datepicker table tr td.active {
            background-color: #1F7F7B !important;
            color: #fff !important;
        }

        .datepicker table tr td.disabled,
        .datepicker table tr td.disabled:hover {
            background-color: #f1f1f1 !important;
            color: #ccc !important;
            cursor: not-allowed;
        }

        .datepicker .datepicker-switch,
        .datepicker .prev,
        .datepicker .next {
            background-color: #f8f9fa;
            color: #333;
            border-radius: 5px;
        }

        .datepicker .datepicker-switch:hover,
        .datepicker .prev:hover,
        .datepicker .next:hover {
            background-color: #1F7F7B;
            color: #fff;
        }

        .datepicker .dow {
            color: #1F7F7B;
            font-weight: 500;
        }

        /* Hero Section Search Box */
        .hero-section .search-container {
            max-width: 840px;
            max-height: 64px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-section .search-box-wrapper {
            flex-grow: 1;
            position: relative;
            background: #fff;
            border-radius: 50px;
            padding: 5px 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .hero-section .search-icon-wrapper {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            z-index: 2;
        }

        .hero-section .search-input {
            border: none;
            border-radius: 50px;
            padding: 12px 12px 12px 40px;
            width: 100%;
            background: transparent;
        }

        .hero-section .search-input:focus {
            box-shadow: none;
            outline: none;
        }

        .hero-section .filter-btn {
            border-radius: 50%;
            width: 48px;
            height: 48px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .hero-section .filter-btn:hover {
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

        .hero-section .filter-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        /* Ensure travel search styles don't interfere */
        .nav-tabs + .travel-search-wrapper .travel-search-box {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
            position: relative;
        }

        .nav-tabs + .travel-search-wrapper .travel-search-action {
            background-color: #1F7F7B;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: calc(100% - 10px);
        }

        .nav-tabs + .travel-search-wrapper .travel-search-action-container {
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            /* Responsive Adjustments */
        @media (max-width: 991px) {
            /* Header Navigation */
            .navbar-nav.mx-auto,
            .navbar-nav.ms-auto {
                text-align: center;
            }
            .navbar-nav .nav-item {
                margin: 5px 0;
            }
            .header-nav .nav-link {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }
            .navbar-brand {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
         .qr-code {
                text-align: center;
                margin-top: 20px;
            }

            .hero-section {
                padding: 40px 0;
            }
             .service-card {
                margin-bottom: 10px;
            }

            .nav-tabs .nav-link {
                padding: 0.75rem 0.25rem;
                margin-right: 0.5rem;
                font-size: 0.85rem;
            }

            .nav-icon {
                margin-right: 0.25rem;
            }

            .travel-search-box {
                margin-bottom: 10px;
            }

            .travel-divider {
                display: none;
            }


        }
         @media (max-width: 576px) {
            /* Header */
            .header-nav .nav-link {
                font-size: 0.85rem;
            }
            .navbar-brand {
                font-size: 1rem;
            }
              /* Hero Section */
            .hero-section {
                padding: 30px 0;
            }
            .hero-section h1 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            .hero-section p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
            .hero-section .search-container {
                flex-direction: column;
                gap: 10px;
                max-width: 100%;
                padding: 0 15px;
            }
            .hero-section .search-box-wrapper {
                width: 100%;
                padding: 5px 10px;
            }
            .hero-section .search-input {
                padding: 8px 8px 8px 35px;
                font-size: 0.9rem;
            }
            .hero-section .search-icon-wrapper {
                left: 15px;
            }
            .hero-section .filter-btn {
                margin: 0 auto;
                width: 40px;
                height: 40px;
            }
            .hero-section .filter-icon {
                width: 20px;
                height: 20px;
            }

            /* Navigation Tabs */
            .nav-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 5px;
                -webkit-overflow-scrolling: touch;
            }
            .nav-tabs::-webkit-scrollbar {
                display: none;
            }
            .nav-tabs .nav-item {
                flex: 0 0 auto;
            }
            .nav-tabs .nav-link {
                padding: 0.5rem 0.5rem;
                margin-right: 0.25rem;
                font-size: 0.75rem;
            }
            .nav-icon {
                width: 20px !important;
                height: 20px !important;
                margin-right: 0.25rem;
            }

            /* Travel Search Section */
            .travel-search-wrapper {
                padding: 5px;
            }
            .travel-search-box {
                padding: 10px;
                margin-bottom: 10px;
            }
            .travel-search-box:not(:last-child)::after {
                display: none;
            }
            .travel-location-icon {
                font-size: 1rem;
                margin-right: 0.5rem;
            }
            .travel-small-label {
                font-size: 0.75rem;
            }
            .travel-date-value,
            .travel-location-value {
                font-size: 0.9rem;
            }
            .date-number {
                font-size: 1.2rem;
            }
            .guest-counter-btn {
                width: 20px;
                height: 20px;
                font-size: 0.8rem;
            }
            .travel-search-action {
                padding: 8px;
            }
            .travel-search-icon {
                font-size: 1rem;
            }

            /* Popular Search Tags */
            .popular-search-tag {
                padding: 4px 10px;
                margin: 3px;
                font-size: 0.75rem;
            }
            .mb-0 .me-2 {
                font-size: 0.9rem;
            }

            /* Datepicker */
            .datepicker {
                transform: scale(0.85);
                transform-origin: top left;
            }
            }

/* Base footer styles */
/* Base footer styles */
.footer {
background-color: #ffffff;
padding: 2rem 0; /* reduced padding */
font-size: 0.9rem; /* reduce overall font size */
}
.footer h5 {
font-weight: 700;
margin-bottom: 0.75rem;
line-height: 1.2;
font-size: 1rem; /* smaller headings */
}
.footer p,
.footer li,
.footer a { color: #6c757d; }

/* Links */
.footer-links { list-style: none; padding-left: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
text-decoration: none;
transition: color .25s ease;
font-size: 0.85rem; /* smaller links */
}
.footer-links a:hover,
.footer-links a:focus-visible { color: #22c55e; }

/* Socials */
.socials { display: flex; gap: .5rem; margin-top: .5rem; }
.social-icon {
display: inline-flex; align-items: center; justify-content: center;
width: 36px; height: 36px; border-radius: 9999px;
border: 1px solid #e0e0e0;
color: #6c757d; font-size: 1rem;
transition: transform .2s ease, color .25s ease, border-color .25s ease, background-color .25s ease;
}
.social-icon:hover,
.social-icon:focus-visible { color: #22c55e; border-color: #22c55e; transform: translateY(-2px); }

/* QR */
.qr-wrap { text-align: center; }
.qr-code { max-width: 90px; height: auto; border-radius: .5rem; border: 1px solid #e0e0e0; }

/* Bottom bar */
.bottom-footer { background-color: #f8f9fa; padding: 0.75rem 0; border-top: 1px solid #e0e0e0; }
.bottom-footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem; }
.bottom-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.bottom-links a { color: #6c757d; text-decoration: none; font-size: .8125rem; }
.bottom-links a:hover,
.bottom-links a:focus-visible { color: #22c55e; }
.copyright { font-size: .8125rem; color: #6c757d; margin: 0; }

/* Layout: responsive grid */
.footer .row { row-gap: 1.5rem; }

/* Small devices */
@media (max-width: 575.98px) {
.footer { padding: 0.5rem 0; }
.footer h5 { margin-bottom: .5rem; font-size: 0.95rem; }
.footer .col-md-2 { text-align: center; }
.footer .col-md-2 .footer-links { align-items: center; display: inline-flex; flex-direction: column; }
.qr-code { max-width: 72px; }
.socials { justify-content: center; }
}

/* Medium devices */
@media (min-width: 576px) and (max-width: 991.98px) {
.footer .col-md-2 { flex: 0 0 50%; max-width: 50%; }
.qr-wrap { text-align: center; }
}

/* Large devices */
@media (min-width: 992px) {
.footer { padding: 2.5rem 0; }
.footer h5 { margin-bottom: 0.75rem; }
}

/* Accessibility */
.footer a:focus-visible,
.social-icon:focus-visible { outline: 2px solid #22c55e; outline-offset: 2px; border-radius: .5rem; }

/* Dark mode */
@media (prefers-color-scheme: dark) {
.footer { background-color: #0b0b0c; }
.bottom-footer { background-color: #121214; border-top-color: #222; }
.footer p, .footer li, .footer a, .copyright { color: #a8b1bb; }
.social-icon { border-color: #222; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
.social-icon { transition: none; }
}