* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

/* 
html{
    overflow: hidden;
} */

.whatsapp_icon{
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whatsapp_icon img{
    height: 60px;
    width: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border-bottom: 1px solid #68676761;
    position: fixed;
    width: 100%;
    background-color: #ffff;
    z-index: 100;
}

.logo {
    height: 60px;
    width: auto;
}

.menuBaarBtn {
    font-size: 25px;
    cursor: pointer;
}

.menuBaar {
    position: absolute;
    height: 90vh;
    width: 20%;
    background-color: #fff;
    top: 81px;
    transition: all .4s ease;
    right: -305px;
    /* display: none; */
}

.clicked_menuBaar {
    /* display: block; */
    right: 0;
}

.header_list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.header_list li {
    border-bottom: 1px solid #282a75;
    padding: 20px;
    width: 100%;
    transition: all .4s ease;
}

.header_list li:hover {
    background-color: #282b7539;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */

}

.active_page {
    background-color: #282a75;
    color: #fff;
}

.header_list li a {
    color: #282a75;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.active_page {
    background-color: #282a75;
}

.active_page_link {
    color: #fff !important;
}

.container {
    display: inline-block;
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: #282a75;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.hero_image {
    width: 100%;
    height: auto;
}

.guarantee_sec {
    display: flex;
    gap: 300px;
}


.content_section {
    padding: 60px 200px;
    line-height: 1.6;
    color: #222;
    font-size: 16px;
}

.content_section h2 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.content_section p {
    margin: 10px 0;
    text-align: justify;
}

.content_section ul {
    margin: 10px 0 10px 20px;
    list-style: disc;
}

.services_card_section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.services_section h1 {
    color: #000;
    font-size: 30px;
    margin-bottom: 20px;
}

.services_section .pera {
    color: #222;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
    text-align: justify
}

.card {
    border: 1px solid #68676761;
    width: 370px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
    background-color: #282a75;
}

.card img {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
}

.services_card_section .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.services_section {
    padding: 60px 150px;
}

.card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}

.card_content_text {
    text-align: justify;
    margin-top: 10px;
    color: #222;
    font-size: 14px;
    max-height: 0;
    transition: all .3s ease;
}

/* .show_content{
    display: block;
} */

.card_content {
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.accordion-title {
    font-weight: 600;
    font-size: 16px;
    color: #222;
}

.card_icon {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.card_hiden_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #dfdfdf;
    font-size: 14px;
    line-height: 1.5;
    padding-right: 25px;
}

.card_content.active .card_hiden_content {
    max-height: 200px;
    /* expand */
    margin-top: 10px;
}

.card_content.active .card_icon {
    transform: rotate(45deg);
}


.card_header h4 {
    color: #fff;
    font-size: 20px;
}



.card_header span:hover {
    color: #282a75;
}


.aircraft_types details {
    /* border-bottom: 1px solid #68676761; */
    border-radius: 5px;
    margin: 10px 0;
    padding: 20px 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
    cursor: pointer;

}


.contact_info {
    margin: 20px 0;
}

.contact_info svg {
    height: 30px;
    width: auto;
    margin-right: 10px;
}

.contact_form_name {
    display: flex;
    gap: 20px;
}

.contact_form_name input {
    width: 100%;
}

.contact_form_section {
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 40px;

}

.contact_info_section {
    width: 30%;
    padding: 10px 60px;
    color: #fff;
    background-color: #282a75;
}

.contact_form {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact_form input,
.contact_form textarea {
    padding: 22px 12px;
    border: 1px solid #68676761;
    border-radius: 5px;
    font-size: 16px;
    resize: none;
}


.contact_form_btn button {
    width: 150px;
    padding: 10px;
    border: 2px solid #282a75;
    color: #fff;
    background-color: #282a75;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 50px;
    float: right;
    box-shadow: 10px 10px 0px rgba(102, 106, 213, 0.595)
}

.contact_form_btn button:hover {
    background-color: #000;
    color: #fff;
}

.map_section {
    /* margin-top: 40px; */
    border-radius: 10px;
}

.aircreft_font h2 {
    font-size: 30px;
}

.aircreft_font p {
    font-size: 20px;
    color: gray;
}

.aircreft_font span{
    color: #282a75;
}





footer {
    background-color: #ffff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    margin-top: 50px;
    border-top: 2px solid #282a75;
}

.footer_about p {
    width: 80%;
    color: #000;
    margin-top: 10px;
    line-height: 1.6;
    font-size: 14px;
}

.footer_social {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_social h3 {
    color: #000;
    margin-bottom: 10px;
}

.footer_social a svg {
    height: 50px;
    padding: 15px;
    background-color: #282a75;
    color: #fff;
    width: 50px;
    border-radius: 50%;
    transition: all .3s ease;
}

.footer_contact {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_contact h3 {
    color: #282a75;
    text-decoration: underline;
    font-size: 20px;
    margin-bottom: 10px;
}


.footer_link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s ease;
}

.footer_link svg {
    height: 18px;
    width: auto;
    color: #282a75;
    margin-right: 10px;
    transition: all .3s ease;
}

.copyright_ft{
    padding: 15px 0;
    background-color: #282a75;
    color: #fff;
    font-size: 16px;
    text-align: center;

}


/* ----------logo slider code------------- */

.qnic-slider {
    overflow: hidden;
    white-space: nowrap;
    border-radius: 10px;
    background: #fff;
    padding: 20px 0;
    margin: 0 0 50px 0;
}

.qnic-track {
    display: inline-flex;
    animation: qnic-scroll 20s linear infinite;
}

.qnic-track-two {
    display: inline-flex;
    animation: qnic-scroll-two 20s linear infinite;
}

.qnic-slide {
    width: 150px;
    height: 80px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qnic-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s;
}

/* 
    .qnic-slide img:hover {
      filter: grayscale(0%);
      transform: translate(0, -5px);
    } */

@keyframes qnic-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes qnic-scroll-two {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ----------logo slider code end------------- */





@media (max-width: 768px) {


    footer{
        padding: 20px;
    }

    .guarantee_sec {
        flex-direction: column;
        gap: 50px;
    }

    .contact_form_section {
        flex-direction: column;
    }

    .contact_info_section {
        width: 100%;
    }

    .services_section {
        padding: 20px;
    }

    .services_section h1 {
        font-size: 25px;
    }

    .content_section h2 {
        font-size: 22px;
    }

    .hero_image {
        margin-top: 80px;
    }


    .content_section {
        padding: 20px;
    }

    .menuBaar {
        width: 60%;
    }

    .hero_section {
        height: 70vh;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer_about p {
        width: 100%;
    }

    .footer_contact {
        width: 100%;
    }
}
