﻿/*header*/
:root {
    --fj-blue: #013365;
    --fj-yellow: #ff9900;
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
}

body {
    margin: 0;
    padding: 0;
}

/* Header base */
.fj-header {
    background: var(--fj-blue);
    border-bottom: 3px solid var(--fj-yellow);
    position: fixed; /* make the header fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* stays above all content */
}

.fqcolor {
    color: var(--fj-blue);
}
/* Logo */
.fj-logo img {
    height: 65px;
}

/* Menu layout */
.fj-menu {
    display: flex;
    align-items: center;
    gap: 28px; /* optional: smaller spacing between menu items */
    margin: 0 10px 0 0; /* Reduce gap between UL and button */
}


/* Menu link text color */
.fj-link {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    padding: 6px 0;
}

    .fj-link:hover {
        opacity: 0.8;
    }
#trackClaimBtn {
    background-color: var(--fj-yellow) !important;
    color: #000 !important; /* optional for readability */
    border: none;
}

/* Circle outline chevron */
.fj-menu-item .fj-chevron {
    color: var(--fj-yellow); /* arrow color */
    border: 2px solid var(--fj-yellow); /* ring */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px; /* arrow size */
    margin-left: 5px;
    background-color: var(--fj-blue); /* same as header so inside looks blue */
    transition: transform 0.3s ease-in-out;
}

/* Rotate on hover */
.fj-menu-item:hover .fj-chevron {
    transform: rotate(180deg);
}


/* Small check circle */
.fj-circle-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--fj-yellow);
    font-size: 9px;
    color: var(--fj-yellow);
    margin-left: 4px;
}

/* Flag icon */
.fj-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 4px;
}
/* Main button */
.fj-elig-btn {
    background: var(--fj-yellow);
    color: #000 !important; /* Always black text */
    font-weight: 200;
    border-radius: 999px;
    padding: 8px 28px;
    font-size: 12px;
    box-shadow: none; /* Remove shadow if you want */
    border: none;
    cursor: pointer;
}

    /* Disable hover effect entirely */
    .fj-elig-btn:hover {
        background: var(--fj-yellow) !important;
        color: #000 !important;
        filter: none !important;
        transform: none !important;
    }

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 10px;
}

.fj-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dropdown */
.fj-menu-item {
    position: relative;
}
.fj-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 3px; /* remove gap that causes flicker */
    padding-top: 10px; /* invisible hover buffer */
    background: var(--fj-blue);
    border: 1px solid var(--fj-yellow);
    border-radius: 8px;
    padding: 10px 18px;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 999;
    pointer-events: none; /* Prevent hover loss glitch */
}

.fj-has-dropdown:hover .fj-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* clickable when visible */
}
.fj-dropdown a {
    display: block;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    padding: 4px 0;
}

    .fj-dropdown a:hover {
        background: rgba(0, 0, 0, 0.35); /* black transparent background */
        text-decoration: none;
        border-radius: 6px;
        padding-left: 8px; /* slight indent effect */
        box-shadow: 0 0 6px rgba(0,0,0,0.4); /* hover shadow */
    }


/* Mobile adjustments */
@media (max-width: 767.98px) {
    .fj-header .container {
        padding-inline: 12px;
    }
}
/*<====header======>*/

/*<=======Footer======>*/
.fj-footer {
    background: var(--fj-blue);
    color: #fff;
    font-size: 14px;
}

    .fj-footer .fj-tagline {
        font-weight: 600;
        color: var(--fj-yellow);
    }

.fj-links a {
    color: #fff;
    text-decoration: none;
    line-height: 1.9rem;
}

    .fj-links a:hover {
        text-decoration: underline;
    }

.fj-social-icon-link {
    width: 70px; /* bigger icon */
    height: 50px;
    display: inline-block;
    transition: transform .25s ease, opacity .25s ease;
}
.fj-social-icon {
    width: 25px; /* bigger icon */
    height: 25px;
    display: inline-block;
    transition: transform .25s ease, opacity .25s ease;
}

    .fj-social-icon:hover {
        transform: scale(1.15); /* zoom effect */
        opacity: 0.8;
    }

.fj-hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-top: 10px;
}

.fj-copy {
    font-size: 13px;
    opacity: 0.9;
}
/*<=====Footer==>*/


/*<====compensationcss======>*/

/* ==== SIDEBAR ==== */
.sidebar {
    width: 400px;
    height: 100vh;
    background: var(--fj-blue);
    color: #fff;
    padding: 30px;
    padding-top: 15px;
    position: fixed;
    left: 0;
    top: 0;
}

    .sidebar img {
        max-height: 120px;
        width: 150px;
    }

    /* FULL WIDTH TOP YELLOW LINE BELOW LOGO */
    .sidebar::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100px;
        height: 3px;
        background: var(--fj-yellow);
    }

.steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

  
        .steps li i {
            position: absolute;
            left: 0;
            font-size: 22px;
           
        }

    .steps li {
        position: relative;
        padding: 0 0 50px 35px; /* increase bottom space */
        font-size: 16px;
        display: flex;
        font-weight:200;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

        .steps li:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 8px; /* align under icon */
            top: 35px; /* start line further down */
            width: 2px;
            height: 45px; /* bigger line */
            border-left: 2px dashed #8099b2;
        }


      

/* ==== HEADER TEXT & FULL YELLOW LINE ==== */
.header {
    position: fixed;
    left: 400px;
    right: 0;
    top: 0;
    padding-top: 59px;
    background: #fff;
    z-index: 10;
}

    .header h2 {
        font-size: 26px;
        font-weight: 700;
        margin-left: 100px;
        margin-bottom: 10px;
        color: #000;
    }

.full-yellow-line {
    height: 5px;
    background: var(--fj-yellow);
    width: 100%;
}

/* ===== SCROLLABLE CONTENT ===== */
.content {
    position: absolute;
    left: 300px;
    right: 0;
    top: 105px;
    bottom: 0;
    overflow-y: auto;
    padding: 0 120px 40px;
}

.form-area {
    width: 100%;
    max-width: 900px;
    margin-left:20px;
}

.field-label {
    
    font-weight: 600;
    font-size: 20px;
    color: #364153;
   
}

.fj-input.full {
    width: 100%;
    height: 56px;
    border: 2px solid var(--fj-yellow);
    border-radius: 10px;
    padding: 0 50px;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}
.fulls {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    padding: 0 50px;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.input-icon, .date-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #666;
}

.flight-btn.full {
    width: 100%;
}

.flight-btn {
    border: 2px solid var(--fj-yellow);
    height: 56px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #013365;
}

    /* Do NOT change button background on active */
    .flight-btn.active {
        background: #fff;
    }

/* Outer radio circle */
.radio-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--fj-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Inner active dot fill */
    .radio-dot::after {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: transparent;
    }

/* When active, inner is yellow & outer border stays blue */
.flight-btn.active .radio-dot::after {
    background: var(--fj-yellow);
}
.help-icon {
    font-size: 15px;
    color: var(--fj-yellow);
    margin-left: 8px;
    cursor: pointer;
    position: relative;
}

    
.problem-details {
    padding-left: 10px;
    transition: all .3s ease;
}
.problem-btn {
    margin-top: 10px;
}
.problem-days  {
    margin-top: 10px;
}
.delay-btn {
    margin-top: 10px;
}
.denied-btn {
    margin-top: 10px;
}
.denied-reason-btn {
    margin-top: 10px;
}
.summary-box-custom {
    border: 2px solid #003B73;
    border-radius: 18px;
    background: white;
    padding: 18px 28px;
    box-shadow: 6px 6px 0px #003B73;
    position: relative;
}

.summary-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-success {
    color: #003B73;
    font-weight: 600;
}

.edit-details {
    color: #ff9900;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.summary-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-side i {
    font-size: 28px;
    color: #003B73;
}

.airport-title {
    font-weight: 700;
    color: #003B73;
    margin-bottom: 4px;
}

.divider-line {
    border-bottom: 1px dashed #767676;
    margin: 8px auto;
    width: 65%;
}

.airline-info {
    font-size: 16px;
    color: #003B73;
}

.flight-date {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-top: -5px;
}

.add-layover-btn, .add-more-layover {
    border: 2px dashed #ff9900;
    padding: 12px 15px;
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    color: #ff9900;
    width: 100%;
    text-align: left;
}

.layover-block {
    border: 2px solid #ff9900;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.alert-note {
    font-size: 14px;
    color: #666;
}
.add-layover-input {
    border: 2px solid #ff9900;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
}

.layover-icon {
    width: 30px; /* adjust size as required */
    height: auto;
    margin-right: 12px;
}





    .add-layover-input i {
        font-size: 18px;
        color: #ff9900;
        margin-right: 12px;
    }

.layover-textbox {
    border: none;
    width: 100%;
    outline: none;
    font-size: 15px;
    background: transparent;
}
.icon-input {
    position: relative;
}

.input-img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
}

.fj-input.full {
    padding-left: 42px;
    border: 2px solid #ff9900;
    border-radius: 8px;
    height: 52px;
    width: 100%;
}

.add-more-layover {
    background: none;
    border: none;
    color: #ff9900;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin-top: 8px;
}

.layover-note {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}
.disruption-check {
    gap: 8px;
    margin-top: 2px;
}

.fj-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
    accent-color: var(--fj-yellow) !important;
}
.form-check-input.fj-checkbox {
    accent-color: var(--fj-yellow) !important;
}
    .form-check-input.fj-checkbox:checked {
        background-color: var(--fj-yellow) !important;
        border-color: var(--fj-yellow) !important;
        accent-color: var(--fj-yellow) !important;
    }


.disruption-label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.custom-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 6px;
}

    .custom-tooltip .tooltip-text {
        visibility: hidden;
        opacity: 0;
        width: 260px;
        background-color: #003B73;
        color: #fff;
        text-align: left;
        padding: 10px 14px;
        border-radius: 6px;
        font-size: 13px;
        line-height: 1.4;
        position: absolute;
        top: 50%;
        left: 120%;
        transform: translateY(-50%);
        z-index: 1000;
        transition: opacity 0.25s ease;
    }

        /* Triangle pointer */
        .custom-tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -7px;
            border-width: 7px;
            border-style: solid;
            border-color: transparent #003B73 transparent transparent;
        }

    /* Show tooltip on hover */
    .custom-tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
.remove-layover-btn {
    border: none;
    background: none;
    color: #003B73;
    font-weight: 700;
    margin-bottom: 5px;
}

.extra-layover-block {
   
   
    border-radius: 6px;
}
.add-more-layover:disabled {
    pointer-events: none;
}
/* wrapper to push the button to the right */
.next-btn-wrapper {
    text-align: right;
}

/* button look */
.next-btn-custom {
    background: #ff9900;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.1s ease;
}

    .next-btn-custom:hover {
        background: #e4950c;
        transform: translateY(-1px);
    }

.icon-circle {
    background: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-circle i {
        color: #fff;
        font-size: 13px;
    }


/*<====compensationcss======>*/
/*<====step2======>*/
/* Little orange dot after labels */
.required-dot {
    color: #ff9900;
    font-size: 10px;
    vertical-align: middle;
    margin-left: 4px;
}

/* Consent section */
.consent-section {
    margin-top: 30px;
}

.consent-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #002D5B;
}

.consent-subtext {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.consent-label {
    font-size: 13px;
    color: #444;
}

.consent-link {
    color: #ff9900;
    text-decoration: none;
}

    .consent-link:hover {
        text-decoration: underline;
    }

/* Bottom navigation (Back + Next) */
.step-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nav-btn {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Back button (white) */
.back-btn {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    color: #002D5B;
}

/* Re-use your existing next-btn-custom, only ensure it’s inline-flex */
.next-btn-custom {
    background: #ff9900;
    color: #000;

    border: none;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.icon-circle-outline {
    background: #fff;
    border: 2px solid #000;
}

/* Make title / travel buttons re-use your orange "radio" style */
.title-option,
.travel-option {
    width: 100%;
    justify-content: space-between;
}
.small-title-buttons button {
    width: 100%;
    padding: 10px 12px;
    font-size: 17px;
    font-weight:600;
}
.signature-box {
    border: 2px solid #ff9900;
    border-radius: 12px;
    padding: 25px;
}

.signature-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.signature-canvas {
    width: 100%;
    height: 200px;
    border: 1px dashed #ff9900;
    border-radius: 10px;
    background: #fff;
    cursor: crosshair;
}

.clear-sign-btn {
    padding: 6px 15px;
    border: 1px solid #ff9900;
    background: rgba(246, 164, 26, .15);
    color: #ff9900;
    border-radius: 6px;
    font-weight: 600;
}

.signature-secure-note {
    font-size: 13px;
    margin-top: 10px;
    color: #334;
}

.legal-section .legal-check {
    margin-top: 12px;
}
/* Default step color */
.steps li {
    color: #ffffff;
}

    .steps li i {
        color: #ffffff;
    }

    /* Active and completed steps = Yellow */
    .steps li.active,
    .steps li.completed {
        color: #ff9900 !important;
        font-weight: 700 !important;
    }

        .steps li.active i,
        .steps li.completed i {
            color: #ff9900 !important;
        }


/* ===================== */
/* MOBILE RESPONSIVE FIX */
/* ===================== */
/* ===== MOBILE VIEW RESPONSIVE ===== */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .sidebar {
        display: none !important;
    }

    .header {
        left: 0 !important;
        right: 0 !important;
        padding: 12px 10px !important;
        position: relative !important;
        text-align: center !important;
    }

        .header h2,
        #pageHeader {
            margin-left: 0 !important;
            font-size: 18px !important;
        }

    .content {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 10px 14px !important;
        overflow-x: hidden !important;
    }

    .form-area {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .fj-input.full {
        width: 100% !important;
        height: 48px !important;
        padding-left: 46px !important;
        font-size: 15px !important;
    }

    .input-icon,
    .date-icon,
    .input-img {
        left: 14px !important;
        font-size: 18px !important;
    }

    .flight-btn,
    .nav-btn,
    .title-option,
    .travel-option {
        width: 100% !important;
        height: 48px !important;
        padding: 10px 16px !important;
        font-size: 15px !important;
    }

    /* FINAL - Buttons small and aligned right */
    .step-nav {
        width: 100% !important;
        display: flex !important;
        justify-content: flex-end !important;
        flex-direction: row !important;
        gap: 10px !important;
        margin-top: 22px !important;
    }

    .back-btn {
        width: auto !important;
        padding: 10px 18px !important;
        font-size: 14px !important;
    }

    .next-btn-custom {
        width: auto !important;
        padding: 10px 22px !important;
        font-size: 14px !important;
    }

    .icon-circle {
        width: 26px !important;
        height: 26px !important;
        font-size: 12px !important;
    }

    .signature-canvas {
        height: 170px !important;
    }

    .summary-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .summary-side {
        display: none !important;
    }
}
.error-message {
    color: red;
    font-size: 12px;
    margin-top: 2px;
    display: none;
}

.fj-input.error {
    border: 1px solid red !important;
}

/* ===== Upload Section Styling ===== */
.upload-box {
    border: 3px solid #ff9900;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    min-height: 230px;
}

.upload-title {
    font-size: 18px;
    font-weight: 700;
    color: #003B73;
    margin-bottom: 15px;
}

.upload-icon {
    width: 95px;
    margin: 10px auto 15px auto;
    display: block;
}

.upload-btn {
    border: 2px solid #ff9900;
    padding: 10px 26px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    background: white;
}

    .upload-btn i {
        margin-right: 8px;
        color: #003B73;
    }

.upload-main-btn {
    background: #003B73;
    padding: 12px 26px;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}

.or-text {
    font-size: 18px;
    font-weight: 700;
    color: #003B73;
}

/* ===== Responsive Rules ===== */
@media (max-width: 768px) {

    .upload-row {
        text-align: center !important;
    }

    .upload-box {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .or-text {
        display: block;
        margin: 10px 0;
    }

    .upload-main-btn {
        width: 100%;
        font-size: 16px;
    }
}


.title-option {
    border: 2px solid #ccc;
    background: white;
    color: #002B5B;
    font-weight: 600;
    position: relative;
}

    .title-option .radio-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #ff9900;
        border-radius: 50%;
        display: inline-block;
        margin-left: 8px;
    }

    .title-option.active {
        border-color: #ff9900;
        background: #FFF7D6;
    }

        .title-option.active .radio-dot {
            background-color: #ff9900;
        }
    .title-option.active,
    .travel-option.active {
        border: 2px solid #ff9900;
        background-color: #FFF7E6;
    }

/*<====step2======>*/



/*<===================Home===================>*/
body {
    font-family: 'Inter', sans-serif;
}

/* HERO SECTION - Desktop default */
.flight-claim-section {
    width: 100%;
    background: #013365 url('../images/logos/8.png') no-repeat;
    background-position: 35% 70%;
    background-size: 180px;
    padding: 110px 0 130px 0;
    color: white;
    max-height: 550px; /* Desktop rule */
    overflow: hidden; /* Prevent layout breaking */
}

/* Mobile view */
@media (max-width: 768px) {
    .flight-claim-section {
        max-height: none; /* Remove desktop limit */
        min-height: 550px; /* Apply mobile required height */
        padding: 90px 0 120px 0;
        background-size: 140px;
        background-position: 50% 65%;
    }
}

.main-title {
    font-size: 35px;
}

.compensation-text {
    font-size: 20px;
}

.claim-list li {
    margin: 10px 0;
    font-size: 17px;
}

.btn-orange {
    background: #FF9800;
    color: #111;
    padding: 10px 25px;
    border-radius: 22px;
    font-weight: bold;
}
    .btn-orange:hover {
        background: #FF9800;
    }
    /* AFTER CLICK */
    .btn-orange.active,
    .btn-orange:focus {
        background: #FF9800;
        color: #000;
        border: 2px solid #FF9800;
        outline: none;
    }
.service-box {
    background: white;
    padding: 25px;
    border-radius: 16px;
    position: relative;
  
    max-width:340px;
}

/*.service-list li {
    margin: 12px 0;
    color: #013365;
    font-weight: 600;
}*/
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        font-size: 20px;
        display: flex;
        color: #013365;
        align-items: center;
        margin-bottom: 6px;
    }

.service-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    object-fit: contain;
}

/* HELP SECTION */
.help-title {
    font-size: 36px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #013365;
}

.help-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #3e86c7;
    box-shadow: 6px 8px 0px #013365;
    min-height: 300px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .help-card:hover {
        transform: translateY(-10px) scale(1.00);
        box-shadow: 10px 12px 0px #013365;
    }


    .help-card img{
        height:45px;
     min-width:45px;
        margin-bottom:10px;
        margin-top:10px;
      
    }

    .help-card h5 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #013365;
    }

.help-card p {
    font-size: 12px;
    color: #444;
    min-height: 80px;
}

.section-title {
    font-weight: 700;
    color: #013365;
}

.section-desc {
    font-size: 15px;
    color: #555;
    width: 70%;
}

.power-attorney-link {
    color: #013365;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.cpSignOption {
    width: 100%;
    text-align: left;
}

.full-yellow-line {
    width: 100%;
    height: 3px;
    background: #ff9900;
    margin-top: 10px;
}
.signature-canvas {
    width: 100%;
    height: 250px;
    border: 2px dashed #ff9900;
    border-radius: 12px;
}



.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}
.upload-row-item {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.upload-label {
    font-weight: 600;
    font-size: 15px;
    color: #000;
}

.passenger-index {
    font-weight: 700;
    margin-right: 6px;
    color: #000;
}

.required-star {
    color: red;
    font-weight: bold;
    margin-left: 4px;
}

.small-file-btn {
    background: #fff;
    border: 1px solid #ff9900;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

    .small-file-btn:hover {
        background: #ff9900;
        color: #fff;
    }
.upload-side-panel {
    position: fixed;
    top: 50px;
    right: 200px;
    width: 430px;
    height: 90vh;
    background: white;
    border: 2px solid #ff9900;
    border-radius:10px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
    padding: 25px 30px;
    transition: 0.4s ease-in-out;
    z-index: 9999;
}

    .upload-side-panel.active {
        right: 0;
    }

.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .upload-header h3 {
        font-weight: 700;
        font-size: 24px;
        margin: 0;
    }

.upload-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.upload-doc-icon {
    width: 100px;
    display: block;
    margin: 10px auto 20px auto;
}

.upload-passenger-list .row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.upload-passenger-list label {
    font-size: 15px;
    font-weight: 600;
}

.small-file-btn {
    border: 1px solid #ff9900;
    padding: 7px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-submit-btn {
    width: 100%;
    padding: 12px;
    background: #003f8a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.features-section {
    background-color: #013365;
    padding: 10px 0;
    color: white;
}

.feature-item {
    padding: 10px 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .feature-item:hover {
        transform: translateY(-10px) scale(1.03); /* Lift + zoom */
    }
.feature-icon {
    width: auto; /* keep natural width */
    height: 200px; /* set fixed height */
    margin-bottom: 18px;
    transition: transform 0.35s ease;
}


.feature-item:hover .feature-icon {
    transform: scale(1.15); /* Icon zoom on hover */
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: transform 0.35s ease;
}

.feature-item:hover .feature-title {
    transform: scale(1.1); /* Title zoom */
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #E6E6E6;
    max-width: 300px;
    margin: auto;
    transition: transform 0.35s ease;
}

.feature-item:hover .feature-text {
    transform: scale(1.05); /* text zoom */
}
.process-sectionh {
    padding: 70px 0 80px;
    background-color: #ffffff;
}

.process-title {
    font-size: 36px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #013365;
    margin-bottom: 8px;
}

.process-subtitle {
    font-size: 20px;
    color: #013365;
    margin-bottom: 30px;
}


.airport-dropdown {
    position: absolute;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    z-index: 9999;
    display: none;
}

    .airport-dropdown.show {
        display: block !important;
    }


.airport-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

    .airport-item:hover {
        background: #fff4db; /* Soft yellow hover like your screenshot */
    }

.small-text {
    font-size: 12px;
    color: #666;
}
.autocomplete-items {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
}

    .autocomplete-items div {
        padding: 8px 12px;
        cursor: pointer;
    }

        .autocomplete-items div:hover {
            background-color: #f1f1f1;
        }
.remove-file {
    background: #ff4b4b;
    border: none;
    color: #fff;
    font-size: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
}

    .remove-file:hover {
        background: #d60000;
    }
.claim-check-section {
    width: 100%;
    padding: 90px 0;
    background-color: var(--fj-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.claim-card {
    background: var(--fj-blue);
    border: 1px solid #fff;
    border-radius: 18px;
    padding: 30px 20px;
    width: 50%;
    text-align: center;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
}

.claim-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-button {
    width: 98%;
    padding: 15px;
    background: var(--fj-yellow);
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
    display: block; /* Important */
    margin: 0 auto; /* Centers horizontally */
    text-align: center; /* Ensures text stays centered */
}

    .cta-button:hover {
        background-color: #e69511;
        transform: translateY(-2px);
    }

.distance-info {
    margin-top: 15px;
    font-size: 15px;
    color: #fff;
}
.input-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 22px;
}

.fj-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    outline: none;
}

.airport-input {
    background-color: #fff;
}
/* Section heading */
.steps-heading {
    font-size: 36px;
    font-family:Arial, Helvetica, sans-serif;
    font-weight:bold;
    color: #013365;
    margin-bottom: 5px;
}

.steps-subtitle {
    color: #666;
    font-size: 16px;
}

/* Card container */
.steps-card {
    background: var(--fj-blue);
    border-radius: 22px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    color: #fff;
    gap: 30px;
}
.steps-card {
    width: 100%;
}

/* Horizontal line behind icons */
.steps-line {
    position: absolute;
    top: 72px; /* aligns with center of icons */
    left: 15%;
    right: 15%;
    height: 3px;
    background: #ffffff;
    opacity: 1;
    z-index: 1;
}

/* Each step */
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Icon circle */
.step-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--fj-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fj-yellow);
    font-size: 28px;
}

/* Number bubble */
.step-number {
    width: 28px;
    height: 28px;
    margin: 8px auto 10px auto;
    border-radius: 50%;
    background: var(--fj-yellow);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Titles & text */
.step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-text {
    font-size: 14px;
    color: #f2f2f2;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .steps-card {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .steps-line {
        display: none;
    }

    .step-item {
        margin-bottom: 25px;
    }
}
.step-icon img.step-img {
    min-width: 70px; /* adjust size */
    min-height: 70px; /* adjust size */
    object-fit: contain;
    display: block;
}
.container-wide {
    max-width: 1600px; /* or 1400, 1500, 1800 */
    margin: 0 auto;
}
.faq-wrapper {
    padding: 80px 0;
    text-align: center;
}

.faq-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-main-subtitle {
    max-width: 720px;
    margin: 0 auto 40px auto;
    color: #4b5563;
    font-size: 15px;
}

/* CARD ROW */
.faq-card-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto 35px auto;
}

/* SINGLE CARD – your blue design */
.faq-card {
    background: #013365;
    color: #fff;
    width: 195px;
    padding: 24px 18px 60px;
    border-radius: 22px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .faq-card h4 {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
    }

    .faq-card .sub-text {
        font-size: 13px;
        font-weight: 400;
        opacity: .9;
    }

    .faq-card:hover,
    .faq-card.active {
    }

/* Arrow circle */
.faq-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px; /* fixed 10px from bottom */
    left: 50%;
    transform: translateX(-50%);
}


 /* Active card arrow style */
.faq-card.active .faq-arrow {
    border-color: #ff9900; /* white border */
}
/* Default arrow icon (not rotated) */
.faq-card .faq-arrow i {
    font-size: 20px;
    color: #ff9900; /* orange */
    transition: transform .35s ease, color .35s ease;
}
.faq-card.active .faq-arrow i {
    transform: rotate(180deg);
    color: #ff9900; /* arrow becomes white */
}


/* FAQ LIST BELOW CARDS */
.faq-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    width: 100%;
    border: 2px solid #ff9900;
    border-radius: 14px;
    margin: 10px 0;
    overflow: hidden;
    display: none; /* will be controlled by JS */
}

.faq-question {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

    .faq-question span {
        flex: 1;
        margin-right: 12px;
    }

.faq-icon {
    color: #ff9900;
    font-size: 18px;
    transition: transform .25s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 18px 14px 18px;
    font-size: 14px;
    text-align: left;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Responsive tweak */
@media (max-width: 992px) {
    .faq-card-row {
        flex-wrap: wrap;
    }

    .faq-container {
        width: 90%;
    }
}

.sub-text {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}
.compensation-banner {
    width: 100%;
    background-color: #013365; /* Dark Blue */
    color: #ffffff;
    padding: 18px 30px;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin: 20px auto;
    font-family: 'Inter', sans-serif;
}

    .compensation-banner .amount {
        color: #FA641D; /* Yellow/Orange Highlight */
        font-weight: 700;
    }

/*<===================Home===================>*/
.pathimg {
    position: absolute;
    top: 80px;
    left: 350px;
}

.pathdown {
    position: absolute;
    top: 350px;
    left: 305px;
}

.pathtext {
    position: absolute;
    top: 440px;
    left: 310px;
    bottom: 100px;
}

.pathtexts {
    position: absolute;
    top: 465px;
    left: 370px;
}
/* Main step cards */
.step-card {
    background: #0E4B84;
    color: #ffffff;
    padding: 18px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Smaller info cards */
.sub-card {
    background: #0E4B84;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bracesp {
    top: 140px;
    left: 665px;
    width: 140px;
    margin: 6px auto 0;
}

.bracespe {
    top: 140px;
    left: 885px;
    width: 140px;
    margin: 6px auto 0;
}
/* Task labels (OUR TASK / YOUR TASK) */
.task-heading {
    align-items: end !important;
    gap: 8px;
    right: 255px;
    top: 50px;
    font-size: 22px;
    font-weight: 800;
    color: #013365;
    text-transform: uppercase;
}

.task-icon {
    width: 80px;
    height: auto;
}

/* Braces */
.brace-img-small {
    width: 210px;
    display: block;
    margin: 6px auto 0;
}

.brace-img-main {
    width: 260px;
    display: block;
    margin: 8px auto 0;
}

/* Plane path */
.plane-path-img {
    width: 260px;
    display: block;
    margin: 25px auto 10px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .process-title {
        font-size: 26px;
    }

    .process-subtitle {
        font-size: 16px;
    }

    .step-card {
        font-size: 14px;
        padding: 14px 18px;
    }

    .sub-card {
        font-size: 13px;
    }

    .brace-img-small,
    .brace-img-main {
        width: 120px;
    }
}
@media (max-width: 768px) {

    /* Remove absolute positions */
    .pathimg,
    .pathdown,
    .pathtext,
    .pathtexts,
    .task-heading.position-absolute,
    .bracesp,
    .bracespe {
        position: static !important;
        margin: 10px auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Title sizes */
    .process-title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .process-subtitle {
        font-size: 15px;
    }

    .task-heading {
        flex-direction: row;
        font-size: 18px;
    }

    .task-icon {
        width: 50px;
    }

    /* Plane path */
    .plane-path-img {
        width: 180px;
        margin: 15px auto;
    }

    .brace-img-small,
    .brace-img-main {
        width: 120px;
        margin: 10px auto;
    }

    .step-card {
        font-size: 15px;
        min-height: 70px;
    }

    .sub-card {
        font-size: 13px;
        min-height: 60px;
    }
}
/* MOBILE simplified styling */
.process-mobile {
    padding: 20px 15px;
}

.task-label-mobile {
    font-size: 18px;
    font-weight: 800;
    color: #013365;
    margin-top: 5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.task-icon-mobile {
    width: 70px;
    height: auto;
}

.step-card-mobile {
    background: #0E4B84;
    color: #ffffff;
    padding: 14px 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin: 10px auto;
    width: 90%;
    box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

/* Hide old layout on phones */
.desktop-process {
    display: block;
}

@media (max-width: 768px) {
    .desktop-process {
        display: none !important;
    }
}
/*<==========flight-cancellation=========>*/
/* HERO SECTION */
.claim-hero-section {
    padding: 70px 0;
    background: #ffffff;
}

.hero-img {
    width: 100%;
    max-width: 300px;
    border-radius: 14px;
}

.back-link {
    font-size: 15px;
    color: #013365;
    text-decoration: none;
    font-weight: 600;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #013365;
    line-height: 1.3;
    margin-top: 15px;
}

.amount {
    color: #FF9900;
}

.hero-subtitle {
    font-size: 18px;
    color: #364153;
    margin: 15px 0 25px;
}

.hero-btn {
    background: #FF9900;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}


/* FEATURE BAR */
.feature-banner {
    background: #013365;
/*    padding: 25px 15px;*/
    margin-top: 60px;
}

.feature-box {
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding: 15px 0;
}

.feature-iconi {
    width: 100px;
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-btn {
        width: 100%;
    }

    .feature-box {
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding: 15px 0;
    }

        .feature-box:last-child {
            border-bottom: none;
        }
}
/* LEFT SIDEBAR */
.toc-box {
    background: #013365;
    padding: 28px;
    border-radius: 14px;
    color: white;
}
.toc-box {
    position: sticky;
    top: 100px; /* distance from top */
    background: #013365;
    padding: 28px;
    border-radius: 14px;
    color: white;
}
.ib {
    padding-left: 10px !important;
}
    .toc-box h4 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .toc-box ul {
        list-style: none;
        padding-left: 0;
    }

        .toc-box ul li {
            list-style: disc;
            padding-bottom:5px;

        }

            .toc-box ul li.active {
                list-style: disc;
                color: #FF9900;
                font-weight: 700;
            }
            .toc-box ul li:hover {
                color: #FF9900;
                cursor: pointer;
                font-weight: 600;
            }
            .toc-box ul li:hover {
                color: #FF9900; /* Yellow color on hover */
                cursor: pointer; /* Makes it clickable style */
                font-weight: 600; /* Slightly bold on hover */
            }

/* WHOLE SECTION BG (optional) */
.claim-main-section {
    background: #f5f7fb;
}

/* RIGHT CONTENT */
.content-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .content-box h2 {
        font-size: 32px;
        font-weight: 800;
        color: #013365;
        margin-bottom: 20px;
    }

    .content-box p, .content-box ul {
        font-size: 17px;
        line-height: 1.7;
    }

/* CLAIM BOX */
.claim-box {
    background: #013365;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    margin-top: 28px;
   margin:10px auto !important;
   width:75% !important;
}
.claim-form-container {
    width: 100% !important;
}

    .claim-box h3 {
        font-size: 26px;
        font-weight: 800;
        color: white;
        margin-bottom: 25px;
    }

.claim-input {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    border-radius: 10px;
    border: none;
}

.claim-btn {
    width: 100%;
    background: #FF9900;
    padding: 16px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #013365;
    border: none;
    cursor: pointer;
}
.claim-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .claim-btn:hover {
        filter: brightness(1.05);
    }
/* White card box */
.details-container {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Title */
.detail-heading {
    font-size: 26px;
    font-weight: 800;
    color: #013365;
    margin-bottom: 20px;
}

/* Bullet list */
.styled-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* IMPORTANT BAR */
.important-box {
    background: #013365;
    padding: 18px 25px;
    border-radius: 12px;
    color: white;
}

.highlight {
    color: #FF9900;
    font-weight: 800;
}

.check-btn {
    background: #FF9900;
    color: black;
    padding: 12px 22px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}

    .check-btn:hover {
        background: #ff9800;
    }
.styled-lists li {
    font-size: 17px;
    color: #063F66;
    margin-bottom: 12px;
}
.note-box {
    background: #013365;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    margin-top: 15px;
}

    .note-box strong {
        color: #FF9900;
    }
.highlight {
    color: #FF9900;
    font-weight: 800;
}
.sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #013365;
    margin-top: 25px;
    margin-bottom: 8px;
}
.important-boxn {
    background: #013365;
    padding: 18px 22px;
    border-radius: 10px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows items to break to next line */
}

    .important-boxn p {
        flex: 1 1 100%;
        margin-bottom: 15px;
        color: #fff;
    }

.check-btnr {
    margin-top:4px;
    background: #FF9900;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    color: #013365;
    text-decoration: none;
    display: inline-block;
}
.cta-box {
    background: #013365;
    color: white;
    padding: 22px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cta-title {
    font-weight: 800;
    font-size: 17px;
}

.cta-btn {
    background: #FF9900;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #013365;
    margin-top: 14px;
    text-decoration: none;
    white-space: nowrap;
}
.extra-section .container {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}



.ruling-box {
    background: #013365;
    color: white;
    padding: 26px;
    border-radius: 14px;
    font-size: 16px;
}

.cta-btnt {
    display: inline-block;
    background: #FF9900;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #013365;
    text-decoration: none;
    margin-top: 10px;
}

.detail-headings {
    font-size: 20px;
    font-weight: 700;
    color: #013365;
    margin-bottom: 20px;
}

.compare-title {
    font-size: 20px;
    font-weight: 700;
    color: #013365;
    margin-bottom: 15px;
    border: 2px solid #ff9900;
    text-align: center;
    padding: 3px;
}

.compare-simple-list {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-left: 0px;
    list-style: none !important;
    padding-left: 0 !important; /* removes left spacing */
}

    .compare-simple-list li {
        margin-bottom: 10px;
        border: 2px solid #ff9900;
        text-align: center;
        padding: 3px;
        
    }
.airline-dropdown {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

    .airline-dropdown.show {
        display: block !important;
    }
.fj-mobile-menu {
    background: #013365;
    padding: 20px;
    color: #fff;
}


.mobile-toggle-item {
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.mobile-submenu {
    display: none;
    padding-left: 18px;
}

    .mobile-submenu.show {
        display: block !important;
    }

    .mobile-submenu li a {
        font-size: 15px;
        display: block;
        padding: 6px 0;
        opacity: 0.85;
        text-decoration:none;
        color:white;
    }
.mobile-toggle-item i {
    transition: transform 0.3s ease;
}

    .mobile-toggle-item i.rotated {
        transform: rotate(180deg);
    }
/*    <======aboutus=======>*/
.about-main-img {
    width: 80%; /* reduce overall width */
    max-width: 420px; /* limit max size */
    height: auto; /* keep proportions */
    display: block;
    margin: 0 auto;
}


.section-title {
    font-weight: 800;
    font-size: 38px;
}

.highlight-text {
    font-size: 22px;
    font-weight: 700;
    color: #f5a004;
}

.read-btn {
    background: #f5a004;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

    .read-btn:hover {
        background: #c88300;
        transition: 0.3s;
    }

/* Responsive */
@media(max-width: 992px) {
    .about-main-img {
        max-width: 420px;
    }
}
.hero-section {
    background: #063B69;
    color: #ffffff;
    padding: 90px 20px;
}

.hero-title {
    color: #013365;
    font-size: 34px;
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
    font-style: normal;
    font-weight: 800; /* or 700/600 as needed */
    margin-bottom: 10px;
}



.hero-subtitle {
    font-size: 18px;
    color: #364153;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 18px;
    max-width: 850px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

.hero-highlight {
    font-size: 18px;
    font-weight: 700;
    color: #FF9900;
    margin-top: 25px;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    border: 2px solid #FF9900;
    padding: 6px 55px;
    border-radius: 12px;
    font-size: 17px;
    transition: .3s;
    background-color: #FF9900;
    color: #000;
    border-color: #FF9900;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}
.process-section {
    background-color: #063B69;
    color: #ffffff;
}

.process-heading {
    font-size: 2.2rem;
    font-weight: 700;
}

.process-subtitles {
    font-size: 1.1rem;
    color: #000;
}

/* Horizontal dotted line with planes */
.process-line-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 90%;
}

.process-line {
    flex-grow: 1;
    height: 1px;
    border-bottom: 1.5px dashed #ffffff;
}

.process-plane-left,
.process-plane-right {
    font-size: 26px;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Steps */
.process-number {
    color: #FFC107;
    font-weight: 800;
    font-size: 1.1rem;
}

.process-icon {
    margin-top: 0px;
    width: 60px;
    height: 60px;
}

.process-steps p {
    margin-top: 5px;
    font-size: 0.95rem;
}
.passenger-section {
    background: #ffffff;
    color: #063B69;
    padding: 70px 0;
}

.icon-box {
    background: #ffffff;
    width: 160px;
    height: 160px;
    border-radius: 15px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.15);
}

.passenger-icon {
    width: 150px;
   max-height: 150px;
}

.passenger-title {
    font-size: 30px;
    font-weight: 800;
    color: #002F56;
    letter-spacing: 0.5px;
}

.passenger-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 5px auto;
}

.highlight-text {
    color: #F5A400;
    font-weight: 700;
}
.contact-hero {
    background-color: #003866; /* deep blue */
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-center {
    text-align: center;
}

.contact-hero-img {
    width: 70%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    display: block;
    margin: 0 auto;
}
.contact-hero-img {
    animation: fadeZoom 0.8s ease-in-out;
}

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .contact-hero-img {
        width: 90%;
    }
}
.contact-section {
    background: #ffffff;
    padding: 60px 80px;
}

.contact-container {
    display: flex;
    justify-content: center; /* Centers the content */
    align-items: flex-start; /* Aligns items from top */
    gap: 60px; /* Space between columns */
    width: 100%;
}
.contact-form {
    width: 32%;
    
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #f5a623;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 15px;
    outline: none;
    transition: .3s ease;
}

    .contact-input:focus,
    .contact-textarea:focus {
        border-color: #003a67;
        box-shadow: 0 0 6px rgba(0, 58, 103, 0.3);
    }

.contact-textarea {
    height: 150px;
    resize: none;
}

.reply-info {
    font-size: 13px;
    color: #003a67;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.send-btn {
    background: #003a67;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .send-btn:hover {
        background: #022c4d;
        color:white;
    }

/* RIGHT SIDE */
.contact-info {
    width: 30%;
}

.contact-title {
    color: #f5a623;
    font-weight: 700;
    letter-spacing: .5px;
}

.contact-heading {
    font-size: 32px;
    color: #003a67;
    font-weight: 700;
    margin: 6px 0 12px 0;
}

.contact-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.highlight-text {
    color: #f5a623;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Email + Address */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
}

    .info-box i {
        font-size: 22px;
        color: #f5a623;
    }
/* RESPONSIVE FOR TABLETS */
@media (max-width: 992px) {
    .contact-section {
        padding: 50px 40px;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-form,
    .contact-info {
        width: 45%;
    }
}

/* RESPONSIVE FOR PHONES */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }

    .contact-heading {
        font-size: 28px;
    }

    .contact-title {
        font-size: 18px;
    }

    .info-box {
        justify-content: center;
    }

        .info-box i {
            font-size: 20px;
        }

    .send-btn {
        width: 100%;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-hero-img {
        width: 95%;
    }

    .contact-input,
    .contact-textarea {
        font-size: 14px;
        padding: 12px 15px;
    }

    .contact-textarea {
        height: 130px;
    }
}

/*    <======aboutus=======>*/
/*<==========Faqs==============>*/
.faq-wrapper {
    text-align: center;
    padding: 50px 0;
    background: #fff;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #002E5D;
    margin-bottom: 15px;
}

.faq-info {
    width: 60%;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.faq-note {
    font-weight: 600;
    color: #002E5D;
    margin: 20px 0 40px;
}

.faq-list {
    width: 65%;
    margin: 0 auto;
}

.faq-box {
    margin-bottom: 15px;
    border:2px solid #ff9900;
    border-radius: 12px;
}

.faq-btn {
    width: 99%;
    margin:0px auto;
    padding: 18px 20px;
    font-size: 18px;
    color: #002E5D;
    background: #fff;
    font-weight: 600;
    border:none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing:border-box;
}

    .faq-btn i {
        transition: transform 0.3s;
    }

.faq-content {
    margin:0px auto;
    width:99%;
    display: none;
    padding: 5px 40px;
    text-align: left;
    font-size: 16px;
}

.faq-box.active .faq-content {
    display: block;
}

.faq-box.active .faq-btn i {
    transform: rotate(180deg);
}

/*<==========Faqs==============>*/
.service-hero {
    background-color: #f4f9ff; /* Light blue/gray background */
    padding: 80px 20px;
    text-align: center;
}

.service-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-title {
    font-size: 48px;
    font-weight: 800;
    color: #003a67; /* Navy blue */
    margin-bottom: 18px;
}

.service-subtitle {
    font-size: 18px;
    color: #003a67;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-title {
        font-size: 34px;
    }

    .service-subtitle,
    .service-desc {
        font-size: 16px;
    }

    .service-hero {
        padding: 60px 15px;
    }
}
.service-fee-section {
    background-color: #003a67;
    padding: 80px 40px;
    color: white;
}

.fee-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.fee-card {
    background: white;
    color: #003a67;
    width: 350px;
    padding: 40px 30px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 3px solid #e0ecf9;
}

.fee-title {
    font-size: 20px;
    font-weight: 700;
}

.fee-icon {
    width: 65px;
    margin: 20px 0;
}

.fee-subtext {
    font-size: 18px;
    font-weight: 700;
}

.fee-info {
    width: 50%;
    line-height: 1.6;
    font-size: 18px;
}

    .fee-info strong {
        color: #fff7a8;
        font-weight: 700;
    }

/* Responsive */
@media (max-width: 900px) {
    .fee-container {
        flex-direction: column;
        text-align: center;
    }

    .fee-info {
        width: 100%;
    }

    .fee-card {
        width: 80%;
    }
}
.standard-fee-section {
    background: #f2f8ff; /* soft light blue */
    padding: 70px 20px;
}

.standard-fee-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.standard-fee-title {
    font-size: 42px;
    font-weight: 800;
    color: #003A67;
    margin-bottom: 25px;
}

.standard-fee-text {
    font-size: 18px;
    line-height: 1.7;
    color: #003A67;
    margin-bottom: 15px;
}

.highlight {
    color: #F5A623;
    font-weight: 700;
}

.loyalty-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 35px;
    color: #003A67;
}

/* Responsive */
@media (max-width: 768px) {
    .standard-fee-title {
        font-size: 32px;
    }

    .standard-fee-text {
        font-size: 16px;
    }

    .loyalty-title {
        font-size: 26px;
    }
}
.fj-loyalty-sec, .fj-legal-sec {
    padding: 60px 0;
    background: #ffffff;
    text-align: left;
}

/* NEW container for alignment and spacing */
.fj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px; /* spacing from the left & right screen edges */
}

.fj-loyalty-wrap, .fj-legal-wrap {
    max-width: 900px;
}

.fj-loyalty-title, .fj-legal-title {
    font-size: 32px;
    font-weight: 800;
    color: #003A67;
    margin-bottom: 15px;
}

.fj-loyalty-txt, .fj-legal-txt {
    font-size: 17px;
    line-height: 1.7;
    color: #003A67;
    margin-bottom: 12px;
}

.fj-loyalty-sub, .fj-legal-sub {
    font-size: 22px;
    font-weight: 700;
    color: #003A67;
    margin: 25px 0 15px;
}

.fj-loyalty-list, .fj-legal-list {
    list-style: disc;
    margin: 0 0 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #003A67;
}

.fj-loyalty-hl {
    font-size: 18px;
    font-weight: 700;
    color: #F5A623;
    margin-top: 15px;
}

.fj-legal-txt.strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .fj-loyalty-title, .fj-legal-title {
        font-size: 26px;
    }

    .fj-loyalty-txt, .fj-legal-txt {
        font-size: 15px;
    }
}
/* FULL BLUE SECTION */
.fj-why-sec {
    background: #003A67;
    text-align: center;
    padding: 70px 20px 140px; /* More bottom padding */
    position: relative;
    z-index: 1;
}

/* WHITE BACKGROUND BELOW */
.why-white-bg {
    background: #ffffff;
    width: 100%;
    height: 250px;
    margin-top: -120px;
    position: relative;
    z-index: 0;
}

/* HEADING AND TEXT */
.fj-why-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.fj-why-txt,
.fj-why-subtxt {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

.fj-why-subtxt {
    margin-top: 15px;
    font-weight: 700;
}

/* Cards container */
.fj-why-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: -260px; /* Card overlap */
    position: relative;
    z-index: 10;
}

.fj-why-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 20px;
    border: 3px solid #BBD7F0;
    width: 320px;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* PERFECT RIGHT & BOTTOM SHADOW */
    box-shadow: 10px 10px 0 0 #002b4d; /* bottom + right in one shadow */
}

    .fj-why-box:hover {
        transform: translateY(-6px);
        box-shadow: 15px 15px 0 0 #002b4d; /* slightly stronger on hover */
    }



/* CONTENT */
.fj-why-heading {
    font-size: 20px;
    font-weight: 700;
    color: #003A67;
    text-align:center;
}

.fj-why-icon {
    width: 100px;
    margin: 18px auto;
}

.fj-why-label {
    font-size: 17px;
    font-weight: 700;
    color: #003A67;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .fj-why-grid {
        flex-wrap: wrap;
        margin-top: -60px;
    }

    .fj-why-box {
        width: 100%;
        max-width: 360px;
    }

    .why-white-bg {
        height: 250px;
    }
}
/* SECTION BACKGROUND */
.fj-process-sec {
    background: #003A67;
    text-align: center;
    padding: 0px 180px;
    position: relative;
    margin:0px auto;
}

/* WHITE BACKGROUND BELOW FOR OVERLAP */
.process-white-bg {
    background: #ffffff;
    height: 150px;
    width: 100%;
    margin-top: -180px;
    position: relative;
    z-index: 0;
}

/* GRID LAYOUT */
.fj-process-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -110px;
    position: relative;
    z-index: 10;
}

/* CARD DESIGN */
.fj-process-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 20px;
    width: 350px;
    border: 1px solid #002b4d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Blue bottom-right shadow */
    box-shadow: 10px 10px 0 0 #002b4d;
    transition: 0.3s ease;
}

.fj-process-box:hover {
    transform: translateY(-8px);
    box-shadow: 14px 14px 0 0 #002b4d;
}

/* TYPOGRAPHY */
.fj-process-heading {
    font-size: 22px;
    font-weight: 800;
    color: #003A67;
    margin-bottom: 0px;
}

.fj-process-icon {
    width: 150px;
    margin: 0 auto 0px;
}

.fj-process-label {
    margin:0px;
    padding:0px;
    font-size: 18px;
    font-weight: 700;
    color: #003A67;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .fj-process-grid {
        flex-wrap: wrap;
        margin-top: -160px;
    }

    .fj-process-box {
        width: 100%;
        max-width: 370px;
    }
}
/* TOP ICON ROW */
.fj-top-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px 120px;
    background: #003A67;
    width: 100%;
    gap: 60px;
}
.feature-itemp {
    display: flex;
    flex-direction: row; /* <-- IMPORTANT */
    align-items: center;
    justify-content: center;
    text-align: center;
}
.feature-iconp {
    width: 70px;
    margin-bottom: 15px;
}

.feature-textp {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}
/* 🌍 RESPONSIVE */
@media (max-width: 992px) {
    .fj-top-features {
        justify-content: center;
        gap: 50px;
        padding: 40px 20px 100px;
    }
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .fj-process-grid {
        flex-wrap: wrap;
        margin-top: -60px; /* reduced pull-up */
    }
}

@media (max-width: 768px) {
    .fj-process-grid {
        margin-top: 0; /* NO overlap on mobile */
        padding-top: 30px; /* spacing */
    }
}

@media (max-width: 480px) {
    .fj-process-grid {
        margin-top: 10px; /* safe spacing */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .fj-top-features {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
        padding: 30px 10px 80px;
        text-align: center;
    }

    .feature-itemp {
        flex-direction: column;
    }

    .feature-iconp {
        width: 55px;
        margin-bottom: 8px;
    }

    .feature-textp {
        font-size: 16px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .fj-top-features {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 90px;
    }

    .feature-iconp {
        width: 55px;
    }

    .feature-textp {
        font-size: 15px;
    }
}
.why-page-heading {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
    color: #013365;
}
.info-box .ic{
    border-radius:50%;
    border:1px solid #ff9900;
    padding:5px;
}
.info-box .ict {
    border-radius: 50%;
    border: 1px solid #ff9900;
    padding: 5px 8px;
}
.hero-btns {
    border: 2px solid white;
    padding: 10px 32px;
    border-radius: 12px;
    font-size: 17px;
    transition: .3s;
    background-color: #12416f;
    color: white;
    border-color: white;
    text-decoration: none;
}
    .hero-btns:hover {
        background-color: white;
        color: #12416f;
    }
.service-page-heading {
    font-size: 32px;
    font-weight: 800;
    color: #013365;
    margin-bottom: 20px;
}