@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300..900&display=swap');

:root {
    --animate-delay: 2s;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* height: 100%; */
    margin: 0%;
    padding: 0%;

}

/* ------------------------------Preloader styles ------------------------------------------*/
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Loader animation */
.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader img {
    width: 70px;
    /* Airplane size */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 2s linear infinite;
}

/* Airplane moves in a circular path */
@keyframes rotate {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}


/* --------------------------------------Top Navbar--------------------------------------------- */

/* Style the contact number */
.phone-number {
    font-size: 0.8rem;
    font-weight: bold;
}

/* Style the social media icons */
.social-media-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.social-media-links .social-icon {
    /* margin-left: 15px; */
    font-size: 1.125rem;
    padding: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.social-media-links .social-icon:hover {
    color: #002F6C;
    /* Color on hover */
}

.services {
    color: #002F6C;
    font-weight: 900;
    font-size: 40px;
    text-align: center;
}

.servicess {
    color: #fff;
    font-weight: 900;
    font-size: 50px;
}


/* --------------------------------------Navbar--------------------------------------------- */

.navbar {
    /* background-color: #002F6C; */
    padding: 1.25rem 1rem;
    transition: all 0.5s ease;
}

.navbar.active {
    background-color: #002F6C;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    /* color: #fff; */
}

.navbar.active .nav-link,
.navbar.active .social-icon i {
    color: white !important;
    /* Ensure text and icons remain white */

}

.navbar.active img {
    /* background-color: white !important; */
    /* Ensure text and icons remain white */
    /* padding: 100px; */


}

.navbar-brand img {
    transition: all 0.5s ease;
}

.navbar a {
    color: white !important;
    font-weight: 300;
}

.navbar .btn {
    color: #002F6C;
    font-weight: 600;
    /* background-color: #D9D9D9; */
    border-radius: 20px;
    padding: 10px 20px;
}

.navbar-nav .nav-item {
    margin: 0 15px;
    /* Add horizontal gap */
}

.navbar-nav .dropdown-menu {
    background-color: #002F6C;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.5rem .75rem;
    font-size: 16px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    /* Show the dropdown on hover */
}

/* Keep dropdown open while hovering over the menu items */
/* .dropdown-menu:hover {
    display: block !important;
} */

/* Change text color on hover */
.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: #002F6C !important;
    background-color: white;
}

/* --------------------------------------Carousel Banner------------------------------------------ */
.carousel-indicators {
    /* background-color: transparent !important; */
    /* Makes the indicators transparent */
}

.carousel-caption {
    position: absolute;
    text-align: left;
    color: white;
}

.carousel-caption .animate__animated {
    overflow: hidden;
}

.carousel-caption.caption-right {
    top: 50%;
    bottom: auto;
    left: 60%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    z-index: 9;
    width: 100%;
    max-width: 500px;
}

.carousel-caption.right-side {
    position: absolute;
    left: 20%;
    /* Adjust this value as needed */
    text-align: left;
    /* Aligns text to the right */
}

.carousel-inner img {
    width: 100%;
    min-height: 700px;
    height: 100vh;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 65%;
    left: 35%;
    transform: translateX(-20%);
    text-align: center;
    color: white;
}

.carousel-caption h1 {
    font-weight: 900;
    font-size: 2.75rem;
}

.carousel-caption h1 span {
    color: #002F6C;
}

.carousel-caption p {
    font-size: 1.25rem;
}

.carousel-caption .btn {
    background-color: white;
    color: #002F6C;
    font-weight: 600;
    border-radius: 30px;
    padding: 14px 32px;
    margin-top: 20px;
}

/* About section */
.about-section {
    padding: 140px 0 120px;
    text-align: center;
    background-color: #002F6C;
    color: #fff;
    /* color: #000; */
}

.about-section p {
    font-size: 1.5rem;
    font-weight: 600;
}

.about-section p span {
    background: linear-gradient(45deg, #fec224 0%, #fec224 100%);
    color: #fec224;
    /* gradient text */
    font-weight: 900;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* font-weight: bold; */
}

.about-section .btn {
    background-color: #002F6C;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 14px 24px;
    margin-top: 20px;
}

/* about section end */

/* -----------------------------------Services Sections--------------------------------------------- */

/* Service Section */
.services-section {
    padding: 120px 0;
    background-color: #F8F8FA;
}

.services-section .card {
    margin-top: 1.75rem;
    border: 0;
    padding: 32px 24px;
    border-radius: .75rem;
    background-color: white;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
}

.services-section .card-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 0 1.5rem;
    margin-left: 30px;
}

.services-section .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002F6C;
    margin-bottom: 10px;
}

.services-section .card-text {
    font-size: 1rem;
    letter-spacing: -0.5px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.25;
    max-width: 96%;
}

.services-section .card-link {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #002F6C;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.services-section .card-link:hover {
    text-decoration: underline;
}

/* Service Section End */

/* who we are section */
.whoweare-section .services {
    margin-bottom: 2rem;
}

.whoweare-section {
    padding: 120px 0;
    position: relative;
}


.whoweare-section .container {
    position: relative;
    z-index: 2;
}

.whoweare-section p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.whoweare-section ul {
    padding-left: 1rem;
    width: 90%;
}

.whoweare-section ul li {
    padding-left: 1rem;
    font-size: 1.125rem;
}

.whoweare-section ul li+li {
    margin-top: 1rem;
}

.whoweare-section ul li::marker {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-top: 2px;
    color: #002F6C;
}

.whoweare-section .btn {
    background-color: #002F6C;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 14px 36px;
    margin-top: 2rem;
    font-size: 1.125rem;
}

.whoweare-section img {
    border-radius: 1.5rem;
}

/* who we are section end */



/* Mission Vision */
.vision-section {
    padding: 80px 0;
}

.info-card {
    height: 100%;
    background-color: #002F6C;
    /* width: 100%; */
    /* Dark blue background */
    border-radius: .75rem;
    padding: 32px 20px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-btn {
    background-color: #fff;
    text-decoration: none !important;
    color: #002F6C;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    margin-top: auto;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.card-btn:hover {
    background-color: #ffffff;
    color: #002F6C;
}

.info-card img {
    margin: 0px;
}

/* --------------------------------------------------Client Section-------------------------------------- */

.clients {
    font-size: 1.9rem;
    font-weight: 900;
    color: #002F6C;
}


/* -----------------------------------Footer SEction--------------------------------------------- */

/* Footer */
/* Newsletter Section */
.newsletter-section {
    background-color: #002F6C;
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1100px;
}

.newsletter-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.email-input {
    padding: 10px 15px;
    width: 350px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 0.8rem;
}

.subscribe-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #444;
}

/* Footer Section */
footer {
    padding: 60px 0 0;
    background-color: #F8F8FA;
    color: #333;
}


.footer-logo .logo {
    max-width: 100px;
    margin-bottom: 1.25rem;
}

.footer-logo p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    font-size: 1rem;
    text-decoration: none;
    background-color: #002F6C;
    border-radius: 50%;
}

.footer-links h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #002F6C;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #333;
    letter-spacing: -.5px;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    text-decoration: underline;
    color: #002F6C;
}

.footer-copy {
    background-color: #002F6C;
    margin-top: 60px;
    padding: 6px 0;
}

.footer-copy p {
    color: white;
    margin: 0;
    text-align: center;
}

/* extra classes */
.overflow-hidden {
    overflow: hidden;
}



/* -----------------------------------Services Page section ------------------------------------*/


.services-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    align-items: center;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(4, 5, 6, 9);
    overflow: hidden;
    width: 85%;
    height: 100%;
}


/* Services Details */
.flightpermission {
    align-items: center;
    font-size: 0.5rem;
}

.flightpermission img {
    border-radius: 30px;
    width: 100%;
}

.service-content p {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.whowe img {
    width: 100%;
    height: 100%;
}

/* =====================================Home Extra Code===================================== */
/* Carousel placement */
.carousel {
    margin-top: -70px;
    /* Adjust to make the banner visible below the navbar */
}

/* Styling for the video banner */
.video-banner {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    margin-top: -65px !important;
}

.banner-video {
    width: 100%;
    height: 80%;
    /* opacity: 0.8; */

    object-fit: cover;
    /* Ensures the video covers the entire section */
}

.video-overlay {
    position: absolute;
    top: 40%;
    left: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.video-overlay h1 {
    font-size: 4rem;
    text-shadow: 6px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: bolder;
    color: #ffff;
    width: 100%;
    margin-top: 200px;

}

.video-overlay p {
    /* color: #002F6C; */
    font-size: 1.5rem;
    margin-left: 30px;
    /* text-shadow: 4px 4px 4px rgba(255, 255, 255, 0.7); */
}

.video-overlay p {
    font-size: 20px;
    width: 100%;
    margin-left: 0px;
}

.video-overlay h1 {
    font-weight: 900;
}

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* background: #f8f9fa; */
    padding: 70px 0;
}

.logo-slider .logo-track {
    display: flex;
    /* animation: scrollLeft 20s linear infinite; */
}

.logo-slider img {
    max-width: 150px;
    height: 200px;
    margin: 0 20px;
    height: auto;
}

@keyframes scrollLeft {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.whoweare-section {
    position: relative;
    padding: 80px 0;
    color: white;
    text-align: left;
}

/* ---------------------------------------Flip card------------------------------------------------- */
/* .card {
    width: 300px;
    height: 300px;

}

.content {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

    transition: transform 1s;
    transform-style: preserve-3d;
}

.card:hover .content {
    transform: rotateY(180deg);
    transition: transform 0.5s;
}

.front,
.back {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    line-height: 300px;
    color: #03446A;
    text-align: center;
    font-size: 60px;
    border-radius: 5px;
    backface-visibility: hidden;
}

.back {
    background: #03446A;
    color: white;
    transform: rotateY(180deg);
} */