@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
    background-color: #f4f7fc;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    background: #f4f7fc;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    z-index: 1050;
}

.hero {
    width: 100%;
    height: 100vh;
    background: url('flight-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.cta-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    background: #ffcc00;
    color: #002147;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: #e6b800;
}

.gallery img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.contact {
    background: #002147;
    color: white;
    padding: 50px 0;
}

.footer {
    background: #00162e;
    color: white;
    text-align: center;
    padding: 20px;
}

.training-img {
    height: 100px;
}

.training-card {
    border-radius: 10px;
    padding: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.traingin-card img {
    margin-bottom: 20px;
}

.about-content {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}

.training-content {
    width: 100%;
    background-color: #ebe9cb;
    padding: 100px 0;
}

.training-content .border {
    border-color: #a5a37d !important;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}

.hero-container {
    margin-top: 70px;
    height: calc(100vh - 70px);

    &:after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        background: rgba(0, 0, 0, 0.5);
        margin-top: 70px;
    }
}

.bg-image {
    background-image: url("flight-banner.jpg");
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 100%;
}
