* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #f5f7fa;
    overflow-x: hidden;
}

header {
    width: 100%;
    min-height: 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0866c6;
    white-space: nowrap;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #0866c6;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}




.hero-text {
    color: white;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    background: #0866c6;
    color: white;
    padding: 14px 25px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}

.button:hover {
    background: #064b91;
    transform: translateY(-2px);
}

.second-button {
    background: white;
    color: #0866c6;
}

.second-button:hover {
    background: #e9f3ff;
}


.quick-links {
    width: 86%;
    margin: -60px auto 60px;
    margin-top: 20px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-box {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quick-box h3 {
    color: #0866c6;
    margin-bottom: 10px;
}

.quick-box p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.quick-box a {
    color: #0866c6;
    text-decoration: none;
    font-weight: bold;
}


.section {
    width: 86%;
    max-width: 1200px;
    margin: 80px auto;
}

.section h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 10px;
    color: #123b64;
}

.section-intro {
    text-align: center;
    margin-bottom: 30px;
}


.flight-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.flight-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 18px 20px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.flight-heading {
    background: #0866c6;
    color: white;
    font-weight: bold;
}

.on-time {
    color: green;
    font-weight: bold;
}

.delayed {
    color: orange;
    font-weight: bold;
}


.checkin-section {
    background: white;
    padding: 0;
}

.checkin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.checkin-content h2 {
    text-align: left;
}

.checkin-content p {
    line-height: 1.6;
    margin: 20px 0;
}

.checkin-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 130px;
    resize: vertical;
}

button {
    background: #0866c6;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background: #064b91;
}


.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin: 15px 0;
    color: #123b64;
}

.card p {
    line-height: 1.6;
}

.service-icon {
    font-size: 35px;
}


.image-section {
    width: 100%;
    margin: 80px 0;
}

.image-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #123b64;
    color: white;
}

.image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-box div {
    padding: 50px;
}

.image-box h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.image-box p {
    line-height: 1.7;
}


.parking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
}

.parking h2 {
    text-align: left;
}

.parking p {
    line-height: 1.7;
    margin: 20px 0;
}

.parking img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}


.about {
    text-align: center;
}

.about>p {
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.7;
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-boxes div {
    background: white;
    padding: 25px;
    border-radius: 8px;
}

.about-boxes strong,
.about-boxes span {
    display: block;
}

.about-boxes strong {
    color: #0866c6;
    font-size: 30px;
    margin-bottom: 10px;
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
}

.contact-info h3 {
    margin-bottom: 25px;
    color: #123b64;
}

.contact-info p {
    margin: 18px 0;
}


footer {
    background: #123b64;
    color: white;
    padding: 50px 7% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-content h2,
.footer-content h3 {
    margin-bottom: 15px;
}

.footer-content a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
}

.footer-content a:hover {
    text-decoration: underline;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
}


@media (max-width: 900px) {

    header {
        padding: 0 5%;
    }

    .menu-icon {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav a {
        padding: 18px 5%;
        border-bottom: 1px solid #eee;
    }

    #menu-toggle:checked~nav {
        display: flex;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    header {
        min-height: 60px;
    }

    .logo {
        font-size: 20px;
    }

    .menu-icon {
        font-size: 26px;
    }

    nav {
        top: 60px;
    }



    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-links {
        width: 90%;
        margin-top: -30px;
        grid-template-columns: 1fr;
    }

    .section {
        width: 90%;
        margin: 60px auto;
    }

    .section h2 {
        font-size: 28px;
    }

    .flight-table {
        overflow-x: hidden;
    }

    .flight-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        font-size: 14px;
    }

    .flight-heading {
        display: grid;
    }

    .checkin-content,
    .image-box,
    .parking,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .checkin-content img {
        height: 250px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .image-box img {
        height: 250px;
    }

    .image-box div {
        padding: 30px;
    }

    .image-box h2 {
        font-size: 28px;
    }

    .parking {
        padding: 25px;
    }

    .parking img {
        height: 230px;
    }

    .about-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
















@media (max-width: 600px) {

    header {
        min-height: auto;
        padding: 15px 5%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .menu-icon {
        display: none;
    }

    nav {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        box-shadow: none;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .hero {
        min-height: 500px;
        padding: ;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-links {
        width: 90%;
        margin-top: -30px;
        grid-template-columns: 1fr;
    }

    .section {
        width: 90%;
        margin: 60px auto;
    }

    .section h2 {
        font-size: 28px;
    }

    .flight-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        font-size: 14px;
    }

    .checkin-content,
    .image-box,
    .parking,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .about-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.hero-text h1 {
    color: white;
    font-size: 45px;
    font-weight: bold;
    line-height: 1.1;

}

.hero {
    position: relative;
}

.hero-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
}