        @media (max-width: 991.98px) {
            .imges {
                width: 150px;
            }
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-collapse {
            flex-grow: 0 !important;
        }

        .navbar-nav {
            flex-direction: row;
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                display: none;
            }

            .navbar-collapse.show {
                display: flex;
                flex-direction: column;
                text-align: center;
            }
        }

        /* Flight Search Container */
        .flight-search-container {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            width: 900px;
            /* max-width: 95%; */
            padding: 0;
        }

        .trip-type-tabs {
            display: flex;
            width: fit-content;
            border-radius: 8px 0 0 0;
            overflow: hidden;
        }

        .trip-type-tabs .tab {
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
            background-color: #e0e0e0;
            color: #555;
            transition: background-color 0.3s;
            border-right: 1px solid #ccc;
            text-transform: uppercase;
        }

        .trip-type-tabs .tab:last-child {
            border-right: none;
        }

        .trip-type-tabs .tab.round-trip {
            background-color: #f8f8f8;
            color: #333;
        }

        .trip-type-tabs .tab.one-way {
            background-color: white;
            color: #333;
            border-bottom: 2px solid transparent;
        }

        .trip-type-tabs .tab.active {
            background-color: white;
            color: #333;
            position: relative;
            z-index: 10;
        }

        .flight-details-form {
            padding: 20px;
            padding-top: 10px;
            position: relative;
        }

        .input-group {
            display: flex;
            /* margin-bottom: 20px; */
            gap: 10px;
            align-items: flex-end;
        }

        .input-group.origin-destination-group {
            margin-bottom: 30px;
        }

        .input-field {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .input-field label {
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .input-box {
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 10px 15px;
            background-color: white;
            transition: border-color 0.2s;
            height: 50px;
            box-sizing: border-box;
        }

        .input-field.origin .input-box,
        .input-field.destination .input-box {
            border: none;
            border-bottom: 1px solid #ccc;
            padding: 0;
            height: auto;
            align-items: flex-start;
        }

        .input-box .icon {
            font-size: 20px;
            margin-right: 10px;
            color: #1976D2;
            line-height: 1;
        }

        .input-field.origin .icon,
        .input-field.destination .icon {
            font-size: 24px;
            margin-top: 8px;
            color: #333;
        }

        .input-box .text-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .input-box input[type="text"] {
            border: none;
            outline: none;
            font-size: 14px;
            color: #333;
            width: 100%;
            padding: 0;
            background: transparent;
        }

        .input-box input::placeholder {
            color: #aaa;
        }

        .input-field.origin,
        .input-field.destination {
            flex: 4;
        }

        .input-field.origin .text-content .label-text,
        .input-field.destination .text-content .label-text {
            font-weight: bold;
            font-size: 16px;
            color: #333;
        }

        .input-field.origin input,
        .input-field.destination input {
            font-size: 14px;
            color: #666;
            margin-top: 2px;
        }

        .swap-button {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            color: #666;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-bottom: 20px;
        }

        .input-field.departure-date,
        .input-field.return-date,
        .input-field.travelers {
            flex: 2;
        }

        .input-box.date-selector .select-text {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .input-box.traveler-selector .traveler-count {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .input-box.traveler-selector .traveler-class {
            font-size: 14px;
            color: #666;
            font-weight: normal;
        }

        .ntsearch-button {
            flex: 3;
            background-color: #f04426;
            color: white;
            border: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.2s;
            display: flex;
            justify-content: center;
            align-items: center;
            /* gap: 10px; */
            height: 60px;
        }

        .ntsearch-button:hover {
            background-color: #f04426;
        }

        .ntsearch-button .icon {
            font-size: 18px;
        }

        .card {
            border: none;
            transition: transform 0.2s;
        }

        .card-img-top {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .card:hover {
            transform: scale(1.05);
        }