* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #002147;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Full-width container for header and footer */
.container-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 10px 0; /* Reduced from 20px to make the header shorter */
    position: relative;
    z-index: 100;
    background: #002147;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Optional: Adds a subtle separator */
    width: 100%;
    left: 0;
    right: 0;
}

.header .container {
    max-width: none;
    padding: 0 0 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-icon {
    width: 60px;  /* Reduced from 80px */
    height: 60px; /* Reduced from 80px */
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(2.5);
    /* The following properties were not needed and have been removed for cleaner code:
       - background: transparent;
       - border-radius: 50%;
       - padding: 6px;
       - transform: scale(1.0); */
}

.logo-text {
    color: white;
}

.company-name {
    font-size: 16px; /* Slightly increased for better readability with the smaller logo */
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
}

.company-name:hover {
    color: #4fc3f7;
}

.slogan {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
    font-family: 'Lato', sans-serif;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Arsenal', sans-serif;
    line-height: 1.2;
}

.nav-link:hover,
.nav-link.active {
    color: #4fc3f7;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #4fc3f7;
}

.nav-link:last-child {
    margin-right: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex; /* Use flexbox on the main hero container */
    align-items: center;
    overflow: hidden;
}

.hero .container {
    flex: 1; /* Allows the container to take up available space */
    z-index: 1; /* Ensures text is on top */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: -1;
}

.hero-content {
    color: white;
    max-width: 600px;
}

.hero-aircraft {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    height: auto;
    z-index: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
}

.aircraft-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    margin-left: auto;
    transform: translateX(10%);
}

.hero-layout {
    display: flex;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Lato', sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
}

.cta-button {
    font-family: 'Lato', sans-serif;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.3;
}

.cta-button:hover {
    background: white;
    color: #1a2b5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 40px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #1a2b5c;
    margin-bottom: 80px;
    font-family: 'Lato', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    aspect-ratio: 3 / 2;   /* keep width:height = 3:2 */
    overflow: hidden;
    border-radius: 15px 15px 0 0;   /* only top corners rounded */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* crop neatly instead of stretching */
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2b5c;
    padding: 30px 30px 15px;
    font-family: 'Lato', sans-serif;
}

.service-description {
    color: #666;
    padding: 0 30px 30px;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
}

/* Gateway Section */
.gateway {
    padding: 100px 0;
    background: #002147;
    color: white;
}

.gateway-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gateway-images {
    display: flex;
    gap: 20px;
    height: 500px;
}

.gateway-image-left,
.gateway-image-right {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.gateway-image-right {
    margin-top: 40px;
}

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

.gateway-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
}

.gateway-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Lato', sans-serif;
}

/* Footer */
.footer {
    background: white;
    padding: 0;
    color: #333;
    width: 100%;
    left: 0;
    right: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 20px;
    max-width: none;
    width: 100%;
}

.footer-logo .company-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    font-family: 'Lato', sans-serif;
}

.footer-info {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
}

.social-link {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}


.social-link:hover {
    background: #4fc3f7;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 12px;
    height: 12px;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.9) 0%, rgba(0, 33, 71, 0.7) 100%);
    z-index: -1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Lato', sans-serif;
}

.contact-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 60px;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 25px;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-code-select {
    min-width: 100px;
    max-width: 100px;
    flex-shrink: 0;
    padding: 20px 15px;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: auto;
}

.phone-number-input {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.service-select {
    width: 100%;
    padding: 20px 25px;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.country-code-select:focus,
.service-select:focus {
    outline: none;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background: #1a2b5c;
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.3;
    box-shadow: 0 8px 20px rgba(26, 43, 92, 0.3);
    font-family: 'Lato', sans-serif;
}

.submit-button:hover {
    background: #4fc3f7;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(79, 195, 247, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.8) 0%, rgba(0, 33, 71, 0.6) 100%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    color: white;
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Lato', sans-serif;
    line-height: 1.2;
}

.about-description {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-family: 'Lato', sans-serif;
}

.about-details {
    padding: 100px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.detail-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2b5c;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.detail-text {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

/* Team Section with Hero Background */
.team-section-hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.team-title-white {
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1a2b5c;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2b5c;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: #4fc3f7;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Lato', sans-serif;
    text-decoration: underline;
    cursor: pointer;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    margin: 10px auto 20px;
    display: block;
    color: #0077b5;
    transition: all 0.3s ease;
}

.linkedin-icon:hover {
    color: #005885;
    transform: scale(1.1);
}

.team-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
}

/* Responsive Design - Maintain Desktop Layout Structure */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header - Keep horizontal layout */
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    /* Hero - Fix aircraft overlapping text */
    .hero-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
        z-index: 2;
    }
    
    .hero-aircraft {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        justify-content: center;
        z-index: 1;
    }
    
    .aircraft-image {
        max-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Services - Make horizontally scrollable */
    .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        position: relative;
    }
    
    /* Add scroll indicator line for services */
    .services-grid::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #4fc3f7 0%, #4fc3f7 70%, transparent 100%);
        border-radius: 2px;
    }
    
    .service-card {
        min-width: 180px;
        flex-shrink: 0;
        scroll-snap-align: start;
        height: auto;
    }
    
    .service-image {
        aspect-ratio: 3 / 2;
        height: 120px; /* Fixed height for consistency: 180px * 2/3 */
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    /* Hide scrollbar but keep functionality */
    .services-grid {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .services-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.2rem;
        padding: 20px 20px 10px;
        text-align: center;
    }
    
    .service-description {
        padding: 0 20px 20px;
        font-size: 0.9rem;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.4;
        max-width: 140px;
        margin: 0 auto;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    /* Gateway - Maintain 2-column layout */
    .gateway-content {
        gap: 40px;
    }
    
    .gateway-title {
        font-size: 2rem;
    }
    
    .gateway-description {
        font-size: 1rem;
    }
    
    .gateway-images {
        height: 300px;
    }
    
    /* Contact Form - Keep 2-column layout */
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    /* Stack form fields vertically on mobile */
    .form-row {
        display: block;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    
    .contact-form input,
    .contact-form textarea {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    /* Make country code smaller and phone input larger */
    .country-code-select {
        min-width: 70px;
        max-width: 70px;
        flex-shrink: 0;
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .phone-number-input {
        flex: 1;
        min-width: 0;
        width: 100%;
    }
    
    .service-select {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 15px 50px;
        font-size: 16px;
    }
    
    /* About Page - Stack vertically */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    /* Team - Make horizontally scrollable */
    .team-grid {
        display: flex;
        overflow-x: auto;
        gap: 30px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        position: relative;
    }
    
    /* Add scroll indicator line for team */
    .team-grid::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #4fc3f7 0%, #4fc3f7 70%, transparent 100%);
        border-radius: 2px;
    }
    
    .team-member {
        min-width: 160px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 20px 15px;
    }
    
    /* Hide scrollbar but keep functionality */
    .team-grid {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .team-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .team-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .team-name {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .team-role {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .team-description {
        font-size: 0.75rem;
        line-height: 1.4;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 120px;
        margin: 0 auto;
        white-space: normal;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - further scale down but maintain layout */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .gateway-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-card {
        min-width: 160px;
    }
    
    .service-image {
        height: 107px; /* Fixed height for consistency: 160px * 2/3 */
    }
    
    .service-description {
        font-size: 0.8rem;
        line-height: 1.3;
        padding: 0 15px 20px;
        max-width: 130px;
        margin: 0 auto;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-member {
        min-width: 140px;
        padding: 15px 10px;
    }
    
    .team-image {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    
    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .team-description {
        font-size: 0.7rem;
        line-height: 1.3;
        max-width: 110px;
        margin: 0 auto;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .gateway-content {
        gap: 30px;
    }
    
    .about-content {
        gap: 30px;
    }
}