 body {
            font-family: Arial, sans-serif;
        }

        .navbar {
            background-color: #003580; /* Dark blue background */
        }

        .navbar-brand img {
            height: 40px; /* Adjust logo height */
        }
        /* Styling for the buttons */
.btn-france {
  background-color: #0056b3; /* Example background color */
  color: white;
  border: none;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.btn-france:hover {
  background-color: #00408b; /* Darker shade for hover effect */
}

/* Phone call button styling */
.call_btn {
  color: #0056b3;
  font-size: 18px;
  text-decoration: none;
}

.call_btn img {
  width: 20px; /* Adjust icon size */
  margin-right: 8px;
}

/* For the "CALL TO BOOK" button */
.call_book {
  font-size: 18px;
  color: #fff;
  background-color: #ff6347;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.call_book:hover {
  background-color: #e55347;
}


        .nav-link {
            color: white !important;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .nav-link:hover {
            text-decoration: underline;
        }

        .nav-item i {
            margin-right: 5px;
        }

        .btn-outline-light {
            border-color: white;
            color: white;
            font-weight: 600;
        }

        .btn-outline-light:hover {
            background-color: white;
            color: #003580;
        }

        .btn-light {
            font-weight: 600;
            background-color: white;
            color: #003580;
        }

        .currency {
            color: white;
            font-weight: 600;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu {
            background-color: #003580;
            padding: 10px 0;
        }
        .hero-section {
            padding: 60px 30px;
            text-align: left;
            background-color: #041b44;  /* Dark background */
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .hero-section p {
            font-size: 1.2rem;
            margin: 15px 0;
        }

        .explore-btn {
            background-color: #0071c2;
            color: white;
            padding: 10px 20px;
            border: none;
        }

        .search-bar {
            background-color: #ffb700;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            margin-top: -50px;
        }

        .form-control {
            border: none;
            border-radius: 10px;
        }

        .btn-search {
            background-color: #0071c2;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
        }
         .search-container {
            background-color: #ffb700;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .search-container .form-control,
        .search-container .btn {
            border: none;
            border-radius: 10px;
            height: 50px;
        }

        .search-container .btn-search {
            background-color: #0071c2;
            color: white;
            font-weight: bold;
            border-radius: 10px;
        }

        .input-group-text {
            background-color: white;
            border: none;
            border-radius: 10px 0 0 10px;
        }

        .dropdown-menu {
            width: 300px;
            padding: 15px;
        }

        .dropdown-menu input {
            width: 50px;
            text-align: center;
        }

        .dropdown-toggle::after {
            display: none;
        }
        /* Style the dropdown container */
.dropdown-menu {
    width: 320px; /* Adjust the width */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Adjust the dropdown button */
.dropdown-toggle {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Icon inside the dropdown toggle */
.dropdown-toggle i {
    margin-right: 8px;
    color: #0071c2; /* Adjust the icon color */
}

/* Dropdown list items */
.dropdown-menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Style the input box */
.input-group .form-control {
    width: 60px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#childrenCount,#adultsCount,#roomsCount{
    height: 35px;
}

/* Buttons within the dropdown */
.input-group .btn-sm {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.input-group .btn-sm:hover {
    background-color: #0071c2;
    color: white;
}

/* Style the Done button */
.text-end .btn-primary {
    background-color: #0071c2;
    border: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.text-end .btn-primary:hover {
    background-color: #0056a0;
}
/* General Section Styling */
.offers-section {
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.offers-section h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.offers-section p {
  color: #555;
  margin-bottom: 20px;
}

/* Slider Container */
.offers-slider-container {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: auto;
  border-radius: 12px;
}

/* Slider Track */
.offers-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* Adjust based on the number of offer cards */
}

/* Offer Card Styling */
.offer-card {
  min-width: 33.33%; /* For three slides, adjust if you have more slides */
  box-sizing: border-box;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
}

.offer-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Image Styling */
.offer-card img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}

/* Offer Button */
.btn-offer {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.btn-offer:hover {
  background-color: #0056b3;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.offers-container .offer-item {
  display: flex;
  align-items: center;              /* Align content vertically */
  background-color: #f8f9fa;        /* Light background */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
  gap: 20px;                        /* Space between text and image */
}

.offer-content {
  flex: 1;                          /* Content takes up available space */
}

.offer-item .offer-image {
  width: 200px;                     /* Set image width */
  height: 200px;                    /* Set image height */
  object-fit: cover;                /* Maintain image proportions */
  border-radius: 10px;              /* Rounded corners */
}

.offer-content h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.offer-content button {
  margin-top: 15px;
}

.owl-carousel .item img {
    width: 124px;
    height: 124px;
    object-fit: cover; /* Ensures the image fits within the 124x124 container */
}

.nav-pills .nav-link {
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: bold;
            color: #333;
            background-color: #e7f1ff;
            border: 1px solid transparent;
        }
        .nav-pills .nav-link.active {
            background-color: #007bff;
            color: #fff;
        }
        .cities-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 20px;
        }
        .cities-container div {
            width: 20%;
            margin-bottom: 10px;
            font-size: 16px;
        }
        .footer-links {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: #777;
        }
        .footer-links a {
            color: #555;
            text-decoration: none;
            margin: 0 5px;
        }
        footer {
            background-color: #f8f9fa; /* Light background */
            padding: 40px 0;
            font-family: Arial, sans-serif;
            color: #333;
        }
        .footer-title {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .footer-link {
            text-decoration: none;
            color: #555;
            display: block;
            margin-bottom: 8px;
        }
        .footer-link:hover {
            text-decoration: underline;
            color: #007bff; /* Blue link on hover */
        }
        .footer-bottom {
            margin-top: 30px;
            text-align: center;
            font-size: 14px;
            color: #777;
        }
        .flag-icon {
            width: 20px;
            height: auto;
            margin-right: 8px;
        }
        .currency {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
        }

        footer {
            background-color: #f8f9fa; /* Light gray background */
            padding: 20px 0;
            font-family: Arial, sans-serif;
            color: #333;
            text-align: center;
        }
        .footer-bottom {
            font-size: 14px;
            color: #777;
            margin: 10px 0;
        }
        .currency {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .flag-icon {
            width: 24px;
            height: auto;
            margin-right: 8px;
        }
        .brand-logos img {
            max-width: 100px;
            height: auto;
            margin: 0 10px;
        }
        .brand-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        .divider {
            border-top: 1px solid #ddd;
            margin: 20px 0;
        }
        /* General Container Styling */
body {
    background-color: #f8f9fa; /* Light gray background */
}

h2 {
    font-weight: bold;
    color: #333;
    font-size: 25px;
}

p.text-muted {
    font-size: 1.1rem;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-img-top {
    height: 180px; /* Fixed height for consistency */
    object-fit: cover; /* Ensure image covers the area without stretching */
}

.card-body {
    padding: 1rem 0.5rem;
}

.card-text {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Hover Effects */
.card:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
}
.card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card-img-top {
            height: 200px; /* Fixed height */
            object-fit: cover; /* Ensure images maintain aspect ratio */
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .image-placeholder {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f1f1f1;
            border-radius: 15px;
        }

        .image-placeholder i {
            font-size: 50px;
            color: #888;
        }
         .card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            filter: brightness(0.75);
        }

        .card-title {
            bottom: 20px;
            font-size: 1.0rem;
            font-weight: 700;
        }

        .price {
            position: absolute;
            bottom: 5px;
            left: 20px;
            font-size: 1.1rem;
        }

        .flag {
            margin-left: 8px;
            font-size: 1.2rem;
        }

.breadcrumb {
    background-color: #f9f9f9;
    padding: 10px 20px;
    border-radius: 5px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}
.breadcrumb a {
    text-decoration: none;
    color: #007bff;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-img-top {
        height: 150px; /* Smaller height on medium screens */
    }
     .search-container {
            background-color: #ffb700;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            flex-wrap: wrap;
            gap: 10px;  /* Adjust spacing */
        }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.5rem;
    }
    .card-title {
        font-size: 1rem;
    }
}
