.hero-style1 .hero-title {
    color: var(--white-color);
    margin-bottom: 25px;
    font-size: 50px;
}

.hero-style1 {
    padding: 100px 0 150px 0;
}



.img-box3 .img3 {
    margin-top: -130px;
}
.img-box3 .img2 {
    top: 0%;
    right: -2%;
}
.img-box3 .img2 img {
    width: 405px;
}
.img-box3 .img3 img{
    width: 500px;
}
.global-img img {
    height: 200px;
}



.why-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid #4393F7;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-top-color: #15233D;
}

.why-card .icon {
    color: #4393F7;
}

.why-card h5 {
    color: #15233D;
}

@media (max-width: 992px) {
    .why-card {
        padding: 1.5rem !important;
    }
    .why-card h5 {
        font-size: 1rem;
    }
    .why-card p {
        font-size: 0.9rem;
    }
    .why-card .icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .why-card {
        padding: 1.2rem !important;
    }
    .why-card h5 {
        font-size: 0.95rem;
    }
    .why-card p {
        font-size: 0.85rem;
    }
}

.breadcumb-wrapper {
    background-position: center;
    padding: 160px 0;
}


/* ✅ Perfectly centered airline logo boxes */
/* Container for each airline logo */
.airline-slider .brand-box {
    background-color: #fff;
    border-radius: 12px;
    height: 100px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.airline-slider .brand-box img {
    width: auto;
    height: 60px;
    object-fit: contain;
    display: block;
    padding: 4px;
    margin-top: 20px;
}

.airline-slider .brand-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Center each slide in swiper */
.airline-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}