.advance-thumb img{
    height: 250px;
    width: 100%;
}
.advance-wrap {
    grid-template-columns: 1fr 1fr 1fr;
}
.banner-area {
    padding-block-start: 162px;
    padding-block-end: 90px;
}
.breadcrumb-area {
    margin-top: 120px;
    padding: 160px 0 112px;
}
.contact-ip-left{
    max-width: unset;
}

.airline-marquee-wrapper {
    display: flex;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: relative;
}

.airline-marquee {
    display: flex;
    align-items: center;
    animation: marquee 25s linear infinite;
    gap: 50px;
    flex-shrink: 0;
    padding-right: 0;
}

.airline-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airline-logo img {
    height: 65px;       /* bigger and uniform */
    width: 180px;       /* consistent width for spacing */
    object-fit: contain; /* prevent distortion */
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.airline-logo img:hover {
    filter: grayscale(0%) brightness(1.1);
}

@keyframes marquee {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.ceo-message .ceo-image {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.ceo-message p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.ceo-name {
    font-weight: bold;
    margin-top: 15px;
    color: #003366;
}

.vision-mission {
    background: #f8f9fa;
}

.vision-mission p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.affiliated-partners {
    background: #ffffff;
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.partner img {
    height: 170px;
    margin-bottom: 20px;
    width: auto;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid black;
}

.partner img:hover {
    filter: grayscale(0%) brightness(1.1);
}

.footer-logos {
    margin-top: 40px;
}

.logo-card {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card img {
    max-height: 92px;
    width: auto;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
}

.team-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .team-img-wrapper {
        position: relative;
    }
    .team-img-wrapper:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    }
    
.banner-title {
    font-size: 90px;
    line-height: 88%;
}

@media screen and (max-width: 1699px) {
    .banner-title {
        font-size: 59px;
    }
}
.header.fixed-header{
    padding: 0;
}
.header {
    padding: 0 !important;
}

    .blog-two-thumb {
        width: 280px;
        height: 200px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 14px;
    }

    .blog-two-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 🔑 makes all images same size */
        display: block;
    }

    @media (max-width: 991px) {
        .blog-two-wrapper {
            flex-direction: column;
        }

        .blog-two-thumb {
            width: 100%;
            height: 220px;
            margin-top: 15px;
        }
    }

.destination-icon i {
    font-size: 52px;
    color: var(--main-600);
    margin-bottom: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.panel:hover .destination-icon i {
    transform: scale(1.2);
    color: var(--main-700);
}

.destination-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

.bg-main-two-600 {
    background-color: #FE8E05 !important;
    color: white !important;
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo wrapper */
.logo-loader {
    position: relative;
    width: 140px;
    height: 140px;
}

/* Circular ring */
.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #fbbf24; /* brand / warning color */
    animation: spin 1.2s linear infinite;
}

/* Logo */
.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
}

/* Text */
.loading-text {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}

/* Animation */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

