/*============================

AVWORTH AVIATION CONSULTING

=============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f6f8fc;
    color:#222;
    overflow-x:hidden;
}

:root{

    --primary:#2C2570;
    --secondary:#4B4B4B;
    --light:#F7F9FD;
    --white:#ffffff;
    --shadow:0 15px 35px rgba(0,0,0,.12);
    --radius:14px;

}

.container{

    width:90%;
    max-width:1250px;
    margin:auto;

}

section{

    padding:90px 0;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;

}

.section-title h2{

    margin-top:10px;
    font-size:42px;
    color:#222;

}

/*==================

LOADER

==================*/

#loader{

    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;

}

.plane-loader{

    width:80px;
    height:80px;
    border-radius:50%;
    border:4px solid #ddd;
    border-top:4px solid var(--primary);
    animation:spin 1s linear infinite;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:var(--primary);

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==================

HEADER

==================*/

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    transition:.4s;
    background:rgb(255 255 255) !important  ;
    backdrop-filter:blur(15px);padding: 15px 0 15px 0;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;

}

.logo img{

    width:180px;

}

nav ul{

    display:flex;
    gap:35px;

}

nav a{

    color:#2c2570;
    font-weight:500;
    transition:.35s;

}

nav a:hover{

    color:#9eb7ff;

}

.mobile-btn{

    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;

}

/*==================

BUTTONS

==================*/

.btn{

    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    box-shadow:var(--shadow);

}

.btn:hover{

    transform:translateY(-5px);

}

.btn2{

    background:transparent;
    border:2px solid #fff;
    margin-left:15px;

}

.btn2:hover{

    background:#fff;
    color:var(--primary);

}

/*==================

HERO

==================*/

.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:linear-gradient(rgba(12,18,45,.88),
    rgba(12,18,45,.88)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.hero-content span{

    color:#9ab5ff;
    letter-spacing:2px;
    font-weight:600;

}

.hero-content h1{

    color:#fff;
    font-size:60px;
    margin:20px 0;

}

.hero-content p{

    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;

}

.hero-image img{

    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,.4);

}

/*==================

ABOUT

==================*/

.about{

    background:#fff;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image img{

    border-radius:18px;
    box-shadow:var(--shadow);

}

.about-content h3{

    font-size:34px;
    color:var(--primary);
    margin-bottom:20px;

}

.about-content p{

    color:#555;
    line-height:1.9;
    margin-bottom:18px;

}

.about-boxes{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:35px;

}

.box{

    text-align:center;
    padding:25px;
    border-radius:15px;
    background:#f7f9fd;
    transition:.35s;
    box-shadow:0 10px 20px rgba(0,0,0,.05);

}

.box:hover{

    transform:translateY(-10px);

}

.box i{

    font-size:35px;
    color:var(--primary);
    margin-bottom:15px;

}

.box h4{

    font-size:17px;

}

/*========================

SERVICES

=========================*/

.services{

    background:var(--light);

}

.service-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.service-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-card img{

    height:230px;
    object-fit:cover;
    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card .content{

    padding:30px;

}

.service-card i{

    width:65px;
    height:65px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:20px;

}

.service-card h3{

    font-size:24px;
    color:var(--primary);
    margin-bottom:15px;

}

.service-card p{

    color:#666;
    line-height:1.8;

}

/*========================

WHY CHOOSE US

=========================*/

.why-us{

    background:#fff;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.why-card{

    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;

}

.why-card:hover{

    transform:translateY(-12px);

}

.why-card i{

    width:80px;
    height:80px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto;
    font-size:34px;
    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;
    color:var(--primary);

}

.why-card p{

    color:#666;
    line-height:1.8;

}

/*========================

PROCESS

=========================*/

.process{

    background:linear-gradient(135deg,#2C2570,#1c214e);
    color:#fff;

}

.process .section-title span{

    color:#9ab7ff;

}

.process .section-title h2{

    color:#fff;

}

.timeline{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.step{

    background:rgba(255,255,255,.08);
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);
    background:rgba(255,255,255,.15);

}

.step span{

    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    font-weight:700;
    font-size:22px;
    margin:auto auto 20px;

}

.step h3{

    margin-bottom:15px;
    font-size:24px;

}

.step p{

    color:#ddd;
    line-height:1.8;

}

/*========================

STATISTICS

=========================*/

.stats{

    background:#fff;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.stat{

    background:var(--light);
    border-radius:18px;
    text-align:center;
    padding:45px 20px;
    box-shadow:var(--shadow);

}

.stat h2{

    font-size:52px;
    color:var(--primary);
    margin-bottom:10px;

}

.stat p{

    color:#666;
    font-size:18px;

}

/*========================

CTA

=========================*/

.cta{

    background:linear-gradient(rgba(18,24,65,.92),
    rgba(18,24,65,.92)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;

}

.cta h2{

    font-size:48px;
    margin-bottom:20px;

}

.cta p{

    max-width:750px;
    margin:0 auto 35px;
    color:#ddd;
    line-height:1.9;

}

.cta .btn{

    background:#fff;
    color:var(--primary);

}

.cta .btn:hover{

    background:#dfe6ff;

}

/*========================

GALLERY

=========================*/

.gallery{

    background:var(--light);

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;

}

.gallery-grid img{

    height:260px;
    object-fit:cover;
    border-radius:18px;
    transition:.45s;
    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:scale(1.05);
    filter:brightness(.85);

}

/*========================

TESTIMONIALS

=========================*/

.testimonials{

    background:#fff;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.testimonial{

    background:var(--light);
    padding:40px;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.testimonial:hover{

    transform:translateY(-10px);

}

.testimonial i{

    font-size:40px;
    color:var(--primary);
    margin-bottom:20px;

}

.testimonial p{

    color:#555;
    line-height:1.9;
    margin-bottom:25px;

}

.testimonial h4{

    color:var(--primary);

}

.testimonial span{

    color:#777;
    font-size:14px;

}

/*========================

CONTACT

=========================*/

.contact{

    background:var(--light);

}

.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

}

.contact-info h3{

    color:var(--primary);
    font-size:32px;
    margin-bottom:20px;

}

.contact-info p{

    color:#666;
    line-height:1.8;
    margin-bottom:30px;

}

.info{

    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;

}

.info i{

    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;

}

form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);

}

form input,
form textarea{

    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-family:Poppins;
    outline:none;

}

form textarea{

    resize:none;

}

form button{

    border:none;
    cursor:pointer;

}

/*========================

MAP

=========================*/

.map iframe{

    width:100%;
    height:450px;
    border:0;

}

/*========================

FOOTER

=========================*/

footer{

    background:#10173d;
    color:#fff;
    text-align:center;
    padding:70px 20px;

}

.footer-logo{

    width:220px;
    margin:auto auto 25px;

}

footer p{

    color:#d5d5d5;
    line-height:1.8;
    max-width:700px;
    margin:auto;

}

.social{

    margin:35px 0;

}

.social a{

    width:50px;
    height:50px;
    border-radius:50%;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    margin:0 8px;
    transition:.35s;

}

.social a:hover{

    background:var(--primary);
    transform:translateY(-6px);

}

.copy{

    margin-top:30px;
    font-size:14px;

}

/*========================

BACK TO TOP

=========================*/

#topBtn{

    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    cursor:pointer;
    display:none;
    font-size:18px;
    box-shadow:var(--shadow);
    z-index:999;

}

/*========================

RESPONSIVE

=========================*/

@media(max-width:992px){

.hero-grid,
.about-grid,
.contact-grid{

grid-template-columns:1fr;

}

.timeline{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.about-boxes{

grid-template-columns:1fr;

}

.hero-content{

text-align:center;

}

.hero-image{

margin-top:40px;

}

.hero-content h1{

font-size:46px;

}

}

@media(max-width:768px){

header .container{

height:80px;

}

.mobile-btn{

display:block;

}

nav{

position:absolute;
top:80px;
left:-100%;
width:100%;
background:#18204d;
transition:.4s;

}

nav.active{

left:0;

}

nav ul{

flex-direction:column;
padding:30px;

}

.hero{

padding-top:130px;

}

.hero-content h1{

font-size:38px;

}

.section-title h2{

font-size:32px;

}

.timeline{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.service-grid{

grid-template-columns:1fr;

}

.btn{

display:block;
text-align:center;
margin-bottom:15px;

}

.btn2{

margin-left:0;

}

}

@media(max-width:500px){

.hero-content h1{

font-size:32px;

}

.section-title h2{

font-size:28px;

}

.contact-info h3{

font-size:26px;

}

.cta h2{

font-size:32px;

}

}