/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('jet-fleet.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Adding Light Black Overlay on Entire Page */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Ensure content is above overlay */
body > * {
    position: relative;
    z-index: 1;
}

/* Header - Matches styles.css */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    max-width: 180px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Fleet Section */
.fleet-section {
    max-width: 1000px;
    margin: 120px auto 60px;
    text-align: center;
    padding: 20px;
}

.fleet-section h2 {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.fleet-section p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

/* Fleet Gallery */
.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.jet {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.jet:hover {
    transform: translateY(-5px);
}

.jet img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.jet h3 {
    font-size: 1.5em;
    color: #ffcc00;
}

.jet p {
    font-size: 1.1em;
    color: #ccc;
    margin-top: 5px;
}

.more-jets {
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    color: #ffcc00; /* Yellow color */
    text-align: center;
    margin-top: 20px;
}


  
    .whatsapp-btn{
position: fixed;
bottom: 25px;
right: 5px;
width: 55px;
height: 60px;
background: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 36px;
z-index: 9999;
text-decoration: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.whatsapp-btn:hover{
background:#20ba5a;
transform: scale(1.1);
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.0);
    margin-top: 60px;
    font-size: 1em;
    color: #fff;
}
