/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    /* font-family:'Poppins',sans-serif; */
     font-family: 'Sora', sans-serif;
    /* font-family: 'Hahmlet', serif; */
    background:#fff;
    overflow-x:hidden;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#004893;
    color:#fff;
    /* padding:8px 0; */
    padding: 3px 0;
    font-size:13px;
    font-family:'Poppins',sans-serif !important;
}

.top-left{
    display:flex;
    gap:25px;
    align-items:center;
}

.top-left span i{
    margin-right:8px;
}

.update-text{
    font-size:12px;
}

.top-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:12px;
}

.top-right a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.top-right a:hover{
    transform:translateY(-2px);
}

/* =========================
   MAIN HEADER
========================= */

.main-header{
    background:#fff;
    /* padding:16px 0; */
    padding: 8px 0;
    border-bottom:1px solid #eee;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-area img{
    width:78px;
}

.logo-area h3{
    font-size:15px;
    font-weight:700;
    color:#0b2c67;
    margin:0;
}

.header-right{
    display:flex;
    align-items:center;
    gap:16px;
}

.lang-switch{
    display:flex;
    align-items:center;
    gap:10px;
}

.lang-switch a{
    text-decoration:none;
    color:#222;
    font-size:14px;
    font-weight:500;
}

.lang-switch .active{
    color:#d50000;
}

.accessibility-btns{
    display:flex;
    gap:6px;
}

.accessibility-btns button{
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:#f2f2f2;
    font-size:13px;
    font-weight:600;
}

.active-btn{
    background:#d50000 !important;
    color:#fff;
}

.accessibility{
    border:none;
    background:#f3f3f3;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
}

.search-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    background:#fff;
    border:2px solid #d50000;
    color:#d50000;
    font-size:15px;
}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    position:relative;
    /* height:650px; */
    height: 550px;
    background-position: center !important;
    background-size: cover !important;
    /*background:url(../images/banner-background.png);*/
}

.hero-overlay{
    position:absolute;
    inset:0;
    /* background:rgba(0,0,0,0.45); */
    background: rgb(0 0 0 / 34%);
}

.hero-navbar {
    position: absolute;
    width: 70%;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media (max-width: 1200px) {
    .hero-navbar {
        width: 80% !important;
    }
}

@media (max-width: 992px) {
    .hero-navbar {
        width: 90% !important;
    }
}

@media (max-width: 768px) {
    .hero-navbar {
        width: 95% !important;
    }
}

@media (max-width: 576px) {
    .hero-navbar {
        width: 100%;
        top: 0;
    }
}

.hero-navbar .navbar{
    /* background: #FFFFFF1A; */
    background: #004793b9;
    /* background:rgba(17,32,63,0.95); */
    border-radius:60px;
    padding:12px 25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    border: 1px solid #fbfbfb2f;
}

.hero-navbar .nav-link{
    color:#fff;
    font-size:14px;
    font-weight:500;
    margin:0 10px;
    transition:0.3s;
}

.hero-navbar .nav-link:hover,
.hero-navbar .nav-link.active{
    color:#ffffff;
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content h1{
    /* font-size:57px; */
    font-size: 40px;
    font-weight:700;
    line-height:1.2;
    color:#fff;
    margin-bottom:30px;
    text-shadow:0 4px 10px rgba(0,0,0,0.4);
}

.hero-btn{
    border:none;
    background:#fff;
    color:#000;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:14px;
    transition:0.4s;
}

.hero-btn:hover{
    transform:translateY(-5px);
}

.hero-btn i{
    width:34px;
    height:34px;
    background:#0d1f44;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slider-dots{
    position:absolute;
    bottom:50px;
    display:flex;
    gap:10px;
    display: none;
}

.slider-dots span{
    width:10px;
    height:10px;
    background:#cfcfcf;
    border-radius:50%;
}

.slider-dots .active-dot{
    background:#fff;
}

/* =========================
   NEWS TICKER
========================= */

.news-ticker{
    background:#fff;
    padding:15px 0;
    border-bottom:1px solid #ddd;
    font-size:15px;
    color:#004893;
    font-weight: 600;
}

/* =========================
   SECTION TITLE
========================= */

.latest-news{
    padding-top:3.5rem;
    padding-bottom:20px ;
}

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.section-title h2{
    font-size:28px;
    font-weight:700;
    color:#111;
}

.section-title .line{
    width:90px;
    height:4px;
    background:#0b4d96;
    border-radius:10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .header-inner{
        flex-direction:column;
        gap:20px;
    }

    .logo-area{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-navbar .navbar{
        border-radius:20px;
    }

}

@media(max-width:768px){

    .top-left,
    .top-right{
        justify-content:center;
        margin:8px 0;
    }

    .hero-content h1{
        font-size:34px;
    }

    .section-title{
        flex-direction:column;
        gap:15px;
    }

    .section-title h2{
        font-size:30px;
    }

}









/* ===========================
   NEWS UPDATE SECTION
=========================== */

.news-update-section{
    background:#f5f8fe;
    position:relative;
    padding-bottom: 30px;
}

/* LEFT SIDE */

.left-news-wrapper{
    background:#f5f8fe;
    padding:30px;
}

.news-item{
    gap:24px;
    /* padding-bottom:28px;
    margin-bottom:28px; */
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom:1px solid #d9e1ef;
}

.news-img{
    width:230px;
    min-width:230px;
    overflow:hidden;
    border-radius:6px;
}

.news-img img{
    width:100%;
    height:160px;
    object-fit:cover;
    transition:0.5s;
}

.news-item:hover img{
    transform:scale(1.08);
}

.news-content{
    flex:1;
}

.news-date{
    font-size:12px;
    color:#9aa3b2;
    display:block;
    margin-bottom:10px;
    font-weight:500;
}

.news-content h3{
    /* font-size:20px; */
    font-size: 17px;
    line-height:1.3;
    color:#1a1a1a;
    margin-bottom:16px;
    font-weight:700;
}

.news-content p{
    /* font-size:15px; */
    font-size: 13px;
    line-height:1.4;
    color:#666;
    margin:0;
}

/* RIGHT FEATURE CARD */

.feature-news-card{
    position:relative;
    /* height:100%; */
    height: auto;
    /* min-height:700px; */
    overflow:hidden;
}

.feature-news-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.feature-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,33,79,0.96), rgba(0,0,0,0.08));
}

.feature-content{
    position:absolute;
    top: 0;
    bottom:0;
    left:0;
    width:100%;
    padding:35px 35px 0 35px;
    z-index:2;
}

.feature-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #ff5e5e;
    color:#ff5e5e;
    font-size:14px;
    margin-bottom:24px;
    background:rgba(255,255,255,0.08);
}

.feature-date{
    display:block;
    color:#fff;
    font-size:13px;
    margin-bottom:18px;
    opacity:0.85;
        /* margin-top: 330px; */
        margin-top: 150px;
}

.feature-content h2{
    font-size:23px;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.feature-content p{
    color:#d9e5f4;
    font-size:15px;
    line-height:1.9;
    margin-bottom:35px;
}

.feature-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:16px 28px;
    border-radius:50px;
    background:#fff;
    color:#002147;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.feature-btn i{
    width:34px;
    height:34px;
    background:#002147;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.feature-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .feature-news-card{
        min-height:650px;
    }

    .feature-content h2{
        font-size:34px;
    }

    .news-item{
        flex-direction:column;
    }

    .news-img{
        width:100%;
        min-width:100%;
    }

}

@media(max-width:768px){

    .feature-content{
        padding:30px;
    }

    .feature-content h2{
        font-size:28px;
    }

    .news-content h3{
        font-size:22px;
    }

}





.lineMaintenance{
    padding: 30px 0;
}
.lineMaintenanceCOntent h2{
    color: #111;
    font-weight: 600;
    font-size: 30px;
}
.lineMaintenanceCOntent p{
    font-size: 15px;
    color: #777777;
    line-height: 28px;
}
.lineMaintenanceCOntent ul li{
    font-size: 14px;
    color: #777777;
    line-height: 28px;
}
.lineMaintenanceCOntent .viewMoreLineM{
background: linear-gradient(135deg, #08152E 0%, #1A4294 100%); 
padding: 8px 10px;
border-radius: 5px;
color: #fff;
text-decoration: none;
}
.lineMaintenanceImage{
 position: relative;
 padding: 30px 0;
}
.lineMaintenanceImage img{
    width: 500px;
     position: absolute;
     top: 0;
}
.lineMBoder{
    border: 4px solid #1A4294;
    height: 390px;
    margin-top: 10px;
     position: absolute;
     width: 480px;
     margin-left: 50px;
     border-bottom-right-radius: 100px;
   
}


.aboutAIESL{
    /* background: url(../images/about-background.png); */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.466)),
            url(../images/about-background.png);
background-size: cover;
background-position: center;
    padding: 30px 0;
    position: relative;
}
.flight1{
    position: absolute;
    top: 50px;
    right: 30px;
    width: 50px;
}
.flight2{
     position: absolute;
     bottom: 10px;
    left: 30px;
    width: 40px;
}
.aboutAIESL h2{
    color: #fff;
    font-size: 27px;
    font-weight: 500;
}
.aboutAIESL p{
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 500;
    padding: 10px 0;
}
.aboutAIESLBoxWhite{
    background: #fff;
    padding: 20px 10px;
    border: 1px solid #030095;
}
.aboutAIESLBoxWhite h3{
    color: #1A4294;
    font-size: 14px;
    font-weight: 500;
    padding-top: 15px;
}
.aboutAIESLBoxWhite p{
     color: #1A4294;
    font-size: 17px;
    font-weight: 700;
}
.aboutAIESLBoxWhite img{
     background: #1A4294;
    padding: 5px;
    border-radius: 5px;
    width: 30px;
}


.aboutAIESLBoxBlue{
   background: linear-gradient(
    to bottom,
    #1A4294 0%,
    #12306d 40%,
    #576275 100%
);
    padding: 20px 10px;
    border: 1px solid #fff;
}
.aboutAIESLBoxBlue img{
     background: #fff;
    padding: 5px;
    border-radius: 5px;
    width: 30px;
}
.aboutAIESLBoxBlue h3{
    color: #ffff;
    font-size: 14px;
    font-weight: 500;
    padding-top: 15px;
}
.aboutAIESLBoxBlue p{
     color: #fff;
     font-size: 17px;
    font-weight: 700;
}
.ourServicesLink{
    background: #fff;
    border-radius: 7px;
    padding: 10px;
    text-decoration: none;
    color: #1A4294;
    margin-right: 10px;
    font-size: 14px;
}
.ourServicesLink img{
    width: 15px;
    margin-left: 10px;
}
.contactUsLink{
    background: #475c79;
    border-radius: 7px;
    padding: 10px;
    color: #fff;
    text-decoration: none;
      font-size: 14px;
}
.contactUsLink img{
    width: 15px;
     margin-left: 10px;
}




/* =========================
   MARQUEE STYLE SLIDER
========================= */

.marqueeSliderSec{
    padding: 20px 0;
    overflow: hidden;
  background: #004793b9;
}

.marqueeSlider .item{
    margin: 0 12px;
}

.marqueeSlider .item img{
    width: 150px !important;
    object-fit: cover;
    border-radius: 20px;
    /* border: 2px solid rgba(255,255,255,0.1); */
    transition: 0.4s ease;
}


.marqueeSlider .owl-stage{
    display: flex;
    align-items: center;
}

.marqueeSlider .item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.marqueeSlider .item img{
    width: auto;
    max-width: 100%;
    /* height: 220px; */
    object-fit: contain;
    margin: auto;
    display: block;
}

.marqueeSlider .item img:hover{
    transform: scale(1.04);
}

/* Owl Fix */

.owl-stage{
    display: flex;
    align-items: center;
}






/* =========================
        AIESL FOOTER CSS
========================= */

.aieslFooter{
    position: relative;
    background: #1A4294;
    padding: 45px 0 15px;
    overflow: hidden;
}
.footerflight{
    position: absolute;
    width: 400px;
    bottom: 0;
    right: 0;
}

/* =========================
        LEFT SIDE
========================= */

.footerLeft img{
    width: 82px;
    margin-bottom: 15px;
}
.footerLeft{
        max-width: 240px;
}

.footerLeft p{

    color: #dce7f8;
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* =========================
        SOCIAL ICONS
========================= */

.footerSocial{
    display: flex;
    align-items: center;
    gap: 10px;
   justify-content: center;
}

.footerSocial a{
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 13px;

    transition: 0.3s ease;
}

.footerSocial a:hover{
    background: #fff;
    color: #004b97;
}

/* =========================
        FOOTER LINKS
========================= */

.footerLinks h4{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footerLinks ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footerLinks ul li{
    margin-bottom: 7px;
}

.footerLinks ul li a{
    color: #dce7f8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: 0.3s ease;
}

.footerLinks ul li a:hover{
    color: #fff;
    padding-left: 3px;
}

/* =========================
        CONTACT
========================= */

.footerContact p{
    color: #dce7f8;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 270px;
}

.footerInfo{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footerInfo a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;

    display: flex;
    align-items: center;
    gap: 7px;
}

/* =========================
        FOOTER BOTTOM
========================= */

.footerBottom{
    margin-bottom: 25px;
    padding-top: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    min-height: 45px;
}

.visitorCounter{
    text-align: center;
    color: #fff;
    font-size: 11px;
}

/* =========================
        ACCESSIBILITY
========================= */

.accessibilityBox{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    gap: 6px;
}

.accessibilityBox button{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;

    background: #fff;
    color: #004b97;

    font-size: 10px;
    font-weight: 600;

    cursor: pointer;
}

.accessibilityBox button.active{
    background: #9b0000;
    color: #fff;
}

.accessibilityBtn{
    width: auto !important;
    padding: 0 14px;
    border-radius: 30px !important;
    font-size: 10px !important;
}

/* =========================
        AIRPLANE IMAGE
========================= */

.footerPlane{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 270px;
    opacity: 0.14;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .footerLinks{
        margin-top: 30px;
    }

    .footerBottom{
        flex-direction: column;
        gap: 15px;
        padding-bottom: 10px;
    }

    .accessibilityBox{
        position: relative;
        top: 0;
        right: 0;
        transform: unset;
        justify-content: center;
    }

    .footerPlane{
        width: 180px;
    }

}










/* our services  */
.aviationServicesSection{
    /* padding: 10px 0 0; */
   /* background: url(../images/service-background.png);
   background-repeat: no-repeat; */
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   TOP AREA
========================= */

.aviationHeading span{
    color: #0d57d6;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-right: 65px;
}

.aviationHeading span::after{
    content: "";
    width: 55px;
    height: 2px;
    background: #0d57d6;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.aviationHeading span i{
    position: absolute;
    right: -10px;
    top: 2px;
    color: #0d57d6;
    font-size: 14px;
}

.aviationMainTitle{
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-top: 15px;
    color: #06195d;
    margin-bottom: 0;
}

.aviationMainTitle span{
    /* color: #1696ff; */
    color: #d71f28;
}

.aviationDesc{
    font-size: 18px;
    color: #4d4d4d;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 620px;
    font-weight: 400;
}

.aviationLine{
    width: 75px;
    height: 3px;
    border-radius: 50px;
    background: #1696ff;
    margin-top: 25px;
}

/* =========================
   HERO IMAGE
========================= */

.aviationHeroImage{
    height: 380px;
    overflow: hidden;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 0 35px;
    margin-right:  -300px;
}

.aviationHeroImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   FEATURES ROW
========================= */

.aviationFeaturesRow{
    margin-top: 35px;
    padding: 25px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.aviationFeatureBox{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-right: 1px solid #ececec;
    padding-right: 15px;
}

.aviationFeatureBox i{
    font-size: 32px;
    color: #092f86;
    margin-top: 2px;
}

.aviationFeatureBox h5{
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #092f86;
    text-transform: uppercase;
}

.aviationFeatureBox p{
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 13px;
}

/* =========================
   SERVICES
========================= */

.aviationServicesContent{
    padding: 20px 0;
    position: relative;
}

.aviationServiceCard{
    background: #fff;
    border-radius: 30px;
    /* padding: 22px; */
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.aviationServiceCard:hover{
    transform: translateY(-4px);
}

.aviationNumberCircle{
    min-width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.aviationServiceIcon{
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.aviationServiceIcon img{
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.aviationServiceText h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.3;
}

.aviationServiceText p{
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #5c5c5c;
}

/* =========================
   CENTER ENGINE
========================= */

.aviationCenterEngine{
    width: 420px;
    /* height: 420px; */
    height: 350px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aviationCircleOuter{
    /* width: 420px;
    height: 420px; */
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 2px solid #d8dde8;
    position: absolute;
}

.aviationCircleMiddle{
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px solid #e5e9f2;
    position: absolute;
}

.aviationCircleInner{
    width: auto;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    position: relative;
    z-index: 5;
}

.aviationCircleInner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   BOTTOM STATS
========================= */

.aviationBottomStats{
    background: #04194a;
    padding: 40px 0;
}

.aviationStatBox{
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255,255,255,0.18);
    padding-right: 20px;
}

.aviationStatBox i{
    font-size: 42px;
}

.aviationStatBox h2{
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.aviationStatBox h5{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.aviationStatBox p{
    margin: 0;
    color: #d8d8d8;
    line-height: 1.7;
    font-size: 13px;
}

/* =========================
   COLORS
========================= */

.aviationBlue{
    background: #0b46cb;
}

.aviationGreen{
    background: #0ca67d;
}

.aviationPurple{
    background: #7b36d8;
}

.aviationOrange{
    background: #f66d00;
}

.aviationPink{
    background: #ff418f;
}

.aviationLime{
    background: #69bb1e;
}

.aviationBlueText{
    color: #0b46cb;
}

.aviationGreenText{
    color: #0ca67d;
}

.aviationPurpleText{
    color: #7b36d8;
}

.aviationOrangeText{
    color: #f66d00;
}

.aviationPinkText{
    color: #ff418f;
}

.aviationLimeText{
    color: #69bb1e;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1400px){

    .aviationMainTitle{
        font-size: 60px;
    }

    .aviationCenterEngine{
        transform: scale(.85);
    }

}

@media(max-width: 991px){

    .aviationServicesSection{
        padding-top: 50px;
    }

    .aviationMainTitle{
        font-size: 48px;
    }

    .aviationDesc{
        font-size: 16px;
    }

    .aviationHeroImage{
        margin-top: 35px;
        clip-path: none;
        border-radius: 25px;
        height: 300px;
    }

    .aviationFeatureBox{
        border-right: none;
        margin-bottom: 20px;
    }

    .aviationCenterEngine{
        transform: scale(.75);
        width: 100%;
        height: auto;
        margin: 30px auto;
    }

    .aviationStatBox{
        border-right: none;
        margin-bottom: 25px;
    }

}

@media(max-width: 576px){

    .aviationMainTitle{
        font-size: 38px;
    }

    .aviationDesc{
        font-size: 15px;
    }

    .aviationServiceCard{
        flex-direction: column;
        text-align: center;
        border-radius: 25px;
        padding: 25px 18px;
    }

    .aviationServiceText h4{
        font-size: 18px;
    }

    .aviationCenterEngine{
        transform: scale(.55);
        margin: -40px auto;
    }

    .aviationStatBox{
        flex-direction: column;
        text-align: center;
    }

}







.moreText{
    display: none;
    font-size: 13px;
    color: #5C5C5C;
}

.readMoreBtn{
    font-weight: 600;
    cursor: pointer;
    margin-left: 5px;
    font-size: 13px !important;
    color: #5C5C5C;
}

.readMoreBtn:hover{
    text-decoration: underline;
}






/* testimonials */
.headingClients{
    /*padding: 10px 0;*/
}
.headingClients h2{
 color: #1A4294;
 font-size: 17px;
 font-weight: 600;
}
.headingClients h3 img{
    width: 10px !important;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
}
.Testclient {
    padding: 10px;
}
.Testclient h3{
    font-size: 15px;
    color: #525252;
    font-weight: 700;
}
.Testclient p{
    color: #525252;
    font-weight: 400;
    font-size: 13px;
}
.Testclient3{
   background: url(../images/g3.png);
    background-repeat: no-repeat;
    height: 380px;
}
.Testclient3 p{
    /* max-width: 250px; */
    padding: 0 20px;
}
.Testclient2{
   background: url(../images/g2.png);
    background-repeat: no-repeat;
    height: 380px;
}
.Testclient2 p{
    /* max-width: 250px; */
    padding: 0 20px;
}
.Testclient1{
   background: url(../images/g1.png);
    background-repeat: no-repeat;
    height: 380px;
}
.Testclient1 p{
    /* max-width: 250px; */
    padding: 0 20px;
}


.swiper{
    padding-bottom: 40px;
}

.swiper-pagination{
    bottom: 0px !important;
}



.headingClients{
    background: #fff;
}

.clientHeading{
    font-size: 42px;
    font-weight: 700;
    color: #08152E;
}

.Testclient{
    background: #fff;
    padding: 20px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 280px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.Testclient:hover{
    transform: translateY(-8px);
}

.clientImg{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
}

.Testclient h3{
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #08152E;
}

.Testclient span{
    display: block;
    color: #1A4294;
    font-weight: 500;
    /* margin-bottom: 20px; */
    font-size: 14px;
}

.iconImage{
    width: 20px;
    /* margin-bottom: 20px; */
}

.Testclient p{
    font-size: 13px;
    line-height: 25px;
    color: #555;
}

.swiper{
    padding-bottom: 60px;
}

.swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #1A4294;
}

.Testclient11{
   border-top: 3px solid #1A4294;
    border-bottom: 3px solid #1A4294;
}

.Testclient22{
    border-top: 3px solid #1A4294;
    border-bottom: 3px solid #1A4294;
}

.Testclient33{
    border-top: 3px solid #1A4294;
    border-bottom: 3px solid #1A4294;
}

.swiper-pagination {
    position: relative !important;
}





/* SEARCH BUTTON */

.search-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#d71f28;
    color:#fff;
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
}

.search-btn:hover{
    background:#8f1218;
}

/* POPUP BACKGROUND */

.searchPopup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:9999;
}

/* ACTIVE POPUP */

.searchPopup.active{
    opacity:1;
    visibility:visible;
}

/* SEARCH BOX */

.searchBox{
    width:90%;
    max-width:500px;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    position:relative;
    text-align:center;
    animation:popupAnim 0.4s ease;
}

/* CLOSE BUTTON */

.closeSearch{
    position:absolute;
    top:15px;
    right:20px;
    font-size:24px;
    cursor:pointer;
    color:#000;
}

/* HEADING */

.searchBox h3{
    margin-bottom:25px;
    font-size:28px;
    font-weight:700;
}

/* INPUT */

.searchBox input{
    width:100%;
    height:55px;
    border:1px solid #ccc;
    border-radius:10px;
    padding:0 15px;
    outline:none;
    margin-bottom:20px;
    font-size:16px;
}

/* SEARCH BUTTON */

.searchBox button{
    width:100%;
    height:55px;
    border:none;
    border-radius:10px;
    background:linear-gradient(90deg,#1A4294,#08152E);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

/* ANIMATION */

@keyframes popupAnim{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}


.ReadMoreLatest{
    background: #0b4d96;
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px !important;
}




.left-news-wrapper {
    /* max-height: 700px;    */
    max-height: 425px;
    overflow-y: auto;
    padding-right: 10px;
}

/* SCROLLBAR DESIGN */

.left-news-wrapper::-webkit-scrollbar {
    width: 6px;
}

.left-news-wrapper::-webkit-scrollbar-track {
    background: #dcdcdc;
    border-radius: 10px;
}

.left-news-wrapper::-webkit-scrollbar-thumb {
    background: #083b8a;
    border-radius: 10px;
}

.left-news-wrapper::-webkit-scrollbar-thumb:hover {
    background: #083b8a;
}
    




     /* BACK TO TOP BUTTON */

    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 25px;
        width: 60px;
        height: 60px;
        border: none;
        border-radius: 50%;
        background: linear-gradient(135deg, #531d20, #8f1218);
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 9999;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;

        animation: zoomInOut 1.8s infinite;
    }

    /* SHOW BUTTON AFTER SCROLL */

    #backToTop.show {
        opacity: 1;
        visibility: visible;
    }

    /* HOVER EFFECT */

    #backToTop:hover {
        transform: scale(1.1);
    }

    /* ZOOM IN OUT ANIMATION */

    @keyframes zoomInOut {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.15);
        }

        100% {
            transform: scale(1);
        }
    }

    /* MOBILE */

    @media(max-width:768px) {
        #backToTop {
            width: 50px;
            height: 50px;
            font-size: 20px;
            bottom: 20px;
            right: 15px;
        }
    }


.marquee-text{
    animation: fadeBlink 1.5s infinite;
}

@keyframes fadeBlink{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:0.7;
    }
}

.hero-navbar {
    position: absolute;
    width: 70%;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-navbar .navbar {
    background: #004793b9;
    border-radius: 60px;
    padding: 12px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #fbfbfb2f;
}

.hero-navbar .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.hero-navbar .nav-link:hover,
.hero-navbar .nav-link.active {
    color: #ffffff;
}

/* ── Dropdown ── */
.nav-dropdown {
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #f3f3f3;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 9999;
    border-top: 3px solid #0095da;
}

.nav-dropdown:hover .nav-submenu {
    display: block;
}

.nav-submenu li {
    position: relative;
}

.nav-submenu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    color: #666;
    background: #f3f3f3;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    transition: 0.3s;
}

.nav-submenu li a:hover {
    background: #ececec;
}

/* ── Inner Submenu (3rd level) ── */
.nav-submenu-inner {
    position: absolute;
    top: 0;
    left: 100%;
    width: 240px;
    background: #f3f3f3;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    border-top: 3px solid #0095da;
    z-index: 9999;
}

.has-submenu:hover .nav-submenu-inner {
    display: block;
}

.nav-submenu-inner li a {
    display: block;
    padding: 10px 18px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    transition: 0.3s;
}

.nav-submenu-inner li a:hover {
    background: #ececec;
}

/* ── Hero Content ── */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-btn {
    border: none;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.4s;
}

.hero-btn:hover {
    transform: translateY(-5px);
}

.hero-btn i {
    width: 34px;
    height: 34px;
    background: #0d1f44;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    display: none;
    gap: 10px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    border-radius: 50%;
}

.slider-dots .active-dot {
    background: #fff;
}



 .aviationServicesContent {
    padding: 30px 0;
  }

  /* Pill style matching your screenshot */
  .aviationServicePill {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    width: 100%;
    max-width: 320px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .aviationServicePill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }

  /* Colors matching screenshot */
  .aviationPillBlue  { color: #0b1f52; border: 2px solid #c5d4f0; }
  .aviationPillPurple{ color: #6a0dad; border: 2px solid #d5b8f0; }
  .aviationPillLime  { color: #3a7d00; border: 2px solid #b8e0a0; }

  .aviationPillBlue:hover  { background: #eef3fd; }
  .aviationPillPurple:hover{ background: #f5eeff; }
  .aviationPillLime:hover  { background: #efffea; }

  /* Left column pills align to right toward center */
  .col-lg-4:first-child .aviationServicePill {
    margin-left: auto;
  }

  /* Right column pills align to left toward center */
  .col-lg-4:last-child .aviationServicePill {
    margin-right: auto;
  }

  @media (max-width: 991px) {
    .aviationServicePill {
      max-width: 100%;
    }
    .col-lg-4 {
      align-items: center !important;
    }
  }
  
  
    .img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
      0 8px 32px rgba(0,0,0,0.35),
      0 2px 8px rgba(0,0,0,0.2);
    display: inline-block;
    width: 100%;
    padding:12px;
  }
  .img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
  
  
  /* swiper equal height fix */
.testimonialSwiper .swiper-wrapper {
  align-items: stretch;
}
.testimonialSwiper .swiper-slide {
  height: auto;
}

.testi-card {
  background: #fff;
  
  border: 1.5px solid #e0e8f7;
  padding: 28px 32px 24px;
  box-shadow: 0 4px 24px rgba(10,42,110,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 100%;           /* fill the slide height */
  text-align: center;
  box-sizing: border-box;
}

/* TOP: image */
.testi-top {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.testi-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #1a5cb5;
  box-shadow: 0 2px 12px rgba(26,92,181,0.18);
}

/* MIDDLE: message — grows to fill available space */
.testi-message {
    flex: 1;
    font-size: 15px;
    line-height: 1.85;
    color: #2d3a5a;
    font-style: italic;
    margin: 0;
    position: relative;
    padding: 0 30px;
}

.testi-message .quote-left{
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    color: #004793b9;
}

.testi-message .quote-right{
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 24px;
    color: #004793b9;
}
/*.testi-message::before {*/
/*  content: '\201C';*/
/*  font-size: 52px;*/
/*  color: #1a5cb5;*/
/*  font-family: Georgia, serif;*/
/*  opacity: 0.55;*/
/*  position: absolute;*/
/*  top: 35px;*/
/*  left: 0;*/
/*  transform: translateX(-50%);*/
/*  line-height: 1;*/
/*}*/
/*.testi-message::after {*/
/*  content: '\201D';*/
/*  font-size: 52px;*/
/*  color: #1a5cb5;*/
/*  font-family: Georgia, serif;*/
/*  opacity: 0.55;*/
/*  vertical-align: -20px;*/
/*  margin-left: 4px;*/
/*  line-height: 0;*/
}

/* DIVIDER — pinned above name */
.testi-divider {
  width: 60px;
  height: 2px;
  background: #1a5cb5;
  opacity: 0.25;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: auto;       /* pushes divider + name to bottom */
}

/* BOTTOM: name always at bottom */
.testi-info {
  text-align: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #0a2a6e;
  line-height: 1.3;
}
.testi-designation {
  font-size: 12px;
  color: #5a7ab5;
  font-weight: 500;
  margin-top: 3px;
}


        .newsbtn{
            width: auto;
            height: auto;
            border: none;
            background: #d71f28;
            color: #fff;
            font-size: 15px;
            cursor: pointer;
            transition: 0.3s;
        }

        .breadcrumb-nav a,
        .breadcrumb-nav span,
        .breadcrumb-nav p {
            font-size: 14px;
            color: #555;
            margin: 0;
        }
        .breadcrumb-nav a {
            text-decoration: none;
            color: #d71f28;
        }
        .breadcrumb-nav a:hover {
            text-decoration: underline;
        }
        
 @keyframes blinker {
    50% { opacity: 0; }
  }
  .blink-new {
    animation: blinker 1s linear infinite;
    font-size: 0.65rem;
    vertical-align: top;
    margin-left: 6px;
    padding: 2px 5px;
  }
  
  
.banner-section{
    height:300px;
    position:relative;
    background-size:cover !important;
    background-position:center !important;
}


/* ─────────Service  SECTION ───────── */
.mro{
    margin-top:2.5rem;
}

.specialized-services-section{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:40px 24px;
    box-sizing:border-box;
}

/* ───────── GRID ───────── */
.services-grid{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:80px;
    max-width:1350px;
    width:100%;
    margin:auto;
}

/* ───────── LEFT & RIGHT ───────── */
.pills-left,
.pills-right{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:430px;
}

.pills-left{
    align-items:flex-end;
}

.pills-right{
    align-items:flex-start;
}

.pill-slot{
    display:flex;
    align-items:center;
}

.pills-left .pill-slot{
    justify-content:flex-end;
}

.pills-right .pill-slot{
    justify-content:flex-start;
}

/* ───────── CENTER ───────── */
.center-col{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:24px;
}

/* ───────── ENGINE ───────── */
.engine-wrap{
    position:relative;
    width:420px;
    height:420px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Rotating Ring */
.ring-1{
    position:absolute;
    width:435px;
    height:435px;
    border:2px dashed #004893;
    border-radius:50%;
    animation:rotate 40s linear infinite;
}

/* Hide middle ring */
.ring-2{
    display:none;
}

/* Image Circle */
.ring-3{
    position:absolute;
    width:395px;
    height:395px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    border-radius:50%;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.ring-3 img{
    width:481px;
    height:481px;
    object-fit:cover;
    border-radius:50%;
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ───────── PILLS ───────── */

.aviationServicePill{
    padding:11px 24px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
    transition:.3s;
}

.aviationServicePill:hover{
    transform:translateY(-2px);
}

.aviationPillBlue{
    background:rgba(59,130,246,.10);
    border:1.5px solid rgba(59,130,246,.45);
    color:#3b82f6;
}

.aviationPillPurple{
    background:rgba(139,92,246,.10);
    border:1.5px solid rgba(139,92,246,.45);
    color:#7c3aed;
}

.aviationPillLime{
    background:rgba(132,204,22,.10);
    border:1.5px solid rgba(132,204,22,.45);
    color:#65a30d;
}

/* ───────── TABLET ───────── */

@media (max-width:992px){

    .services-grid{
        gap:40px;
    }

    .engine-wrap{
        width:330px;
        height:330px;
    }

    .ring-1{
        width:330px;
        height:330px;
    }

    .ring-3{
        width:270px;
        height:270px;
    }

    .pills-left,
    .pills-right{
        height:340px;
    }
}

/* ───────── MOBILE ───────── */

@media (max-width:768px){

    .specialized-services-section{
        padding:60px 15px;
        min-height:auto;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .pills-left,
    .pills-right{
        height:auto;
        align-items:center;
        gap:15px;
    }

    .pill-slot{
        justify-content:center !important;
    }

    .engine-wrap{
        width:280px;
        height:280px;
    }

    .ring-1{
        width:280px;
        height:280px;
    }

    .ring-3{
        width:225px;
        height:225px;
    }
    .banner-section{
    height:200px;}
    .hero-content h1 {
    font-size: 28px;}
    .hero-content {
    height: 230px;}
     .top-left,
    .top-right{
        justify-content:center;
        margin:8px 0;
    }
}