/*******************************
Created by: Shipra Das
********************************/

/* =========================================
   FLYOLA TRAINING PHILOSOPHY
========================================= */

.flyola-training-philosophy-area {
   background: #fff;
   padding: 0;
}

.flyola-training-image {
   width: 100%;
   min-height: 300px;
   overflow: hidden;
}

.flyola-training-image img {
   width: 100%;
   height: 100%;
   min-height: 300px;
   object-fit: cover;
   display: block;
}

.flyola-training-content {
   padding: 28px 35px 22px 35px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

/* Label */
.flyola-training-label {
   display: flex;
   align-items: center;
   gap: 9px;
   margin-bottom: 5px;
}

.flyola-training-label span {
   width: 25px;
   height: 2px;
   background: #e4aa36;
   display: inline-block;
}

.flyola-training-label p {
   margin: 0;
   font-size: 12px;
   line-height: 1;
   font-weight: 600;
   letter-spacing: 1px;
   color: #26384f;
}

/* Heading */
.flyola-training-content h3 {
   margin: 0 0 10px;
   color: #123158;
   font-size: 30px;
   line-height: 35px;
   font-weight: 600;
}

/* Description */
.flyola-training-desc {
   margin: 0;
   /*max-width: 680px;*/
   color: #3d4650;
   font-size: 17px;
   line-height: 26px;
}

/* Features */
.flyola-training-features {
   margin-top: 12px;
}

/* Feature */
.flyola-training-feature {
   text-align: center;
   border-right: 1px solid #e2e5e9;
   min-height: 62px;
   padding: 0 10px;
}

.flyola-training-features > div:last-child .flyola-training-feature {
   border-right: 0;
}

/* Icon */
.flyola-feature-icon {
   height: 34px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 3px;
}

.flyola-feature-icon i {
   font-size: 25px;
   color: #e3aa37;
}

/* Feature Heading */
.flyola-training-feature h4 {
   margin: 0;
   color: #123158;
   font-size: 14px;
   line-height: 20px;
   font-weight: 500;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

   .flyola-training-image {
      min-height: 350px;
   }

   .flyola-training-image img {
      min-height: 350px;
   }

   .flyola-training-content {
      padding: 40px 25px;
   }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

   .flyola-training-image,
   .flyola-training-image img {
      min-height: 250px;
   }

   .flyola-training-content {
      padding: 30px 15px;
   }

   .flyola-training-content h3 {
      font-size: 23px;
   }

   .flyola-training-desc {
      font-size: 13px;
   }

   .flyola-training-feature {
      margin-bottom: 20px;
   }

   .flyola-training-features > div:nth-child(2) .flyola-training-feature {
      border-right: 0;
   }

   .flyola-training-features > div:nth-child(3) .flyola-training-feature {
      border-right: 1px solid #e2e5e9;
   }

}




/* =========================================
   FLYOLA STA / CTA SECTION
========================================= */

.flyola-sta-area {
   position: relative;
   background-image: url("../img/sta-bg.jpg");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   padding: 50px 0;
   z-index: 1;
   overflow: hidden;
}

.flyola-sta-overlay {
   position: absolute;
   inset: 0;
   background: rgba(5, 28, 55, 0.72);
}

.flyola-sta-content {
   position: relative;
   z-index: 2;
   max-width: 800px;
   margin: 0 auto;
}

.flyola-sta-subtitle {
   display: inline-block;
   margin-bottom: 12px;
   color: #e5ae3c;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 1.5px;
}

.flyola-sta-content h2 {
   margin: 0 0 12px;
   color: #fff;
   font-size: 45px;
   line-height: 1.2;
   font-weight: 600;
}

.flyola-sta-content p {
   max-width: 650px;
   margin: 0 auto 25px;
   color: #fff;
   font-size: 18px;
   line-height: 1.6;
}

.flyola-sta-btn a {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 28px;
   background:    #e5ae3c;
   color: #fff;
   font-size: 15px;
   font-weight: 500;
   text-decoration: none;
   border-radius: 3px;
   transition: all 0.3s ease;
}

.flyola-sta-btn a:hover {
   background: #fff;
   color: #123158;
}

.flyola-sta-btn i {
   font-size: 12px;
}


/* =========================================
   CTA - TABLET
========================================= */

@media (max-width: 991px) {

   .flyola-sta-area {
      padding: 70px 0;
   }

   .flyola-sta-content h2 {
      font-size: 34px;
   }

}


/* =========================================
   CTA - MOBILE
========================================= */

@media (max-width: 575px) {

   .flyola-sta-area {
      padding: 60px 15px;
   }

   .flyola-sta-content h2 {
      font-size: 28px;
   }

   .flyola-sta-content p {
      font-size: 14px;
   }

}


/* =========================================
   FLYOLA DIRECTOR'S MESSAGE
========================================= */

.flyola-director-area {
    position: relative;
    padding: 100px 0;
    background: #f7f5f2;
    overflow: hidden;
}

/* Background decorative shape */
.flyola-director-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    top: -180px;
    border-radius: 50%;
    background: rgba(18, 49, 88, 0.045);
    pointer-events: none;
}


/* =========================================
   IMAGE
========================================= */

.flyola-director-image-wrap {
    position: relative;
    max-width: 430px;
    margin-right: auto;
    padding: 0 25px 25px 0;
}

.flyola-director-image {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #123158;
}

.flyola-director-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(18, 49, 88, 0.28),
        transparent 45%
    );
    pointer-events: none;
}

.flyola-director-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.flyola-director-image-wrap:hover
.flyola-director-image img {
    transform: scale(1.04);
}


/* Gold border behind image */

.flyola-director-image-wrap::before {
    content: "";
    position: absolute;
    left: 25px;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #e3aa37;
    z-index: 0;
}

.flyola-director-image {
    position: relative;
    z-index: 1;
}


/* =========================================
   NUMBER BOX
========================================= */

.flyola-director-experience {
    position: absolute;
    left: -5px;
    bottom: 45px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #123158;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.flyola-director-number {
    color: #e3aa37;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.flyola-director-small {
    color: #fff;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}


/* =========================================
   PLANE ICON
========================================= */

.flyola-director-plane {
    position: absolute;
    right: 0;
    top: 35px;
    width: 58px;
    height: 58px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3aa37;
    color: #123158;
    font-size: 21px;
    transform: rotate(-15deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


/* =========================================
   CONTENT
========================================= */

.flyola-director-content {
    padding-left: 55px;
    position: relative;
}


/* Label */

.flyola-director-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.flyola-director-label span {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #e3aa37;
}

.flyola-director-label p {
    margin: 0;
    color: #023bb8;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1.8px;
}


/* Heading */

.flyola-director-content h2 {
    margin: 0 0 28px;
    max-width: 650px;
    color: #123158;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 600;
}

.flyola-director-content h2 span {
    display: block;
    color: #023bb8;
}


/* =========================================
   QUOTE
========================================= */

.flyola-director-quote {
    margin-bottom: 12px;
}

.flyola-director-quote i {
    color: #e3aa37;
    font-size: 32px;
}


/* Message */

.flyola-director-text {
    max-width: 680px;
    margin: 0 0 15px;
    color: #333;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   SIGNATURE
========================================= */

.flyola-director-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
}

.flyola-signature-line {
    width: 45px;
    height: 2px;
    background: #e3aa37;
}

.flyola-director-signature h4 {
    margin: 0 0 3px;
    color: #123158;
    font-size: 17px;
    font-weight: 600;
}

.flyola-director-signature span {
    color: #222;
    font-size: 15px;
    letter-spacing: 0.5px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .flyola-director-area {
        padding: 80px 0;
    }

    .flyola-director-content {
        padding-left: 25px;
    }

    .flyola-director-content h2 {
        font-size: 34px;
    }

    .flyola-director-image {
        height: 450px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .flyola-director-area {
        padding: 65px 0;
    }

    .flyola-director-image-wrap {
        margin: 0 auto 50px;
        max-width: 400px;
    }

    .flyola-director-content {
        padding-left: 0;
    }

    .flyola-director-content h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .flyola-director-text {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .flyola-director-area {
        padding: 50px 15px;
    }

    .flyola-director-image {
        height: 390px;
    }

    .flyola-director-experience {
        left: -5px;
        bottom: 30px;
        padding: 12px 15px;
    }

    .flyola-director-number {
        font-size: 23px;
    }

    .flyola-director-small {
        font-size: 9px;
    }

    .flyola-director-plane {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .flyola-director-content h2 {
        font-size: 26px;
    }

    .flyola-director-quote i {
        font-size: 26px;
    }

}



/* =========================================
   FLYOLA CONTACT SECTION
========================================= */

.flyola-contact-area {
    position: relative;
    padding: 100px 0;
    background: #f7f5f2;
    overflow: hidden;
}


/* =========================================
   CONTACT FORM
========================================= */

.flyola-contact-form {
    height: 100%;
    padding: 45px;
    background: #ffffff;
    border: 1px solid #e9e5df;
    box-shadow: 0 15px 45px rgba(18, 49, 88, 0.08);
}


/* Heading */

.flyola-contact-heading {
    margin-bottom: 30px;
}

.flyola-contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.flyola-contact-label span {
    width: 30px;
    height: 2px;
    background: #e3aa37;
    display: inline-block;
}

.flyola-contact-label p {
    margin: 0;
    color: #023bb8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.flyola-contact-heading h2 {
    margin: 0 0 12px;
    color: #123158;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.flyola-contact-heading h2 span {
    display: block;
    color: #023bb8;
}

.flyola-contact-heading > p {
    margin: 0;
    max-width: 570px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================
   FORM GROUP
========================================= */

.flyola-form-group {
    margin-bottom: 20px;
}

.flyola-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #123158;
    font-size: 13px;
    font-weight: 600;
}


/* Input Wrapper */

.flyola-input {
    position: relative;
}

.flyola-input i {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #e3aa37;
    font-size: 14px;
    z-index: 2;
}

.flyola-input input,
.flyola-input select,
.flyola-input textarea {
    width: 100%;
    border: 1px solid #e2e5e8;
    background: #fafafa;
    color: #26384f;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.flyola-input input,
.flyola-input select {
    height: 50px;
    padding: 0 15px 0 45px;
}

.flyola-input textarea {
    min-height: 115px;
    padding: 15px 15px 15px 45px;
    resize: vertical;
}

.flyola-input select {
    cursor: pointer;
    appearance: auto;
}

.flyola-input input::placeholder,
.flyola-input textarea::placeholder {
    color: #9ba1a7;
}


/* Focus */

.flyola-input input:focus,
.flyola-input select:focus,
.flyola-input textarea:focus {
    border-color: #e3aa37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(227, 170, 55, 0.08);
}


/* Textarea Icon */

.flyola-textarea i {
    top: 18px;
    transform: none;
}


/* =========================================
   BUTTON
========================================= */

.flyola-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 175px;
    height: 52px;
    padding: 0 25px;
    border-radius: 10px;
    background: #123158;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
}

.flyola-contact-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.flyola-contact-btn:hover {
    background: #e3aa37;
    color: #fff;
}

.flyola-contact-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   MAP
========================================= */

.flyola-contact-map {
    position: relative;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    background: #123158;
    box-shadow: 0 15px 45px rgba(18, 49, 88, 0.12);
}

.flyola-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    filter: grayscale(15%);
}


/* =========================================
   MAP INFO CARD
========================================= */

.flyola-map-card {
    position: absolute;
    left: 25px;
    bottom: 25px;
    right: 25px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 20px;
    background: rgba(18, 49, 88, 0.96);
    border-left: 4px solid #e3aa37;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.flyola-map-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e3aa37;
    color: #123158;
    font-size: 17px;
}

.flyola-map-card span {
    display: block;
    margin-bottom: 3px;
    color: #e3aa37;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.flyola-map-card h4 {
    margin: 0 0 2px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.flyola-map-card p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .flyola-contact-area {
        padding: 80px 0;
    }

    .flyola-contact-form {
        padding: 35px;
    }

    .flyola-contact-heading h2 {
        font-size: 32px;
    }

    .flyola-contact-map {
        min-height: 500px;
        margin-top: 30px;
    }

    .flyola-contact-map iframe {
        min-height: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .flyola-contact-area {
        padding: 55px 15px;
    }

    .flyola-contact-form {
        padding: 28px 20px;
    }

    .flyola-contact-heading h2 {
        font-size: 27px;
    }

    .flyola-contact-heading > p {
        font-size: 14px;
    }

    .flyola-contact-map {
        min-height: 420px;
        margin-top: 25px;
    }

    .flyola-contact-map iframe {
        min-height: 420px;
    }

    .flyola-map-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 14px;
    }

}


/* =========================================
   FLYOLA TRAINING LOCATIONS
========================================= */

.flyola-locations-area {
    position: relative;
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}


/* =========================================
   SECTION HEADING
========================================= */

.flyola-locations-heading {
    max-width: 750px;
    margin: 0 auto 35px;
}

.flyola-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.flyola-section-label span {
    width: 30px;
    height: 1px;
    background: #e3aa37;
}

.flyola-section-label p {
    margin: 0;
    color: #023bb8;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.flyola-locations-heading h2 {
    margin: 0 0 15px;
    color: #123158;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
}

.flyola-locations-heading h2 span {
    color: #023bb8;
}

.flyola-locations-heading > p {
    max-width: 650px;
    margin: 0 auto;
    color: #333;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================================
   LOCATION CARD
========================================= */

.flyola-location-card {
    position: relative;
    margin-bottom: 50px;
    background: #f7f8fa;
    border: 1px solid #e8ebef;
    box-shadow: 0 15px 45px rgba(18, 49, 88, 0.07);
    overflow: hidden;
    transition: all 0.4s ease;
}

.flyola-location-card:hover {
    box-shadow: 0 20px 55px rgba(18, 49, 88, 0.12);
    transform: translateY(-3px);
}


/* =========================================
   IMAGE
========================================= */

.flyola-location-image {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.flyola-location-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 32, 61, 0.65),
        transparent 55%
    );
}

.flyola-location-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.flyola-location-card:hover
.flyola-location-image img {
    transform: scale(1.05);
}


/* =========================================
   LOCATION NUMBER
========================================= */

.flyola-location-number {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px;
    background: rgba(18, 49, 88, 0.94);
    border-left: 3px solid #e3aa37;
}

.flyola-location-number span {
    color: #e3aa37;
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
}

.flyola-location-number small {
    color: #fff;
    font-size: 9px;
    line-height: 13px;
    letter-spacing: 1px;
}


/* =========================================
   CONTENT
========================================= */

.flyola-location-content {
    height: 100%;
    padding: 45px 45px 40px;
    background: #fff5ee;
}


/* Top */

.flyola-location-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.flyola-location-label {
    display: block;
    margin-bottom: 7px;
    color: #023bb8;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.flyola-location-top h3 {
    margin: 0;
    color: #123158;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.flyola-location-top h3 span {
    color: #023bb8;
}


/* Location Icon */

.flyola-location-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #123158;
    color: #e3aa37;
    font-size: 21px;

    transition: all 0.3s ease;
}

.flyola-location-card:hover
.flyola-location-icon {
    background: #e3aa37;
    color: #123158;
}


/* Description */

.flyola-location-description {
    max-width: 620px;
    margin: 0 0 25px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================
   FEATURES
========================================= */

.flyola-location-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 25px;
    padding: 18px 0;
    border-top: 1px solid #e2e5e9;
    border-bottom: 1px solid #e2e5e9;
}

.flyola-location-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-right: 1px solid #e2e5e9;
}

.flyola-location-feature:first-child {
    padding-left: 0;
}

.flyola-location-feature:last-child {
    border-right: 0;
}

.flyola-location-feature > i {
    color: #e3aa37;
    font-size: 18px;
}

.flyola-location-feature strong {
    display: block;
    color: #123158;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.flyola-location-feature span {
    display: block;
    margin-top: 3px;
    color: #333;
    font-size: 14px;
    line-height: 1.3;
}


/* =========================================
   ADDRESS
========================================= */

.flyola-location-address {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
}

.flyola-location-address > i {
    color: #e3aa37;
    font-size: 19px;
}

.flyola-location-address span {
    display: block;
    margin-bottom: 3px;
    color: #023bb8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.flyola-location-address p {
    margin: 0;
    color: #333;
    font-size: 16px;
}


/* =========================================
   BUTTON
========================================= */

.flyola-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 23px;

    background: #123158;
    color: #fff;

    font-size: 13px;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.35s ease;
}

.flyola-location-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.flyola-location-btn:hover {
    background: #023bb8;
    color: #fff;
}

.flyola-location-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   MAP
========================================= */

.flyola-location-map {
    height: 240px;
    border-top: 1px solid #e3e6e9;
}

.flyola-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}


/* =========================================
   SECOND CARD
========================================= */

.flyola-location-card-reverse {
    margin-bottom: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .flyola-locations-area {
        padding: 80px 0;
    }

    .flyola-locations-heading h2 {
        font-size: 35px;
    }

    .flyola-location-image,
    .flyola-location-image img {
        min-height: 400px;
    }

    .flyola-location-content {
        padding: 35px 30px;
    }

    .flyola-location-top h3 {
        font-size: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .flyola-locations-area {
        padding: 60px 15px;
    }

    .flyola-locations-heading {
        margin-bottom: 35px;
    }

    .flyola-locations-heading h2 {
        font-size: 29px;
    }

    .flyola-locations-heading > p {
        font-size: 15px;
    }

    .flyola-location-card {
        margin-bottom: 35px;
    }

    .flyola-location-image,
    .flyola-location-image img {
        min-height: 300px;
        height: 300px;
    }

    .flyola-location-content {
        padding: 30px 22px;
    }

    .flyola-location-top h3 {
        font-size: 27px;
    }

    .flyola-location-description {
        font-size: 14px;
    }

    .flyola-location-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .flyola-location-feature,
    .flyola-location-feature:first-child {
        padding: 0;
        border-right: 0;
    }

    .flyola-location-map {
        height: 280px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .flyola-section-label p {
        font-size: 13px;
    }

    .flyola-locations-heading h2 {
        font-size: 26px;
    }

    .flyola-location-number {
        left: 15px;
        bottom: 15px;
    }

    .flyola-location-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        font-size: 16px;
    }

}


/********************************************************************/


/* =========================================
   FLYOLA - WHY FLYOLA PREMIUM SECTION
========================================= */

.flyola-why-area {
   position: relative;
   overflow: hidden;
   padding: 50px 0 50px;
   background: #eee;
   isolation: isolate;
}

.flyola-why-area::before {
   content: "";
   position: absolute;
   width: 650px;
   height: 650px;
   top: -280px;
   right: -180px;
   border-radius: 50%;
   background: rgba(40, 91, 180, 0.18);
   filter: blur(20px);
   z-index: -1;
}

.flyola-why-area::after {
   content: "";
   position: absolute;
   width: 500px;
   height: 500px;
   bottom: -280px;
   left: -200px;
   border-radius: 50%;
   background: rgba(238, 171, 55, 0.08);
   filter: blur(30px);
   z-index: -1;
}


/* Heading */

.flyola-why-heading {
   max-width: 760px;
   margin: 0 auto 60px;
   text-align: center;
}

.flyola-why-subtitle {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 14px;
   margin-bottom: 18px;

   color: #023bb8;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
}

.flyola-why-subtitle span {
   width: 38px;
   height: 1px;
   background: #e5b64b;
}

.flyola-why-heading h2 {
   margin: 0 0 20px;
   color: #123158;
   font-size: 42px;
   line-height: 1.2;
   font-weight: 600;
   letter-spacing: -1.5px;
}

.flyola-why-heading h2 strong {
   color: #023bb8;
   font-weight: 600;
}

.flyola-why-heading p {
   max-width: 750px;
   margin: auto;
   color: rgba(0,0,0,0.80);
   font-size: 17px;
   line-height: 1.6;
}


/* Grid */

.flyola-why-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
}


/* Cards */

.flyola-why-card {
   position: relative;
   min-height: 270px;
   padding: 30px 25px;
   overflow: hidden;

   border: 1px solid rgba(255,255,255,0.60);
   border-radius: 18px;
   background: #072058;

   /*background:*/
      linear-gradient(
         145deg,
         rgba(255,255,255,0.075),
         rgba(255,255,255,0.025)
      );

   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);

   transition: all 0.4s ease;
}

.flyola-why-card::before {
   content: "";
   position: absolute;
   width: 90px;
   height: 3px;
   left: 32px;
   top: 0;
   background: #e5b64b;
   transition: width 0.4s ease;
}

.flyola-why-card:hover {
   transform: translateY(-8px);
   border-color: rgba(229,182,75,0.45);
   box-shadow: 0 5px 5px rgba(0,0,0,0.45);
}

.flyola-why-card:hover::before {
   width: 150px;
}


/* Number */

.flyola-why-number {
   position: absolute;
   top: 25px;
   right: 27px;

   color: rgba(255,255,255,0.09);
   font-size: 52px;
   line-height: 1;
   font-weight: 600;
}


/* Icon */

.flyola-why-icon {
   display: flex;
   align-items: center;
   justify-content: center;

   width: 58px;
   height: 58px;
   margin-bottom: 27px;

   border: 1px solid rgba(229,182,75,0.4);
   border-radius: 14px;

   background: rgba(229,182,75,0.09);
   color: #e5b64b;

   font-size: 22px;

   transition: all 0.3s ease;
}

.flyola-why-card:hover .flyola-why-icon {
   background: #e5b64b;
   color: #071a3d;
   transform: rotate(-5deg);
}


/* Content */

.flyola-why-content h3 {
   margin: 0 0 12px;

   color: #ffffff;
   font-size: 22px;
   line-height: 1.3;
   font-weight: 500;
}

.flyola-why-content p {
   margin: 0;

   color: rgba(255,255,255,0.80);
   font-size: 16px;
   line-height: 1.6;
}


/* Bottom */

.flyola-why-bottom {
   display: flex;
   align-items: center;
   gap: 40px;

   margin-top: 60px;
   padding-top: 35px;

   border-top: 1px solid rgba(255,255,255,0.70);
}

.flyola-why-bottom-line {
   display: none;
}


/* Quote */

.flyola-why-quote {
   display: flex;
   align-items: center;
   gap: 18px;
   flex: 1;
}

.flyola-why-quote-icon {
   display: flex;
   align-items: center;
   justify-content: center;

   width: 48px;
   height: 48px;
   flex: 0 0 48px;

   border-radius: 50%;
   background: rgba(229,182,75,0.40);
   color: #e5b64b;
}

.flyola-why-quote strong {
   display: block;
   margin-bottom: 5px;

   color: #071a3d;
   font-size: 25px;
}

.flyola-why-quote p {
   margin: 0;
   color: rgba(0,0,0,0.85);
   font-size: 16px;
}


/* CTA */

.flyola-why-btn {
   display: inline-flex;
   align-items: center;
   gap: 18px;

   padding: 16px 25px;

   border: 1px solid #e5b64b;
   border-radius: 50px;

   color: #071a3d;
   background: #e5b64b;

   font-size: 16px;
   font-weight: 600;
   text-decoration: none;

   transition: all 0.3s ease;
}

.flyola-why-btn span {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   width: 28px;
   height: 28px;

   border-radius: 50%;
   background: #071a3d;
   color: #ffffff;

   transition: transform 0.3s ease;
}

.flyola-why-btn:hover {
   color: #111;
   background: #fff;
}

.flyola-why-btn:hover span {
   transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

   .flyola-why-heading h2 {
      font-size: 46px;
   }

   .flyola-why-grid {
      grid-template-columns: repeat(2, 1fr);
   }

}


@media (max-width: 767px) {

   .flyola-why-area {
      padding: 80px 0;
   }

   .flyola-why-heading {
      margin-bottom: 40px;
   }

   .flyola-why-heading h2 {
      font-size: 36px;
   }

   .flyola-why-heading p {
      font-size: 14px;
   }

   .flyola-why-grid {
      grid-template-columns: 1fr;
      gap: 16px;
   }

   .flyola-why-card {
      min-height: auto;
      padding: 30px 25px;
   }

   .flyola-why-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 25px;
   }

   .flyola-why-btn {
      width: 100%;
      justify-content: center;
   }

}


/*******************************************************/



/*=============================*/
    IIAG CERTIFICATE SECTION
=========================================*/

.iiag-certificate-sec {
    position: relative;
    padding: 30px 0 60px;
    background: #f7faff;
}

.iiag-certificate-sec .sec-title p {
    line-height: 1.8;
    color: #222;
    font-size: 18px;
    max-width: 950px;
    margin: 0 auto 30px;
}


/*=========================================
    CERTIFICATE CARD
=========================================*/

.certificate-card {
    position: relative;
    height: 100%;
    background: #0b366e;
    border: 1px solid #ddd;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    transition: all .4s ease;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .45);
}


/*=========================================
    CERTIFICATE IMAGE
=========================================*/

.certificate-img {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #fff;
}

.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.certificate-card:hover .certificate-img img {
    transform: scale(1.02);
}


/*=========================================
    OVERLAY BUTTON
=========================================*/

.certificate-overlay {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    outline: none !important;

    background: rgba(7, 48, 110, .72) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    opacity: 0;
    visibility: hidden;

    cursor: pointer;

    transition: all .35s ease;

    z-index: 5;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
    visibility: visible;
}

.certificate-overlay span {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #fff;

    color: #0b4db8;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    transform: scale(.6);

    transition: all .35s ease;
}

.certificate-card:hover .certificate-overlay span {
    transform: scale(1);
}


/*=========================================
    CERTIFICATE CONTENT
=========================================*/

.certificate-content {
    padding: 15px 20px 18px;
    border-top: 3px solid #023bb8;
}

.certificate-content h4 {
    margin: 0 0 10px;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.certificate-content p {
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    color: #ddd;
    font-size: 16px;
    font-weight: 400;
}


/*=========================================
    LIGHTBOX
=========================================*/

.iiag-lightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .92);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 90px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition: opacity .3s ease;

    z-index: 999999;
}

.iiag-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Image */

.iiag-lightbox-inner {
    width: auto;
    max-width: 90%;
    max-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.iiag-lightbox-inner img {
    display: block;

    max-width: 100%;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    background: #fff;

    box-shadow: 0 20px 60px rgba(0,0,0,.5);

    border-radius: 2px;
}


/*=========================================
    CLOSE BUTTON
=========================================*/

.iiag-lightbox-close {

    position: fixed;

    top: 20px;
    right: 25px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: #111;

    font-size: 35px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    transition: all .3s ease;
}

.iiag-lightbox-close:hover {
    background: #e63c35;
    color: #fff;
    transform: rotate(90deg);
}


/*=========================================
    PREVIOUS / NEXT
=========================================*/

.iiag-lightbox-prev,
.iiag-lightbox-next {

    position: fixed;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #0b4db8;

    font-size: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    transition: all .3s ease;
}

.iiag-lightbox-prev {
    left: 25px;
}

.iiag-lightbox-next {
    right: 25px;
}

.iiag-lightbox-prev:hover,
.iiag-lightbox-next:hover {

    background: #0b4db8;

    color: #fff;

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width: 767px) {

    .iiag-certificate-sec {
        padding: 30px 0 50px;
    }

    .iiag-certificate-sec .sec-title p {
        width: 100%;
        font-size: 15px;
    }

    .certificate-img {
        height: 350px;
    }

    .iiag-lightbox {
        padding: 50px 20px;
    }

    .iiag-lightbox-inner {
        max-width: 95%;
    }

    .iiag-lightbox-inner img {
        max-height: 80vh;
    }

    .iiag-lightbox-prev,
    .iiag-lightbox-next {

        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .iiag-lightbox-prev {
        left: 10px;
    }

    .iiag-lightbox-next {
        right: 10px;
    }

    .iiag-lightbox-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

}


/***************************************************************/


/* =========================================
   FLYOLA COURSES SECTION
========================================= */

.flyola-courses-area {
   position: relative;
   background: #f7f9fc;
   overflow: hidden;
}


/* Heading */

.flyola-courses-heading {
   max-width: 720px;
   margin-left: auto;
   margin-right: auto;
}

.flyola-courses-subtitle {
   display: inline-block;
   margin-bottom: 13px;

   color: #1657b8;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 3px;
   text-transform: uppercase;
}

.flyola-courses-title {
   margin: 0 0 5px;

   color: #071d49;
   font-size: 45px;
   line-height: 1.15;
   font-weight: 600;
}

.flyola-courses-title span {
   color: #1657b8;
}

.flyola-courses-heading p {
   margin: 0;

   color: #333;
   font-size: 18px;
   line-height: 1.6;
}


/* Course Card */

.flyola-course-card {
   height: 100%;
   overflow: hidden;

   border: 1px solid #e5eaf1;
   border-radius: 18px;

   background: #ffffff;

   box-shadow: 0 5px 15px rgba(7, 29, 73, 0.09);

   transition: all 0.4s ease;
}

.flyola-course-card:hover {
   transform: translateY(-8px);
   border-color: rgba(22, 87, 184, 0.25);
   box-shadow: 0 10px 15px rgba(7, 29, 73, 0.13);
}


/* Image */

.flyola-course-image {
   position: relative;
   height: 500px;
   overflow: hidden;
}

.flyola-course-image img {
   width: 100%;
   height: 100%;

   object-fit: cover;

   transition: transform 0.6s ease;
}

.flyola-course-card:hover .flyola-course-image img {
   transform: scale(1.06);
}


/* Image Overlay */

.flyola-course-image::after {
   content: "";
   position: absolute;
   inset: 0;

   background: linear-gradient(
      to top,
      rgba(5, 24, 57, 0.65),
      transparent 55%
   );
}


/* Number */

.flyola-course-number {
   position: absolute;
   z-index: 2;

   top: 18px;
   right: 18px;

   display: flex;
   align-items: center;
   justify-content: center;

   width: 44px;
   height: 44px;

   border: 1px solid rgba(255,255,255,0.5);
   border-radius: 50%;

   background: rgba(7, 29, 73, 0.75);
   backdrop-filter: blur(8px);

   color: #ffffff;
   font-size: 15px;
   font-weight: 600;
}


/* Content */

.flyola-course-content {
   padding: 25px 20px 20px;
}

.flyola-course-tag {
   display: inline-block;
   margin-bottom: 12px;

   color: #1657b8;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 1.5px;
}

.flyola-course-content h3 {
   /*min-height: 52px;*/
   margin: 0 0 12px;

   color: #071d49;
   font-size: 22px;
   line-height: 1.3;
   font-weight: 600;
}

.flyola-course-content p {
   /*min-height: 68px;*/
   margin: 0 0 20px;

   color: #333;
   font-size: 16px;
   line-height: 1.6;
}


/* Link */

.flyola-course-link {
   display: inline-flex;
   align-items: center;
   gap: 12px;

   color: #071d49;

   font-size: 14px;
   font-weight: 700;
   text-decoration: none;

   transition: all 0.3s ease;
}

.flyola-course-link span {
   display: flex;
   align-items: center;
   justify-content: center;

   width: 30px;
   height: 30px;

   border-radius: 50%;

   background: #1657b8;
   color: #ffffff;

   font-size: 16px;

   transition: all 0.3s ease;
}

.flyola-course-link:hover {
   color: #1657b8;
}

.flyola-course-link:hover span {
   transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

   .flyola-courses-title {
      font-size: 42px;
   }

   .flyola-course-image {
      height: 220px;
   }

}


@media (max-width: 767px) {

   .flyola-courses-area {
      padding-top: 70px;
      padding-bottom: 70px;
   }

   .flyola-courses-title {
      font-size: 34px;
   }

   .flyola-courses-heading p {
      font-size: 14px;
   }

   .flyola-course-image {
      height: 230px;
   }

}