     /* flight search result */
     
     :root {
            --theme-color: #ae1f24;
        }
        .search-summary {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .search-summary .details {
            font-size: 16px;
            color: #000;
        }
        .search-summary .modify-btn {
            background: var(--theme-color);
            color: #fff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
        }
        .filters-sidebar {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .filters-sidebar h5 {
            font-size: 16px;
            margin-bottom: 15px;
            color: var(--theme-color);
        }
        .filters-sidebar .form-check-label {
            font-size: 14px;
        }
        .flight-result-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .flight-result-card .airline {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .flight-result-card .airline img {
            /* width: 40px; */
        }
        .flight-result-card .times {
            text-align: center;
        }
        .flight-result-card .times .departure, .flight-result-card .times .arrival {
            font-size: 18px;
            font-weight: 700;
        }
        .flight-result-card .duration {
            font-size: 14px;
            color: #6E7070;
        }
        .flight-result-card .price {
            text-align: right;
        }
        .flight-result-card .price h4 {
            font-size: 20px;
            color: var(--theme-color);
        }
        .flight-result-card .view-btn {
            background: var(--theme-color);
            color: #fff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
        }
        .badge-hot-deal {
            background: #ffcc00;
            color: #000;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 10px;
        }
        .badge-free-seat {
            background: #28a745;
            color: #fff;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 10px;
        }

        /* flight search */

        .flight-search-form {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 40px;
        }
        .flight-search-form .nav-tabs {
            border: none;
            margin-bottom: 20px;
        }
        .flight-search-form .nav-tabs .nav-link {
            border: none;
            color: #6E7070;
            font-weight: 500;
            padding: 10px 20px;
        }
        .flight-search-form .nav-tabs .nav-link.active {
            color: #ae1f24;
            border-bottom: 2px solid #ae1f24;
        }
        .flight-search-form .form-group {
            position: relative;
        }
        .flight-search-form .form-control {
            border: none;
            border-bottom: 1px solid #eee;
            border-radius: 0;
            padding: 10px 0;
            font-size: 15px;
            font-weight: 700;
            color: #000;
        }
        .flight-search-form .form-control:focus {
            box-shadow: none;
            border-bottom: 2px solid #ae1f24;
        }
        .flight-search-form .form-label {
            font-size: 12px;
            color: #6E7070;
            position: absolute;
            top: -15px;
        }
        .flight-search-form .special-fares {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .flight-search-form .special-fares .btn {
            background: #f0f0f0;
            color: #000;
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 12px;
        }
        .flight-search-form .special-fares .btn.active {
            background: #ae1f24;
            color: #fff;
        }
        .flight-search-form .protection {
            font-size: 12px;
            color: #6E7070;
            margin-top: 20px;
        }
        .flight-search-form .search-btn {
            background: #ae1f24;
            color: #fff;
            border-radius: 50px;
            padding: 10px 30px;
            font-size: 16px;
            font-weight: 600;
            display: block;
            margin: 20px auto 0;
            border: none;
            transition: all 0.3s ease;
        }
        .flight-search-form .search-btn:hover {
            background: #8c191d;
            transform: translateY(-2px);
        }
        .offers-section {
            margin-bottom: 60px;
        }
        .offers-section .nav-tabs {
            border: none;
            justify-content: center;
            margin-bottom: 20px;
        }
        .offers-section .nav-tabs .nav-link {
            color: #6E7070;
            font-weight: 500;
            padding: 10px 20px;
            border: none;
            transition: all 0.3s ease;
        }
        .offers-section .nav-tabs .nav-link.active {
            color: #ae1f24;
            border-bottom: 2px solid #ae1f24;
        }
        .offer-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .offer-card:hover {
            transform: translateY(-5px);
        }
        .offer-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .offer-card .card-body {
            padding: 20px;
            text-align: center;
        }
        .offer-card .card-title {
            font-size: 16px;
            font-weight: 700;
            color: #ae1f24;
        }
        .offer-card .card-text {
            font-size: 14px;
            color: #6E7070;
            margin-bottom: 15px;
        }
        .offer-card .btn {
            background: #ae1f24;
            color: #fff;
            border-radius: 20px;
            padding: 8px 20px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .offer-card .btn:hover {
            background: #8c191d;
        }
        .airline-partners {
            text-align: center;
            margin-bottom: 60px;
            background: #f8f9fa;
            padding: 40px 0;
            border-radius: 15px;
        }
        .airline-partners h2 {
            margin-bottom: 40px;
            color: #ae1f24;
        }
        .airline-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        .airline-logos img {
            height: 60px;
            object-fit: contain;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .airline-logos img:hover {
            transform: scale(1.1);
        }
        .offer-banner {
            display: none;
            margin-top: 20px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 20px;
            text-align: center;
        }
        .offer-banner.active {
            display: block;
        }
        .offer-banner img {
            width: 100%;
            max-height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }
        .offer-banner h3 {
            margin: 20px 0 10px;
            color: #ae1f24;
        }
        .offer-banner p {
            color: #6E7070;
        }
        .offer-banner .btn {
            background: #ae1f24;
            color: #fff;
            border-radius: 20px;
            padding: 10px 30px;
            font-size: 16px;
        }
    /* .gap-10 {
  gap: 10rem !important;
} */

/* .breadcumb-wrapperinner {
  padding: 25px 0 !important;
} */

.widget-area {
  padding-top: 50px !important;
  padding-bottom: 0px !important;
}


.hr-space {
     padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Default for Mobile & Tablets (up to 991px) */
.gap-10 {
  gap: 3rem !important;
}

/* Laptop / Notebook (992px to 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
  .gap-10 {
    gap: 10rem !important;
  }
}

/* Desktop (1400px and above) */
@media (min-width: 1400px) {
  .gap-10 {
    gap: 10rem !important;
  }
}


/* Fix DatePicker z-index and positioning */
.datepicker-popper {
  z-index: 9999 !important;
}

.react-datepicker {
  font-family: inherit;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.react-datepicker__day--selected {
  background-color: #ae1f24 !important;
}

/* In your main CSS file */
.z-index-high {
  z-index: 9999 !important;
}

.react-datepicker__triangle {
  z-index: 9999 !important;
}

.header-layout1 .currency-menu {
  max-width: 180px !important;
}