@font-face {
    font-family: FuturaMdBt;
    src: url(coverage/fonts/FuturaMdBtMedium.ttf) format("ttf");
    font-display: swap;
}

.futura-md-medium {
    font-family: FuturaMdBt, sans-serif;
}

@font-face {
    font-family: FuturaMdBtBold;
    src: url(coverage/fonts/FuturaMdBtBold.ttf) format("ttf");
    font-display: swap;
}

.futura-md-bold {
    font-family: FuturaMdBtBold, sans-serif;

}

@font-face {
    font-family: FuturaLTLight;
    src: url(coverage/fonts/FuturaLT-Light.ttf) format("ttf");
    font-display: swap;
}

.futura-Lt-Light {
    font-family: FuturaLTLight, sans-serif;

}

@font-face {
    font-family: Inter;
    src: url(coverage/fonts/Inter/static/Inter_18pt-Bold.ttf) format("ttf");
    font-display: swap
}

@font-face {
    font-family: InterRegular;
    src: url(coverage/fonts/Inter/static/Inter_18pt-Regular.ttf) format("ttf");
    font-display: swap
}

.interRegular {
    font-family: InterRegular, sans-serif;
    font-weight: 400;

}

.interBold {
    font-family: Inter, sans-serif;
    font-weight: 700;
}

/* Hero-Section */

.dropdown-container {
    position: relative;
    width: 280px;
    margin: 2px 0px;
}

.travel-container {
    position: relative;
    width: 280px;
    margin: 2px 0px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 27px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.travel-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 25px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    border-color: #ccc;
}

.travel-toggle:hover {
    border-color: #ccc;
}

.dropdown-toggle.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.travel-toggle.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.travel-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.travel-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.dropdown-menu.show {
    display: block;
}

.travel-menu.show {
    display: block;
}

.guest-item {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.guest-icon {
    font-size: 24px;
    color: #999;
    width: 32px;
    text-align: center;
}

.guest-info {
    flex: 1;
}

.guest-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.guest-sublabel {
    font-size: 12px;
    color: #999;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-control {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-minus {
    background: #e0e0e0;
    color: #999;
}

.btn-minus:hover:not(:disabled) {
    background: #d0d0d0;
}

.btn-minus:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-plus {
    background: #ba0c2f;
    color: white;
}

.btn-plus:hover {
    background: #ba0c2f;
}

.guest-count {
    width: 32px;
    text-align: center;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.apply-btn {
    width: calc(100% - 32px);
    margin: 16px;
    padding: 10px 16px;
    background: #ba0c2f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.dropdown-menu-footer {
    padding: 0;
    border-top: 1px solid #f0f0f0;
}


#ui-datepicker-div {
    width: auto;
}

.travel-bg {
    background: linear-gradient(135deg, #8B1538 0%, #C41E3A 50%, #8B1538 100%);
    min-height: calc(100vh - 122px);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.travel-bg>.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.flight-booking {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.location-field {
    flex: 1;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2px;
    display: flex;
    flex-direction: column;

}

.location-field label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0px;
}

.location-field input {
    font-size: 16px;
    color: #333;
    border: none;
    outline: none;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
}


.location-field input::placeholder {
    color: #ccc;
}

.swap-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.swap-button:hover {
    background: #f9f9f9;
    border-color: #d0d0d0;
}

.swap-button svg {
    width: 20px;
    height: 20px;
    color: #D9D9D9;
}

.currency-cube {
    background-color: #BA0C2F;
    /* red background similar to the image */
    border-radius: 20px;
    padding: 0px 6px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
    height: 45px;
    margin-top: 2px;
}

.flag-img {
    width: 55px;
    height: 35px;
    border-radius: 15px;

}

.rate {
    font-size: 1rem;
}

@media (max-width: 576px) {

    .form-check {
        padding: 15px;
    }

    .form-check-input {
        margin-top: 25px;
        width: 50px;
        height: 30px;
    }

    .form-check-label {
        font-size: 30px;
    }

    .currency-cube {
        padding: 4px 10px;
    }

    .flag-img {
        width: 32px;
        height: 20px;
    }

    .rate {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .date-col {
        padding: 18px;
    }

    .dropdown-toggle {
        padding: 11px 88px;

    }

    .travel-toggle {
        padding: 11px 88px;
    }

    .drop-col {
        padding: 0px 15px 18px;
    }

}

@media (max-width: 992px) {
    .date-w {
        width: auto;
    }

    .location-field label {
        font-size: 20px;
    }

    .location-field input {
        font-size: 25px;
    }

    .hidden-input {
        font-size: 25px;
        height: auto;
    }

    .option-text {
        font-size: 25px;
    }
}

.hidden-input-body {
    background-color: #fff;
    border: #fff 1px solid;
    border-radius: 12px;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 25px;
}

.hidden-input {
    background-color: transparent;
    border-radius: 8px;
    margin: 0px !important;
    font-size: 18px;
    font-weight: 700;
    height: 45px;
    padding: 10px !important;
    width: 100%;
}

.b-color {
    border-radius: 9px !important;
    border: 1px solid #e0e0e0 !important;

}

.hidden-input::placeholder {
    color: #565656;
    font-size: 18px;
    font-weight: 500;
}

/* Form Section */
.form-section {
    position: relative;
    padding: 0px 20px 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative Pattern */
.decorative-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 40px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 40px);
    opacity: 0.5;
}

.form-content {
    background-color: #FFFFFF;
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 39px;
    padding: 15px 15px 0px 15px;
}

/* Active button style */
#flightTypeGroup .btn.active {
    background-color: #BA0C2F;
    color: #fff;
    border-radius: 8px !important;
}

/* Typography */
.main-title {
    color: white;
    font-size: 7rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Trip Type Radio Buttons */
.trip-type-section {
    display: flex;
    justify-content: start;
    margin-top: 10px;
    margin-left: 15px;
    margin-bottom: 15px;
}


.btn-group {
    display: flex;
    gap: 15px;
}

.custom-radio-group {
    display: flex;
    gap: 55px;
    justify-content: center;
}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.custom-radio input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.custom-radio input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.radio-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Form Labels */
.form-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Custom Input Fields */
.custom-input {
    background-color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: white;
}

/* Search Button */
.btn-search {
    background-color: #BA0C2F;
    border: none;
    border-radius: 25px;
    padding: 12px 53px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-left: 10px;
}


/* Image Section */
.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Traveliing-Type */

.booking-model {

    background-color: #CA7586;
    border-radius: 50px;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    /* Center the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
}

.travel-option-item {
    display: flex;
    align-items: center;
    padding: 8px 0px;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: #ccc;
    white-space: nowrap;
    flex-grow: 1;
    justify-content: center;
    min-width: 120px;
}

.travel-option-item.active {
    background-color: #fff;
    /* White background for active item */
    color: #c72b2b;
    /* Red text for active item */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Shadow for active item */
}

.travel-option-item .icon {
    width: 28px;
    /* Icon size */
    height: 28px;
    background-color: #D9D9D9;
    /* Red background for icon */
    border-radius: 50%;
    /* Circular icon background */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    /* Space between icon and text */
    transition: background-color 0.3s ease;
}

.travel-option-item.active .icon {
    background-color: #D9D9D9;

}

.travel-option-item .icon img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.travel-option-item:not(.active) .icon {
    background-color: #D9D9D9;

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-model {
        border-radius: 20px;
        padding: 6px;
    }

    .travel-option-item {
        padding: 6px 15px;
        font-size: 0.9rem;
        margin: 3px;
        min-width: unset;
        /* Remove min-width on smaller screens */
        flex-basis: auto;
        /* Let items determine their own width */
        flex-grow: 1;
        /* Allow to grow */
    }

    .travel-option-item .icon {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }

    .travel-option-item .icon img {
        width: 16px;
        height: 16px;

        border-radius: 100%;
    }
}

@media (max-width: 576px) {
    .travel-option-item {
        flex-basis: 45%;
        /* Two items per row */
    }

    .booking-model {
        flex-direction: row;
        /* Ensure row direction even if items wrap */
        justify-content: space-around;
        /* Distribute items */
        align-items: center;
        padding: 5px;
    }
}

@media (max-width: 400px) {
    .travel-option-item {
        flex-basis: 90%;
        /* One item per row */
        margin: 5px 0;
        /* More vertical space */
    }

    .booking-model {
        border-radius: 15px;
        padding: 5px;
    }
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
    .main-title {
        font-size: 8rem;
    }

    .subtitle {
        font-size: 2rem;
    }
}

/* Tablets */
@media (max-width: 991px) {

    .form-section {
        min-height: auto;
        padding: 0px 30px 60px 30px;
    }


    .image-section {
        min-height: auto;
        padding: 60px 30px 0px 30px;
    }

    /* .main-title {
            font-size: 4rem;
        } */

    .image-section {
        order: 2;
    }

    .form-section {
        order: 1;
    }

    .travel-image {
        max-width: 80%;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .form-section {
        padding: 0px 20px 40px 20px;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .custom-radio-group {
        gap: 15px;
        flex-wrap: wrap;
    }

    .radio-label {
        font-size: 0.9rem;
    }

    .custom-input {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .btn-search {
        padding: 10px 40px;
        font-size: 1rem;
        min-width: 160px;
    }

    .decorative-pattern {
        width: 50px;
    }

    .form-content {
        padding: 0 10px;
    }

    .travel-image {
        max-width: 90%;
    }
}

/* Small Mobile Devices */
@media (max-width: 575px) {
    .main-title {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .custom-radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .custom-input {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .btn-search {
        width: 100%;
        max-width: 300px;
    }

    .decorative-pattern {
        width: 30px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .main-title {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 0px 15px 30px 15px;
    }

    .image-section {
        padding: 30px 15px 0px 15px;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {

    .form-section {
        min-height: auto;
        padding: 0px 20px 30px 20px;
    }

    .image-section {
        min-height: auto;
    }

    .main-title {
        font-size: 7rem;
        margin-bottom: 10px;
    }

    .mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-4 {
        margin-bottom: 1rem !important;
    }
}

.my-auto {
    margin: auto 0px;
}

/* Hero-section-End */

/* Currency Swiper*/
/* .currency-section {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    overflow: hidden;
    position: relative;
} */

.currency-fixed-logo {

    flex: 0 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 2;
    cursor: pointer;
}



/* Logo Slider */

.img_slider {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 18px 16px;
    /* optional spacing around the row */
}

/* container holds viewport + controls */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
}

/* visible area for the slide - we measure this for "itemsInView" */
.carousel-viewport {
    flex: 1 1 auto;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    align-items: center;
    gap: 35px;
    /* space between logos */
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    padding-left: 10px;
    /* optional left padding so logos don't touch the edge */
}

.carousel-item-custom {
    flex: 0 0 auto;
    width: 120px;
    /* logo box width */
    text-align: center;
}

.carousel-item-custom img {
    max-width: 100%;
    height: auto;
    filter: grayscale(0%);
    opacity: 0.8;
    transition: opacity 0.2s ease;
    display: block;
    margin: 0 auto;
}

.carousel-item-custom img:hover {
    opacity: 1;
}

/* controls wrapper (keeps buttons together at the right) */
.carousel-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 8px;
}

.carousel-control-prev-custom,
.carousel-control-next-custom {
    background-color: #E5F0F5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 6px;
    box-shadow: none;
    transition: background 0.25s ease;
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
    background: linear-gradient(to bottom, #0077ED, #7BF9D3);
}

.carousel-control-prev-custom svg path:hover,
.carousel-control-next-custom svg path:hover {
    fill: #ffffff;
}

/* smaller screens */
@media (max-width: 768px) {
    .carousel-slide {
        gap: 15px;
    }

    .carousel-item-custom {
        width: 100px;
    }

    .carousel-control-prev-custom,
    .carousel-control-next-custom {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 576px) {
    .img_slider {
        padding: 10px 8px;
    }

    .carousel-item-custom {
        width: 80px;
    }

    .carousel-controls {
        display: none;
    }


}

/* Package Cards */



.futura-md-bold {
    font-family: "Futura Md BT", sans-serif;
    font-weight: 700;
}


.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.card-container {
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}


.card-img-top {
    width: 90%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    display: inline-block;

}

.card-body {
    margin-top: 5px 0px 0px 2px;
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    color: #C00000;
    margin-bottom: 0.5rem;
}

.card-text {

    margin-bottom: 1rem;
    font-size: 15px;
    max-width: 100%;
    color: #000000;
    font-weight: 400;
}


.view-trip-details-btn:hover {

    color: white !important;
    background: #ba0c2f !important;
    border: none !important;
    outline: none !important;

}



.select-btn:active {
    color: white !important;
    background: linear-gradient(to bottom, #C00000, #f38a8aff) !important;
    border: none !important;
    outline: none !important;
}

.select-btn:focus {
    color: white !important;
    background: linear-gradient(to bottom, #C00000, #f38a8aff) !important;
    border: none !important;
    outline: none !important;
}

.select-btn:hover {

    color: white !important;
    background: linear-gradient(to bottom, #C00000, #f38a8aff) !important;
    border: none !important;
    outline: none !important;

}

.trip-btn {
    border-radius: 8px !important;
}

.trip-btn:focus {
    border: none !important;
    outline: none !important;

}

.add-trip-btn {
    background: #ba0c2f !important;
    color: white;
}





.product-details-btn {
    position: absolute;
    bottom: 10px;
    /* Adjust as needed for desired vertical position */
    right: 10px;
    display: inline-flex;
    align-items: center;
    color: #242323ff;
    /* Red color for consistency with image */
    font-weight: 400;
    border-radius: 5px;
    background-color: #eee;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    padding: 4px 8px;


}

.product-details-btn:hover {
    color: #a71d2a;
}

.product-details-btn svg {
    margin-left: 0.5rem;
    transition: transform 0.2s ease-in-out;
    color: #990514ff;
}

.product-details-btn:hover svg {
    transform: translateX(5px);
}

/* Specific image styling based on provided image */
.card-container.international-travel .card-img-top {
    background-image: url('../images/product_images/international-travel.jpg');
    /* Placeholder - Replace with actual image URL */
    background-size: cover;
    background-position: center;
}

.card-container.home-trip .card-img-top {
    background-image: url('../images/product_images/home-trip.jpg');
    /* Placeholder - Replace with actual image URL */
    background-size: cover;
    background-position: center;
}

.card-container.student-trip .card-img-top {
    background-image: url('../images/product_images/student-travel.jpg');
    background-size: cover;
    background-position: center;
}

.card-container.hajj-umrah .card-img-top {
    background-image: url('../images/product_images/hajjNUmrah.jpg');
    background-size: cover;
    background-position: center;
}

.card-container.ziarat .card-img-top {
    background-image: url('../images/product_images/ziarat.png');
    background-size: cover;
    background-position: center;
}

.card-container.domestic-travel .card-img-top {
    background-image: url('../images/product_images/domestic travel.png');
    background-size: cover;
    background-position: center;
}

/* Adjust card height for mobile if needed, though object-fit covers fixed height well */
@media (max-width: 767.98px) {
    .card-img-top {
        height: 200px;
    }
}

/* Book Hotel Section */

.py-100 {
    padding: 100px 0px;
}

.cards-details {
    gap: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.content {
    flex: 1;
    max-width: 600px;
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.subheading {
    font-size: 30px;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 50px;
    font-weight: 400;
}

.button-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.btn {
    /* padding: 16px 36px; */
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    background-color: #D9D9D9;
    color: black;
}

.btn-primary {
    color: white;
    background: #ba0c2f;
}

.btn-primary:hover {
    color: white !important;
    background: #ba0c2f !important;
    border: none !important;
    outline: none !important;

}

.btn-secondary {
    background-color: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.btn-secondary:hover {
    background: #ba0c2f;
    color: white;
}

.images-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
    height: 600px;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-card:first-child {
    grid-column: 2;
    grid-row: 1;
}

.image-card:nth-child(2) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.image-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 18px;
}

.star {
    color: #dc2626;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .content {
        text-align: center;
        max-width: 100%;
    }

    .button-group {
        justify-content: center;
    }

    .images-grid {
        max-width: 600px;
        height: 500px;
    }

    .heading {
        font-size: 48px;
    }

}

@media (max-width: 768px) {

    .heading {
        font-size: 36px;
    }

    .subheading {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .images-grid {
        height: 400px;
        gap: 15px;
    }

    .rating-badge {
        padding: 8px 16px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }

    .cards-details {
        gap: 30px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

}


/* Details Sections */

.details {
    background: linear-gradient(to bottom, #BA0C2F, #d37070ff);

}

.main-title h1 {

    font-size: 48px;
    font-weight: 700;
    color: #1e1e1e;
    text-align: center;
    padding: 40px 20px;
    border-radius: 8px 8px 0 0;
    letter-spacing: 2px;
    margin-top: 30px;
    font-family: Raleway;
}

.details-tag {
    font-size: 24px;
    font-weight: 500;
    line-height: 52px;
    color: linear-gradient(to bottom, #C00000, #FFFFFF);

}

.flip_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    margin-bottom: 10px;
    border-radius: 0 0 8px 8px;
}

.flip_card {
    background-color: #fff;
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 calc(33.333% - 40px);
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flip_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.flip_card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.flip_card h2 {
    font-size: 1.5em;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.flip_card p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;

}

.details-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 5px;
    transition: color 0.3s ease;
    color: #BA0C2F;
}

.details-button .arrow {
    margin-left: 10px;
    transition: background-color 0.3s ease;
}



@media (max-width: 992px) {
    .flip_card {
        flex: 1 1 calc(50% - 30px);

    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .flip_cards {
        padding: 30px 0;
    }

    .flip_card {
        flex: 1 1 90%;
        max-width: 400px;
    }

    .flip_card h2 {
        font-size: 1.3em;
    }

    .flip_card p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 15px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .flip_cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .flip_card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .flip_card img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 375px) {
    .flip_cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }

    .flip_card {
        flex: 1 1 100%;
        max-width: 100%;
        /* take full width of container */
    }
}

/*Notification Section */

.cards-notification-heading {
    gap: 30px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cards-section {
    gap: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-section {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background-image: url('/coverage/assets/images/product_images/Plane.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 8px;
    overflow: hidden;

}

.form-container {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
    background: white;
    padding: 0px 0px 0px 10px;
    border-radius: 10px;
    max-width: 396px;
}

.submit-button {
    padding: 18px;
    background-color: #c41e1e;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.submit-button:hover {
    background-color: #a01818;
}

.submit-button:active {
    background-color: #8a1414;
}

@media (max-width: 768px) {
    .newsletter-section {
        height: 500px;
        padding: 20px;
    }

    .heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .form-container {
        flex-direction: column;
        border-radius: 8px;
    }

    .email-input {
        border-radius: 8px 8px 0 0;
    }

    .submit-button {
        border-radius: 0 0 8px 8px;
        padding: 16px;
    }
}

/* Book Car Section */

.cards-notification {
    gap: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.book-car-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.car-image {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #dc2626;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 16px;
}

/* Weather Card */

.pt-100 {
    padding-top: 100px;
}

.notification-header {
    margin-bottom: 46px;
}

.notification-header h1 {
    font-size: 29px;
    font-weight: 600;
    color: #2c3e50;
}

.weather-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: white;
    position: relative;
    min-height: 510px;
}

.weather-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.weather-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.weather-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.weather-location {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.weather-time {
    font-size: 13px;
    opacity: 0.9;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.temperature {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.weather-icon {
    font-size: 48px;
}

.weather-description {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.weather-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.weather-detail-label {
    opacity: 0.8;
}

.weather-detail-value {
    font-weight: 600;
}

@media (max-width: 768px) {


    .notification-header h1 {
        font-size: 20px;
    }

}


/* --- Available Flights Section --- */

#availableFlightsSection {
    background: white;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;


}

.section-title {
    font-weight: bold;
    color: #333;
    font-size: 1.5rem;
}

.flight-option-card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
}

.airline-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    padding-bottom: 5px;
}

.airline-name {
    font-weight: bold;
    color: #333;
}

.flight-times-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.flight-time {
    font-weight: bold;
    font-size: 1.2em;
}

.airport-code {
    color: #6c757d;
    font-size: 0.9em;
}

.flight-duration {
    flex-grow: 1;
    /* Allows it to take up available space */
    text-align: center;
    position: relative;
    padding: 0 15px;
    /* Space for the line */
    min-width: 120px;
    /* Ensure space for duration and line */
}

.flight-duration .duration-text {
    font-size: 0.9em;
    color: #495057;
}

.flight-line {
    border-top: 1px dashed #ced4da;
    width: 80%;
    /* Adjust line width */
    margin: 5px auto;
}

.flight-type {
    font-size: 0.8em;
    color: #6c757d;
}

.price-section .price {
    font-weight: bold;
    color: #dc3545;
    /* Red */
    font-size: 1.3em;
    margin-right: 6px;
}

.price-section .per-traveler {
    font-size: 0.75em;
    color: #6c757d;
}

/* --- Trip Details Section --- */
.flight-detail-line {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.flight-detail-line>div {
    flex-basis: auto;
    /* Allow content to dictate width */
    margin: 5px 10px;
    /* Spacing between time/airport and icon */
}

.flight-detail-line .flight-time-lg {
    font-weight: bold;
    font-size: 1.3em;
}

.flight-detail-line .flight-icon-lg {
    font-size: 1.8em;
    color: #dc3545;
    transform: rotate(90deg);
    /* Rotate plane icon */
    margin: 0 15px;
}

.segment-card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
    background-color: #fcfcfc;
}

.segment-header {
    font-weight: bold;
    color: #333;
}

.fare-option-card {
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9ecef;
}

.fare-logo-name img {
    max-width: 50px;
    /* Adjust logo size */
    height: auto;
    object-fit: contain;
}

.fare-price {
    font-weight: bold;
    color: #dc3545;
    font-size: 1.1em;
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .flight-type-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .flight-type-tabs .btn {
        margin-bottom: 10px;
    }

    .flight-booking-card .row>div {
        margin-bottom: 10px;
    }

    .flight-booking-card .row.align-items-center>div {
        text-align: center !important;
        /* Center content like dropdowns, widgets */
    }

    .flight-booking-card .form-check {
        text-align: center !important;
    }

    .flight-booking-card .weather-widget,
    .flight-booking-card .currency-widget {
        margin: 10px auto;
    }

    .flight-times-details {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .flight-times-details>div {
        width: 100%;
        margin-bottom: 10px;
    }

    .flight-duration {
        order: -1;
        /* Move duration to the top for better mobile flow */
        text-align: left;
        padding-left: 0;
        margin-bottom: 15px;
    }

    .flight-line {
        width: 100%;
        margin-left: 0;
    }

    .price-section {
        text-align: left !important;
        margin-top: 10px;
    }

    .flight-detail-line {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .flight-detail-line .flight-icon-lg {
        margin: 15px 0;
    }

    .fare-option-card .card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .fare-price-select {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}



@media (max-width: 1023px) {

    .add-btn {
        margin-top: 16px !important;
        margin-left: 15px;
    }

}

.hidden-section {
    display: none;
}

/* .currency-box {
    position: relative;
    background: #fff url('../images/partners-logo/hbl_exchange.png') no-repeat right 10px bottom 10px;
    background-size: 50px auto;
    border-radius: 10px;
    padding: 10px 10px 25px 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} */
/* ================================
   🌐 Currency Section Container
===================================*/
.currency-section {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 10px 15px;
    /* overflow: hidden; */
}

/* Fixed Logo (e.g. Bank Logo) */
.currency-fixed-logo {
    flex: 0 0 auto;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-fixed-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Swiper Carousel */
.currencyCarousel {
    flex: 1;
    overflow: hidden;
}

/* Swiper basics */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}

/* ================================
   💳 Simple Currency Card (Fixed)
===================================*/
.currency-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 140px;
    transition: transform 0.2s ease;
}

.currency-box:hover {
    transform: translateY(-3px);
}

/* Flag */
.flag-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text area */
.currency-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

/* Currency symbol (e.g., USD, EUR) */
.currency-info h6 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
    text-transform: uppercase;
}

/* Prices (Sell/Buy) below text, smaller font */
.rate-values {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
    line-height: 1.2;
}

.rate-values span {
    font-size: 13px;
    color: #555;
}

.rate-values .sell {
    color: #d9534f;
    /* Red-ish for Sell */
}

.rate-values .buy {
    color: #5cb85c;
    /* Green-ish for Buy */
}

/* ================================
   📱 Responsive Design
===================================*/
@media (max-width: 768px) {
    .currency-section {
        flex-direction: column;
        text-align: center;
    }

    .currency-fixed-logo {
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .currencyCarousel {
        width: 100%;
        margin-top: 10px;
    }

    .currency-box {
        justify-content: center;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .flag-circle {
        width: 30px;
        height: 30px;
    }

    .currency-info h6 {
        font-size: 14px;
    }

    .rate-values {
        font-size: 12px;
    }

    .currency-fixed-logo img {
        height: 45px;
    }
}

/* Currency Exchange Dropdpown */

/* .banner-container {
        position: relative;
        width: 280px;
        margin: 2px 0px;
    } */

.banner-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 25px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.banner-toggle:hover {
    border-color: #ccc;
}

.banner-toggle.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.banner-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.banner-menu {

    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;

}


.banner-menu.show {
    display: block;
}



.banner-container {
    position: absolute;
    width: 280px;
    margin: 2px 0px;
    top: 70px;
    left: 0;
    z-index: 999;
    padding: 10px 15px
}

.currency-section {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    position: relative;
}

.flight-class-item:hover {
    background-color: #cd2245;
    color:#eee;
    cursor: pointer;
}




/* --- Trip Details Section --- */
.flight-detail-line {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.flight-detail-line>div {
    flex-basis: auto;
    /* Allow content to dictate width */
    margin: 5px 10px;
    /* Spacing between time/airport and icon */
}

.flight-detail-line .flight-time-lg {
    font-weight: bold;
    font-size: 1.3em;
}

.flight-detail-line .flight-icon-lg {
    font-size: 1.8em;
    color: #dc3545;
    transform: rotate(90deg);
    /* Rotate plane icon */
    margin: 0 15px;
}

.segment-card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
    background-color: #fcfcfc;
}

.segment-header {
    font-weight: bold;
    color: #333;
}

.fare-option-card {
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9ecef;
}

.fare-logo-name img {
    max-width: 50px;
    /* Adjust logo size */
    height: auto;
    object-fit: contain;
}

.fare-price {
    font-weight: bold;
    color: #dc3545;
    font-size: 1.1em;
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .flight-type-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .flight-type-tabs .btn {
        margin-bottom: 10px;
    }

    .flight-booking-card .row>div {
        margin-bottom: 10px;
    }

    .flight-booking-card .row.align-items-center>div {
        text-align: center !important;
        /* Center content like dropdowns, widgets */
    }

    .flight-booking-card .form-check {
        text-align: center !important;
    }

    .flight-booking-card .weather-widget,
    .flight-booking-card .currency-widget {
        margin: 10px auto;
    }

    .flight-times-details {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .flight-times-details>div {
        width: 100%;
        margin-bottom: 10px;
    }

    .flight-duration {
        order: -1;
        /* Move duration to the top for better mobile flow */
        text-align: left;
        padding-left: 0;
        margin-bottom: 15px;
    }

    .flight-line {
        width: 100%;
        margin-left: 0;
    }

    .price-section {
        text-align: left !important;
        margin-top: 10px;
    }

    .flight-detail-line {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .flight-detail-line .flight-icon-lg {
        margin: 15px 0;
    }

    .fare-option-card .card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .fare-price-select {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}



@media (max-width: 1023px) {

    .add-btn {
        margin-top: 16px !important;
        margin-left: 15px;
    }

}

.hidden-section {
    display: none;
}

#custom-modal .modal-body {
    max-height: 75vh;
    overflow-y: auto;
}

.banner-menu {
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
    overflow: scroll;
    max-height: 350px;
    border-bottom: 1px solid;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.banner-menu{
width: 75%;
}
.branch-class-item{
font-size: 12px !important;
}


.branch-class-item:hover{


    background-color: #cd2245 !important;
    -webkit-text-fill-color: #eee !important;
}


