* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

body {
    background: whitesmoke;
    color: white;
}

html {
    scroll-behavior: smooth;
}


/* Hero Section */
.heroen {
    width: 100%;
    height: 40vh;
    background: linear-gradient(135deg, #002147, #004a99);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 20px;
    margin-top: 50px;
}

.hero-contenten {
    max-width: 800px;
    z-index: 2;
}

.heroen h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    animation: fadeInUp 1.2s ease-in-out;
}

.heroen h1 span {
    color: yellow;
}

.heroen p {
    font-size: 1.2rem;
    font-weight: 200;
    margin-top: 10px;
    opacity: 0.9;
    animation: fadeInUp 1.5s ease-in-out;
}

.floating-words-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-word {
    position: absolute;
    font-size: 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.1);
    animation: floatAnimation linear infinite;
}

.word1 { top: 10%; left: 5%; animation-duration: 12s; }
.word2 { top: 30%; left: 80%; animation-duration: 10s; }
.word3 { top: 60%; left: 50%; animation-duration: 15s; }
.word4 { top: 20%; left: 30%; animation-duration: 9s; }
.word5 { top: 75%; left: 10%; animation-duration: 14s; }
.word6 { top: 50%; left: 90%; animation-duration: 11s; }
.word7 { top: 40%; left: 20%; animation-duration: 13s; }
.word8 { top: 85%; left: 70%; animation-duration: 12s; }

@keyframes floatAnimation {
    0% { transform: translateY(0px) scale(1); opacity: 0.2; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.4; }
    100% { transform: translateY(0px) scale(1); opacity: 0.2; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveAnimation {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .heroen h1 {
        font-size: 2.5rem;
    }

    .heroen p {
        font-size: 1rem;
    }

    .floating-word {
        font-size: 1.5rem;
    }
}


 /* Section Styling */
 .aviation-booming {
    width: 100%;
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.aviation-booming h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002147; 
    animation: fadeInUp 1s ease-in-out;
}

.aviation-booming h2 span {
    color: #0096FF;
}

.aviation-booming p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    /* opacity: 0.9; */
    animation: fadeInUp 1.2s ease-in-out;
    color: #555;
}

.growth-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.growth-card {
    background: #f8faff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

.growth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e0f2ff, #ffffff);
}

.growth-card i {
    font-size: 45px;
    color: #0096FF; 
    margin-bottom: 15px;
    display: inline-block;
}

.growth-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #002147; 
}

.growth-card p {
    font-size: 1rem;
    opacity: 0.8;
    color: #555;
    line-height: 1.6;
}

.growth-container::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 10%;
    z-index: -1;
}

.floating-plane {
    position: absolute;
    width: 150px;
    top: 10%;
    left: -5%;
    animation: airplaneFly 10s infinite linear;
}

@keyframes airplaneFly {
    0% { left: -5%; top: 10%; transform: rotate(10deg); }
    100% { left: 105%; top: 0%; transform: rotate(5deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .growth-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aviation-booming h2 {
        font-size: 2.2rem;
    }

    .aviation-booming p {
        font-size: 1rem;
    }

    .growth-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .growth-container::before {
        display: none; 
    }
}


/* Section Styling */
.aviation-overview {
    width: 100%;
    padding: 80px 5%;
    background: #f8faff;
    text-align: center;
    position: relative;
}

.aviation-overview h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002147;
    animation: fadeInUp 1s ease-in-out;
}

.aviation-overview h2 span {
    color: #0096FF;
}

.aviation-overview p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-in-out;
    color: #555;
}

.course-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.course-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.course-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e0f2ff, #ffffff);
}

.course-icon {
    font-size: 50px;
    color: #0096FF;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 150, 255, 0.1);
}

.course-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #002147;
    margin-bottom: 25px;
}

.course-content p {
    font-size: 1rem;
    opacity: 0.8;
    color: #555;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #0096FF;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 150, 255, 0.3);
}

.learn-more:hover {
    background: #007ACC;
    box-shadow: 0px 6px 15px rgba(0, 150, 255, 0.5);
}

.learn-more::before {
    content: "✈";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
}

.learn-more:hover::before {
    left: 10px;
    opacity: 1;
}

.career-section {
    margin-top: 60px;
    padding: 40px;
    background: #002147;
    color: white;
    border-radius: 15px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-top: 25px;
}

.career-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.career-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.career-list div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .course-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .aviation-overview h2 {
        font-size: 2.2rem;
    }

    .aviation-overview p {
        font-size: 1rem;
    }

    .career-list {
        flex-direction: column;
        align-items: center;
    }

    .career-list div {
        width: 80%;
    }
}


/* Section Styling */
.cabin-crew-section {
    width: 100%;
    padding: 80px 5%;
    background: #f8faff;
    text-align: center;
    position: relative;
}

.cabin-crew-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #002147;
}

.cabin-crew-section h2 span {
    color: #0096FF;
}

.cabin-crew-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.9;
    color: #555;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.highlight-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight-box h3 {
    font-size: 1.4rem;
    color: #002147;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 1rem;
    color: #555;
}

.course-table {
    max-width: 900px;
    margin: 50px auto;
    border-collapse: collapse;
    width: 100%;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.course-table th, .course-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    color: #555;
}

.course-table th {
    background: #0096FF;
    color: white;
    font-weight: bold;
}

.course-table tr:hover {
    background: rgba(0, 150, 255, 0.1);
}

.fee-section {
    margin-top: 50px;
    text-align: center;
}

.fee-section h3 {
    font-size: 2rem;
    color: #002147;
    margin-bottom: 15px;
}

.fee-box {
    display: inline-block;
    background: #0096FF;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 150, 255, 0.3);
}

.career-section {
    margin-top: 60px;
    padding: 40px;
    background: #002147;
    color: white;
    border-radius: 15px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-top: 30px;
}

.career-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.career-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.career-list div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cabin-crew-section h2 {
        font-size: 2.2rem;
    }

    .cabin-crew-section p {
        font-size: 1rem;
    }

    .career-list {
        flex-direction: column;
        align-items: center;
    }

    .career-list div {
        width: 80%;
    }
}


/* Section Styling */
.ground-staff-section {
    width: 100%;
    padding: 80px 5%;
    background: #f8faff;
    text-align: center;
    position: relative;
}

.ground-staff-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #002147;
}

.ground-staff-section h2 span {
    color: #0096FF;
}

.ground-staff-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.9;
    color: #555;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.highlight-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight-box h3 {
    font-size: 1.4rem;
    color: #002147;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 1rem;
    color: #555;
}

.course-table {
    max-width: 900px;
    margin: 50px auto;
    border-collapse: collapse;
    width: 100%;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.course-table th, .course-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.course-table th {
    background: #0096FF;
    color: white;
    font-weight: bold;
}

.course-table tr:hover {
    background: rgba(0, 150, 255, 0.1);
}

.fee-section {
    margin-top: 50px;
    text-align: center;
}

.fee-section h3 {
    font-size: 2rem;
    color: #002147;
    margin-bottom: 15px;
}

.fee-box {
    display: inline-block;
    background: #0096FF;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 150, 255, 0.3);
}

.career-section {
    margin-top: 60px;
    padding: 40px;
    background: #002147;
    color: white;
    border-radius: 15px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-top: 30px;
}

.career-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.career-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.career-list div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ground-staff-section h2 {
        font-size: 2.2rem;
    }

    .ground-staff-section p {
        font-size: 1rem;
    }

    .career-list {
        flex-direction: column;
        align-items: center;
    }

    .career-list div {
        width: 80%;
    }
}



/* Section Styling */
.aocs-section {
    width: 100%;
    padding: 80px 5%;
    background: #f8faff;
    text-align: center;
    position: relative;
}

.aocs-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #002147;
}

.aocs-section h2 span {
    color: #0096FF;
}

.aocs-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.9;
    color: #555;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.highlight-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight-box h3 {
    font-size: 1.4rem;
    color: #002147;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 1rem;
    color: #555;
}

.course-table {
    max-width: 900px;
    margin: 50px auto;
    border-collapse: collapse;
    width: 100%;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.course-table th, .course-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.course-table th {
    background: #0096FF;
    color: white;
    font-weight: bold;
}

.course-table tr:hover {
    background: rgba(0, 150, 255, 0.1);
}

.fee-section {
    margin-top: 50px;
    text-align: center;
}

.fee-section h3 {
    font-size: 2rem;
    color: #002147;
    margin-bottom: 15px;
}

.fee-box {
    display: inline-block;
    background: #0096FF;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 150, 255, 0.3);
}

.career-section {
    margin-top: 60px;
    padding: 40px;
    background: #002147;
    color: white;
    border-radius: 15px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-top: 30px;
}

.career-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.career-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.career-list div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .aocs-section h2 {
        font-size: 2.2rem;
    }

    .aocs-section p {
        font-size: 1rem;
    }

    .career-list {
        flex-direction: column;
        align-items: center;
    }

    .career-list div {
        width: 80%;
    }
}


/* Section Styling */
.placements-section {
    width: 100%;
    padding: 80px 5%;
    background: #f8faff;
    text-align: center;
    position: relative;
}

.placements-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #002147;
}

.placements-section h2 span {
    color: #0096FF;
}

.placements-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.9;
    color: #555;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.stats-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.stats-box h3 {
    font-size: 2rem;
    color: #002147;
    margin-bottom: 10px;
}

.stats-box p {
    font-size: 1rem;
    color: #555;
}

.recruiter-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 50px auto;
}

.recruiter-logos img {
    width: 120px;
    transition: 0.3s ease-in-out;
    /* filter: grayscale(100%); */
}

.recruiter-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.process-container {
    max-width: 900px;
    margin: 60px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #002147;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .placements-section h2 {
        font-size: 2.2rem;
    }

    .placements-section p {
        font-size: 1rem;
    }

    .testimonial-slider {
        /* flex-direction: column; */
        align-items: center;
    }

    .process-container {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 100%;
    }
}


/* testimonials Section */
.testimonialsen {
    background: white; 
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.section-title2en {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 10px;
}

.section-title2en span {
    color: #1e90ff; 
}

.section-subtitle3en {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 40px;
}

.testimonial-contenten {
    background: #002147;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.courseen {
    font-weight: bold;
    color: #ffcc00;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    width: 98%;
    padding: 40px 5%;
    background: linear-gradient(90deg, #002147, #003366); 
    text-align: center;
    color: white;
    position: relative;
    border-radius: 10px;
    margin: 50px auto;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-in-out;
}

.cta-section h2 span {
    color: yellow;
}

.cta-section p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-in-out;
    color: #f1f1f1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.1);
}

.cta-btn.primary {
    background: yellow;
    color: #002147;
}

.cta-btn.secondary {
    background: white;
    color: #002147;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.2);
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 20px;
    right: 20px;
    filter: blur(30px);
    animation: glowEffect 5s infinite alternate ease-in-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowEffect {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0.6; }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 30px 5%;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}