*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Arial',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
color:#333;
background:#fff;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

a{
text-decoration:none;
color:inherit;
}


/* HEADER */

.header{
position:sticky;
top:0;
background:white;
z-index:999;
box-shadow:0 2px 15px rgba(0,0,0,.1);
}

.nav-container{
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
}


.logo{
font-size:28px;
font-weight:700;
color:#0b4f8a;
}

.logo i{
color:#ff9800;
margin-right:8px;
}


nav{
display:flex;
gap:25px;
}


nav a{
font-weight:600;
transition:.3s;
}


nav a:hover{
color:#ff9800;
}


.btn{
display:inline-block;
background:#ff9800;
color:white;
padding:12px 25px;
border-radius:30px;
font-weight:bold;
transition:.3s;
}


.btn:hover{
background:#e68900;
}


.outline{
background:transparent;
border:2px solid white;
}



/* HERO */


.hero{

height:90vh;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),
url("../images/helicopter.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;

}


.hero-content{

width:90%;
max-width:900px;
margin:auto;
color:white;
text-align:center;

}


.hero h1{

font-size:55px;
line-height:1.2;
margin-bottom:20px;

}


.hero p{

font-size:20px;
margin-bottom:35px;

}


.hero-buttons{

display:flex;
justify-content:center;
gap:20px;

}




/* SECTIONS */


.section{

padding:80px 0;

}


h2{

text-align:center;
font-size:38px;
margin-bottom:20px;
color:#123;

}


.subtitle{

text-align:center;
margin-bottom:40px;

}




/* GRID */


.grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}



/* SERVICES */


.service-card{

padding:35px 25px;
text-align:center;
background:white;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
transition:.3s;

}


.service-card:hover{

transform:translateY(-10px);

}


.service-card i{

font-size:45px;
color:#ff9800;
margin-bottom:20px;

}


.service-card h3{

margin-bottom:10px;

}





/* ABOUT */


.about-preview{

padding:80px 0;
background:#f8f8f8;

}


.two-column{

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;

}


.about-box{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;

}


.about-box div{

background:white;
padding:25px;
text-align:center;
border-radius:10px;
box-shadow:0 5px 20px #ddd;

}


.about-box h3{

font-size:35px;
color:#ff9800;

}





/* PACKAGES */


.package-card{

background:white;
padding:35px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.1);

}


.package-card h3{

font-size:25px;
margin-bottom:20px;

}


.package-card li{

list-style:none;
padding:8px 0;

}


.package-card li:before{

content:"✓";
color:#ff9800;
margin-right:10px;

}


.package-card a{

display:inline-block;
margin-top:20px;
color:#ff9800;
font-weight:bold;

}


.featured{

background:#0b4f8a;
color:white;

}






/* WHY */


.why{

background:#0b4f8a;
color:white;

}


.why h2{

color:white;

}


.why .grid div{

text-align:center;

}


.why i{

font-size:40px;
color:#ff9800;

}





/* REVIEWS */


.review{

padding:30px;
background:white;
box-shadow:0 5px 20px #ddd;
border-radius:15px;

}




/* CONTACT */


.contact{

text-align:center;

background:#f5f5f5;

}


.contact p{

font-size:18px;
margin:10px;

}




/* FOOTER */


footer{

background:#111;
color:white;
text-align:center;
padding:40px;

}


footer h3{

font-size:30px;
margin-bottom:10px;

}