*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
line-height:1.7;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#111;
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:700;
color:#d4af37;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:500;
}

.hero{
height:700px;
background:url('images/airportlimo.jpg') center center/cover;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
}

.hero-content{
position:relative;
z-index:1;
color:#fff;
}

.hero h1{
font-size:55px;
margin-bottom:15px;
}

.hero p{
font-size:24px;
margin-bottom:30px;
}

.btn{
background:#d4af37;
padding:15px 35px;
color:#fff;
text-decoration:none;
border-radius:5px;
display:inline-block;
}

section{
padding:80px 0;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:40px;
color:#111;
}

.about p{
max-width:900px;
margin:auto;
text-align:center;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.feature{
padding:30px;
text-align:center;
box-shadow:0 0 15px rgba(0,0,0,.1);
}

.fleet-gallery{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

/* Mobile */
@media (max-width:768px){
    .fleet-gallery{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:220px;
    }
}

.fleet-card{
box-shadow:0 0 15px rgba(0,0,0,.1);
overflow:hidden;
border-radius:10px;
}

.fleet-card img{
width:100%;
height:250px;
object-fit:cover;
}

.fleet-card-content{
padding:20px;
}

.booking{
background:#f8f8f8;
}

.booking form{
max-width:800px;
margin:auto;
display:grid;
gap:15px;
}

.booking input,
.booking textarea,
.booking select{
padding:15px;
border:1px solid #ddd;
border-radius:5px;
}

.booking button{
background:#d4af37;
color:#fff;
border:none;
padding:15px;
font-size:18px;
cursor:pointer;
border-radius:5px;
}



body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
}

/* Container */
.containerform {
    max-width: 750px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Heading */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

/* Form */
.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

input, textarea, select {
    width: 100%;
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

input:focus, textarea:focus, select:focus {
    border-color: #007BFF;
    outline: none;
}

/* Row layout */
.row {
    display: flex;
    gap: 12px;
}

.row .form-group {
    flex: 1;
}

/* Button */
button {
    width: 100%;
    padding: 13px;
    background: #007BFF;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }
}




.contact{
text-align:center;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
z-index:999;
}

.whatsapp img{
width:60px;
}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

nav{
display:none;
}

}