
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        body {
            background: url(../img/bg.jpg) no-repeat center center fixed;
            background-size: cover;
            height: 100vh;
            color: #fff;
        }
        header {
            width: 100%;
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            z-index: 99;
            box-shadow: 0 0 10px #000;
            background: rgba(0, 0, 0, 0.5);
        }
        #chk1 {
            display: none;
        }
        i {
            color: #fff;
            cursor: pointer;
        }
        header .logo {
            flex: 1;
            margin-left: 50px;
        }
        header .logo img {
            max-width: 50%;
            height: auto;
        }
        header .search-box {
            flex: 1;
            position: relative;
        }
        
        header ul {
            display: flex;
            justify-content: space-around;
            margin-right: 50px;
        }
        header ul li {
            list-style: none;
        }
        header ul li a {
            text-decoration: none;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            padding: 10px 15px;
        }
        header ul li a:hover {
            border-bottom: 2px solid cadetblue;
        }
        header .menu {
            font-size: 1.7em;
            display: none;
            margin-right: 50px;
        }
        @media(max-width: 1000px) {
            header ul {
                position: fixed;
                top: 80px;
                right: -115%;
                background: rgba(0, 0, 0, 0.7);
                height: calc(50vh - 50px);
                width: 100%;
                flex-direction: column;
                align-items: center;
                transition: right 0.5s linear;
                padding: 20px;
            }
            header .menu {
                display: block;
            }
            #chk1:checked ~ ul {
                right: 0px;
                left: 0px;
                
            }
            .search-box {
                display: none;
            }
        }
        /* General styles for menu icon and close icon */
            .menu-icon,
            .close-icon {
                color: #fff;
                cursor: pointer;
                font-size: 1em;
            }

        /* Initially, only show the menu icon */
            .close-icon {
                display: none;
        }

        /* When the checkbox is checked, hide the menu icon and show the close icon */
            #chk1:checked ~ .menu .menu-icon {
                display: none;
        }

            #chk1:checked ~ .menu .close-icon {
                display: block;
        }

        /* New Styles for Container and Sections */
.container1 {
    padding: 8px;
    margin-top: 120px; /* Adjust based on header height */
    background-image: url('../img/airplane.jpg');
    background-size: cover;
    padding-bottom: 280px;
}

.containersection {
    background-image: url('');
    background-size: cover;
    padding: 1rem; /* Reduced padding */
    margin-top: 5px; /* Reduced margin */
    border-radius: 7px;
}

.section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Reduced gap between flex items */
    margin: 0; /* Removed margin to minimize space */
    margin-top: 1px;
    justify-content: center;
    align-items: center;
}

.section .flex-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    padding: 15px; /* Reduced padding */
    border-radius: 0; /* Changed from 'none' to '0' */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 280px; /* Ensures items are not too small */
}

.section .flex-item:nth-child(even) {
    background: rgba(240, 240, 240, 0.8);
}

/* Card Container */
.link-container {
    display: flex;
    justify-content: center;
    padding: 10px; /* Reduced padding */
    background-color: rgba(0, 0, 0, 0.8);
}

.link-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust card size for smaller screens */
    gap: 5px; /* Reduced gap between cards */
    width: 100%;
    max-width: 1000px; /* Adjust max width if needed */
}

.card {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #000; /* Black text color for better visibility */
    border-radius: 8px;
    border: 2px solid #ddd; /* Border for each card */
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center; /* Center align text */
    background-color: white;
    padding: 5px; /* Reduced padding inside the card */
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6); /* Glowing effect */
}

.card:hover {
    transform: scale(1.03); /* Slightly reduced scale for mobile */
    box-shadow: 0 0 16px rgba(255, 215, 0, 1), 0 0 16px rgba(0, 0, 0, 0.3);
}

.image-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if the image height is larger */
    height: 80px; /* Reduced height for mobile screens */
}

.card img {
    max-width: 40px; /* Smaller image size for mobile screens */
    max-height: 100%; /* Ensure the image fits within container */
    object-fit: contain; /* Maintain aspect ratio */
}

.card-content {
    padding: 2px; /* Reduced padding inside the content area */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out the content evenly */
    height: 100%; /* Ensure full height for flex layout */
}

.card-box {
    background: #fff; /* Background color for text box */
    color: #000; /* Text color */
    padding: 5px; /* Reduced padding inside the box */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
    min-height: 90px; /* Minimum height to ensure uniform size */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.card-text {
    font-size: 12px; /* Smaller font size for mobile screens */
    font-weight: bold;
    margin: 0;
}

.card-description {
    font-size: 8px; /* Smaller font size for mobile screens */
    margin: 2px 0 0; /* Reduced margin */
}

@media (max-width: 768px) {
    .link-card {
        grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
        gap: 5px; /* Further reduced gap between cards */
    }

    .card {
        max-width: 100%; /* Ensure cards fit within the screen width */
    }
}

        /* Mobile Styles */
        @media(max-width: 600px) {
            header {
                height: 60px;
            }
            header .logo img {
                width: 150px;
            }
            .search-box input {
                font-size: 14px;
                padding-right: 45px;
            }
            .search-box button {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            .section {
                flex-direction: column;
            }
            .popup-content {
                width: 95%;
                margin: 10% auto; /* Centered on screen */
            }
            .tab-content img.fixed-size {
                width: 100%; /* Make image responsive */
                height: 100%; /* Maintain aspect ratio */
            }
            
        }
.search-section {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 450px;
    max-width: 450px;
    margin: auto; /* Centering the section */
    position: relative;
}

.search-tag {
    display: inline-block; /* Keep inline display */
    font-family: "Source Sans Pro"; /* Font family */
    text-align: center; /* Text alignment */
    color: white; /* Text color */
    padding: 8px 12px; /* Padding */
    background: linear-gradient(to right, rgb(139, 120, 13), rgb(74, 64, 64)); /* Updated background */
    border-radius: 8px 8px 8px 0; /* Border radius */
    border: none; /* No border */
    position: absolute;
    top: -5px; /* Overlap with the form */
    left: -2px; /* Increased left margin */
    z-index: 1;
    box-shadow: 0px 1px 2px rgba(0, 51, 55, 0.3); /* Shadow */
}


.flight-icon {
    display: inline-block;
    animation: fly-right 2s infinite;
}

@keyframes fly-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(30px);
    }
}
/* Mobile Styles */
.arrow-icon {
    display: inline-block; /* Default for mobile */
}

/* Desktop Styles */
@media (min-width: 769px) { /* Adjust the min-width as needed */
    .arrow-icon {
        position: absolute; /* Position it absolutely */
        left: 50%; /* Center it horizontally */
        transform: translateX(-50%); /* Adjust for centering */
        font-weight: bold; /* Make it bold */
        font-size: 24px; /* Increase the size */
        margin-top: 0px; /* Adjust margin to position it vertically as needed */
    }
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .arrow-icon {
        display: none; /* Hide on mobile */
    }
}

/* Remaining CSS unchanged */
.search-section form {
    display: block;
    flex-direction: column;
    padding-top: 40px;
}

.search-section .input-group {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.search-section .input-group input,
.search-section .input-group select {
    flex: 1;
    margin: 0 10px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ccc;
}

.search-section button {
    background-color: #002855;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

/* Media query for mobile devices */
@media screen and (max-width: 600px) {
    .search-section {
        width: 100%;
        padding: 10px;
    }
    .search-section .input-group {
        flex-direction: column;
    }
    .search-section .input-group input,
    .search-section .input-group select {
        margin: 10px 0;
    }
    .search-section button {
        width: 100%;
    }
}


        .promo-section {
            background-color: rgba(0, 40, 85, 0.8);
            padding: 20px;
            color: white;
            border-radius: 10px;
            max-width: 400px;
            max-height: 225px;
            align-self: center;
        }
        .promo-section h2 {
            margin: 0 0 10px;
        }
        .promo-section p {
            margin: 0 0 20px;
        }
        .promo-section button {
            padding: 10px 20px;
            background-color: #C0C0C0;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .promo-section button:hover {
            background-color: #a9a9a9;
        }
        elite1 {
            background: linear-gradient(to right, rgb(139, 120, 13), rgb(74, 64, 64));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 12px;
            font-weight: bold;
        }
        .promo-section1 {
            background: url('img/comingsoon.png');
            background-color: rgba(255, 255, 255, 0.5);
            padding: 20px;
            color: white;
            border-radius: 10px;
            max-width: 400px;
            max-height: 225px;
            align-self: center;
        }
        /* Style for buttons */
        .tab-button {
            background-color: #ddd;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            float: left;
            margin: 0 5px;
            border-radius: 5px;
            text-align: center; /* Center text horizontally */
            display: inline-flex; /* Ensure button content is aligned */
            align-items: center; /* Vertically center content */
            text-decoration: none; /* Remove underline from button itself */
        }

        /* Style for button hover state */
        .tab-button:hover {
            background-color: #ccc;
        }

        /* Style for links inside buttons */
        .tab-button a {
            color: inherit; /* Inherit text color from the button */
            text-decoration: none; /* Remove underline */
            display: block; /* Ensure the link fills the button */
            width: 100%; /* Full width of the button */
            height: 100%; /* Full height of the button */
            line-height: normal; /* Adjust line height if needed */
        }

        /* Ensure visited link styles are inherited */
        .tab-button a:visited {
            color: inherit;
        }

        /* Ensure link styles on hover/focus are consistent */
        .tab-button a:hover,
        .tab-button a:focus {
            text-decoration: none; /* Remove underline on hover/focus */
        }


        .tab-content {
            padding: 20px;
            border: none;
            border-top: none;
            text-align: center;
            position: relative;
        }
        .tab-content img {
            max-width: 100%;
            height: auto;
        }
        .tab-content img.fixed-size {
            width: 982px;
            height: 551px;
        }
        .tab-button.active {
            background-color: #ccc;
        }
        .overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(192, 192, 192, 0.9);
            color: black;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            width: 50%;
            box-sizing: border-box;
        }
        /* contact Popup Modal Styles */
        .popup {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6); /* Black with opacity */
            padding: 20px;
            box-sizing: border-box;
        }

        .popup-content {
            background-color: #fff;
            margin: 10% auto; /* Centered on screen */
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            width: 90%; /* Responsive width */
            max-width: 475px;
        }

        .close-btn {
            color: black;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-btn:hover,
        .close-btn:focus {
            color: #555;
        }
        /* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: cadetblue;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the dropdown button color on hover */
.dropdown:hover .dropbtn {
    background-color: rgba(0, 0, 0, 0.8);
}

       
