.choice-btn {
    display: block;
    padding: 10px 20px;
    background: #325233;
    text-align: center;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    border: 2px solid #325233;
}

.choice-btn:hover {
    color: #325233;
    background: #fff;
}

.category-filter-parent {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0px;
}
.category-filter {
    padding: 2px 8px;
    text-align: center;
    color: #fff;
    background-color: #325233;
    cursor: pointer;
    margin: 6px;
    border: 2px solid #325233;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.category-filter:hover {
    background: #233a24;
    color: #fff;
}

.category-filter:active {
    background-color: #b88a3b; /* Darken background on active state */
}

.category-filter.selected {
    background-color: #325233;
    color: #fff;
    border-color: #325233;
}

.category-filter-parent {
    flex: 1;
    justify-content: center;
    padding: 0 44px;
}
.unique_category-filter-parent {
    flex: 1;
    justify-content: start;
    padding: 0px 16px;
}

.hidden-item {
    display: none;
}

.show-all .hidden-item {
    transform: translateY(0);
    display: block;
}

/* Button stays below content */
.toggle-btn {
    margin-top: 10px;
    align-self: flex-start;
    border: none;
    background: none;
    text-decoration: underline;
}

/* Cards Container */
.cards-packs {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(250px, 1fr)
    ); /* Grid with auto-fit behavior */
    gap: 10px; /* Space between cards */
    width: 100%;
    margin: 0 auto; /* Center container */
    padding: 20px; /* Add padding */
    box-sizing: border-box; /* Ensure padding and border are included in element’s total width and height */
}
.unique_cards-packs {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(250px, 1fr)
    ); /* Grid with auto-fit behavior */
    gap: 8px; /* Space between cards */
    width: 90%;
    margin: 0 auto; /* Center container */
    padding: 16px; /* Add padding */
    box-sizing: border-box; /* Ensure padding and border are included in element’s total width and height */
}

/* Article Card Styling */
.article-card {
    max-width: 370px; /* Cards will adjust based on grid */
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    display: inline-block;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* Image Styling */
.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Styling */
.article-card .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    box-sizing: border-box;
}

.article-card .date {
    font-size: 13px;
    color: #fff;
    text-shadow: -1px 3px 16px rgba(51, 51, 51, 1);
    font-weight: 500;
}

.article-card .title {
    font-size: 18px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-shadow: -1px 3px 16px rgba(51, 51, 51, 1);
}

.article-card .read-more {
    font-size: 14px;
    text-decoration: none;
    color: #daac50;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
    text-shadow: -1px -1px 13px rgba(51, 51, 51, 0.54);
    display: flex;
    justify-content: space-between;
}
.like-ico {
    font-size: 20px;
    z-index: 99;
    cursor: pointer;
}
.like-ico:hover {
    scale: 1.2;
}

.article-card .read-more::after {
    position: absolute;
    right: -16px;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}

.article-card:hover .read-more {
    color: #daac50;
}

.article-card:hover .read-more::after {
    opacity: 1;
    right: -8px;
}

/* Media Queries */
@media (max-width: 768px) {
    .article-card {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .article-card {
        height: 250px;
    }

    .article-card .title {
        font-size: 16px;
    }
}

.article-tag {
    background-color: #325233;
    color: #fff;
    border-radius: 5px;
    margin-right: 8px;
    font-size: 11px;
    font-weight: 700;
    padding: 0px 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.article-card .content-top {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 10px;
    color: white;
    box-sizing: border-box;
}

.details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    backdrop-filter: blur(5px);
    /* Blur effect */
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5em;
    text-align: center;
}

.article-card:hover .details-overlay {
    opacity: 1;
}

.load-more {
    padding: 2px 8px;
    text-align: center;
    color: #325233;
    cursor: pointer;
    margin: 6px;
    border: 2px solid #325233;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: none;
}

.load-more:hover {
    background: #325233;
    color: #fff;
}

/* swiper css */
/* Container for the Swiper slides */
/* .slides {
    position: relative;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0 50px;
} */

/* Swiper container */
.swiper-unique {
    padding: 0px 0px;
    width: 92%;
    height: 220px;
    margin: auto;
}
.offer-slider {
    width: 94%;
    padding: 10px 0px 40px 0px;
}

/* Swiper slides */
.swiper-slide {
    font-size: 18px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.162);
    background-color: rgba(0, 0, 0, 0.053);
    background-size: cover;
    background-position: center;
    background-blend-mode: darken;
}

/* Image scaling inside swiper slides */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Optional pagination styling */
.swiper-pagination-bullet {
    background: #325233;
    opacity: 0.7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet-active {
    background: #325233;
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.548);
}

.card-text h4 {
    top: 0;
    left: 0;
    font-size: 36px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    text-align: center;
    /* text-shadow: -1px 3px 16px rgba(51, 51, 51, 1); */
}
.card-text {
    margin: 16px 16px 8px 26px;
}

.icon {
    color: #daac50;
    font-size: 20px;
    vertical-align: middle;
    display: inline-block;
}

.cara {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px;
    margin: 0px 16px;
    text-transform: none;
    font-size: 12px;
    font-weight: 400;
    margin-left: 26px;
    margin-top: 8px;
}

/* .swipes-contanier {
    padding: 50px 0;
} */

.h4-header {
    font-size: 38px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-bottom: 30px;
}

.card-para {
    font-size: 14px;
}
/* .cara span {
    margin-left: 2px;
} */

.card-content {
    vertical-align: middle;
    display: inline-block;
    margin-top: 8px;
}
.swipes-contanier {
    padding: 40px 0;
}

/* Small screens, like phones */
@media (max-width: 320px) {
    .card-text h4 {
        font-size: 12px;
    }
    .card-para {
        font-size: 8px;
    }
    .icon {
        font-size: 10px;
    }
    .cara span {
        font-size: 8px;
    }
}

/* Larger phones */
@media (max-width: 640px) {
    .card-text h4 {
        font-size: 14px;
    }
    .card-para {
        font-size: 8px;
    }
    .icon {
        font-size: 10px;
    }
}

/* Tablets and medium screens */
@media (max-width: 768px) {
    .card-text h4 {
        font-size: 24px;
    }
    .card-para {
        font-size: 10px;
    }
    .icon {
        font-size: 10px;
    }
}

/* Larger tablets and small laptops */
@media (max-width: 1024px) {
    .card-text h4 {
        font-size: 32px;
    }
    .card-para {
        font-size: 12px;
    }
    .icon {
        font-size: 10px;
    }
    .cara span {
        font-size: 12px;
    }
}
/* Banner container */
.banner-back {
    background-image: url("../../../assets/images-slider/kaaba-close.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    height: 460px;
    padding: 32px 0;
    width: 100%;
    margin: 50px 0;
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* Slight overlay for better contrast */
}
/* Banner content */
.banner {
    color: #fff;
    padding: 90px 80px;
}

/* Banner heading */
.banner-head {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Banner paragraph */
.banner-para {
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
    color: #ddd;
}
.get_in_touch {
    margin: 16px 0px 0px 0px;
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-back {
        margin: 42px 0;
    }
    .banner-head {
        font-weight: 700;
        font-size: 2.2rem;
        margin-bottom: 16px;
        line-height: 1.2;
        text-align: center;
    }
    .banner-para {
        font-size: 0.9rem;
        max-width: 800px;
        line-height: 1.6;
        text-align: center;
    }
    .banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .get_in_touch {
        display: inline-block;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin-top: 20px; /* Add some space from the text above */
    }

    .banner-content {
        text-align: center;
    }

    .banner-para {
        margin-left: auto;
        margin-right: auto;
    }
    .banner {
        padding: 52px 16px;
    }
}

@media (max-width: 480px) {
    .banner-back {
        margin: 20px 0;
    }
}

/* offre details */
.img-responsive {
    width: 100%;
    height: auto;
}

.flight-info {
    display: flex;
    align-items: center;
    margin-right: 15px;
    /* Add spacing between inline blocks */
}

.flight-info img {
    margin-right: 8px;
    /* Space between the image and the text */
    width: 20px;
    /* Adjust size of the image */
    height: auto;
}

.flight-info span {
    display: inline-block;
    font-size: 13px;
}

.styled-title:hover {
    color: #325233;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.info-row span {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 14px;
    /* margin: 0; */
}

.info-row img {
    width: 18px;
    height: auto;
}

.info i {
    font-size: 18px;
    color: #325233;
    margin-right: 8px;
}

.trip-details {
    margin: 20px 0;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.detail-section p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.detail-section ul {
    margin-left: 20px !important;
}

.detail-section ul li {
    margin-bottom: 5px;
    font-size: 1rem;
}

a {
    text-decoration: none;
}

/* General Styles */
.card-header {
    font-size: 1rem;
    padding: 15px;
    background-color: rgba(105, 105, 105, 0.088);
    border-radius: 6px;
}

.card-header span {
    font-size: 22px;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
}

/* .card-body p, */
.card-body ul {
    margin-bottom: 0.5rem;
}

/* List Style */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* Adjust margin for the title icon */
h1 .bi {
    margin-right: 0.5rem;
}

/* Alert styling */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}
.fa-check {
    color: #325233;
}
.fa-times {
    color: #325233;
}

/* offer details dropdown */

.dropdown {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

/* Dropdown button styling */
.dropdown-btn {
    width: 100%;
    padding: 4px 10px;
    background-color: #fff;
    border: 1px solid #325233;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-btn i {
    margin-left: 10px;
    font-size: 16px;
    color: #969595; /* Adjust color as needed */
}

/* Arrow icon */
.dropdown-btn::after {
    content: "";
    font-size: 12px;
    margin-left: 10px;
}

/* Dropdown content */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    color: #969595;
}

/* Dropdown items */
.dropdown-item {
    padding: 12px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
/* .dropdown-item span {
    font-weight: 600;
} */
.dropdown-item:last-child {
    border-bottom: none;
}

/* Hover effect */
.dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Show the dropdown content */
.dropdown.active .dropdown-content {
    display: block;
}

/* Hidden input to store the selected value */
#packageInput {
    display: none;
}

.delete-button {
    float: left;
    color: #fff;
    background: #da5050;
    border: 0px;
    padding: 8px 40px;
    font-size: 10pt;
    font-weight: 500;
    margin: 29px 5px 0 5px;
    border-radius: 6px;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.delete-button:hover {
    background: #999;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-bod {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 8px;
    margin: 0 auto;
    width: 100%;
}

.modal-bod * {
    vertical-align: middle;
    margin-bottom: 8px;
}

.hystmodal__window {
    max-width: 600px;
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hystmodal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.modal-header {
    text-align: center;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
}

.modal-info,
.modal-details {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.modal-details {
    display: flex;
    justify-content: space-around;
}

.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-details ul li {
    font-size: 14px;
    color: #555;
}

.modal-actions {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
}

.btn-action {
    /* padding: 10px 20px; */
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Responsive styling */
@media (max-width: 768px) {
    .hystmodal__window {
        width: 90%;
    }

    .modal-title {
        font-size: 20px;
    }
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 4px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(min(350px, 100vw / 2), 1fr)
    );
    grid-gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.card-type {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.card-price {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-top: 5px;
}

.reservation-info {
    font-size: 14px;
    color: #555;
}

.status-label {
    font-weight: 500;
    color: #fff;
    padding: 0px 8px;
    border-radius: 25px;
}

.btn-primary {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.payment-options {
    margin: 20px 0;
    width: 100%;
}

.payment-option {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.payment-option summary {
    cursor: pointer;
    padding: 15px 20px;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.payment-option summary:hover {
    background-color: #f9f9f9;
}

.payment-option summary::after {
    font-family: "FontAwesome";
    content: "\f107";
    font-weight: normal;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.payment-option[open] summary::after {
    transform: rotate(180deg);
    /* Rotates the icon up when expanded */
}

.details-content {
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .payment-option summary {
        font-size: 14px;
    }

    .details-content {
        font-size: 13px;
    }
}

.details-content {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.transfer-intro {
    color: #495057;
    margin-bottom: 15px;
    font-size: 15px;
}

.bank-details {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bank-detail-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    flex: 0 0 140px;
    color: #6c757d;
    font-weight: 600;
    font-size: 14px;
}

.detail-value {
    flex: 1;
    color: #212529;
    font-family: monospace;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: none;
    border: none;
    color: #6c757d;
    padding: 5px 10px;
    cursor: pointer;
    transition: color 0.2s;
    margin-left: 10px;
}

.copy-btn:hover {
    color: #0056b3;
}

/* Add hover effect */
.bank-detail-item:hover {
    background-color: #f8f9fa;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .bank-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .detail-label {
        flex: none;
        margin-bottom: 4px;
    }

    .copy-btn {
        position: absolute;
        right: 15px;
    }
}

/* Optional: Animation for details opening */
.details-content {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
