/* 🌍 General */

/* Navbar Styles */
.top-header .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.top-header .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #084b71; /* Bootstrap warning color */
    transition: width 0.3s;
}

.top-header .nav-link:hover::after {
    width: 100%;
}

.top-header .nav-link:hover {
    color: #084b71 !important;
}

.top-header .btn-warning {
    transition: transform 0.3s, box-shadow 0.3s;
}

.top-header .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ===================page loader================== */
#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-box {
    text-align: center;
}

.loader-logo {
    width: 160px;
    margin-bottom: 20px;
}

.lottie {
    width: 120px;
    height: 120px;
    margin: auto;
}

.loader-percent {
    font-size: 28px;
    font-weight: 700;
    margin-top: 10px;
    color: #0d6efd;
}

.loader-text {
    margin-top: 8px;
    color: #555;
    font-size: 14px;
}

/* Fade out */
.loader-hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

/* ======================FLOATING MENU ICONS ========================== */



        /* Wrapper so icons overlap the slider */
        .icon-menu-wrapper {
            position: relative;
            margin-top: -90px;
            /* pushes UP onto slider */
            z-index: 50;
        }

        /* Floating white box */
        .icon-menu-container {
            background: #ffffff;

            margin: auto;
            padding: 15px 35px;
            border-radius: 10px;
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Icons */
        .menu-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }

        /* Animation */
        .menu-item {
            text-align: center;
            animation: shuffleMove 3s infinite ease-in-out;
        }

        .menu-item:nth-child(1) {
            animation-duration: 3.2s;
            animation-delay: 0s;
        }

        .menu-item:nth-child(2) {
            animation-duration: 2.8s;
            animation-delay: .3s;
        }

        .menu-item:nth-child(3) {
            animation-duration: 3.4s;
            animation-delay: .6s;
        }

        .menu-item:nth-child(4) {
            animation-duration: 2.9s;
            animation-delay: .9s;
        }

        @keyframes shuffleMove {
            0% {
                transform: translate(0, 0);
            }

            25% {
                transform: translate(-10px, -5px);
            }

            50% {
                transform: translate(10px, 7px);
            }

            75% {
                transform: translate(-7px, 4px);
            }

            100% {
                transform: translate(0, 0);
            }
        }

        /* Mobile responsive */
        @media(max-width: 576px) {
            .icon-menu-container {
                padding: 10px 20px;
                border-radius: 30px;
                gap: 20px;
            }
        }



/* Responsive adjustments */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .top-header .nav {
        flex-direction: column;
        width: 100%;
    }

    .top-header .nav-item {
        width: 100%;
    }

    .top-header .btn-warning {
        width: 100%;
        text-align: center;
    }
}
/* ✈️ Flight Card */
.flight-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 25px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.flight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* 🧭 Flight Info */
.flight-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flight-point {
  text-align: center;
}
.flight-point h6 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}
.flight-point span {
  font-size: 13px;
  color: #6c757d;
}

/* ✈️ Middle Direction */
.flight-direction {
  position: relative;
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.flight-direction::before {
  content: '';
  display: block;
  height: 2px;
  background: #dee2e6;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
}
.flight-direction i {
  position: relative;
  background: #fff;
  color: #0d6efd;
  padding: 0 8px;
  font-size: 18px;
  z-index: 2;
}

/* 💰 Button Section */
.flight-right {
  text-align: end;
}
.select-btn {
  background: #0352d1;
  color: #fff!important;
  border: 0;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}
.select-btn:hover {
  background: #0b5ed7;
}

/* ==============================SLIDR===================== */
.card-slider {
    scroll-behavior: smooth;
}

.card {
    min-width: 300px;
    flex: 0 0 auto;
}

.slider-bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 500;
}

.slider-bullets .bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all .3s ease;
}

.slider-bullets .bullet.active {
    background: #0d6efd;
    transform: scale(1.3);
}

/* ================================ */
.feature-card {
    background: #fff;
    border-radius: 40px;
    padding: 32px;
    height: 100%;
    transition: all 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.25);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-card h5 {
    font-weight: 700;
    color: #0b2545;
    margin-bottom: 8px;
}

.feature-card p {
    color: #5f6c7b;
    font-size: 15px;
    line-height: 1.6;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0072ff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
/* =====================Our Global Partners============================= */
.item img {
    width: 120px;      /* set same width */
    height: 80px;      /* set same height */
    object-fit: contain; /* keeps aspect ratio, prevents distortion */
    display: block;
    margin: 0 auto;
    transition: transform 0.3s; /* optional hover effect */
}

.item img:hover {
    transform: scale(1.1); /* subtle zoom on hover */
}

ul li img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 10px;
    border: 1px solid #dcdcdc;
}

/* ================================mobile================ */
.app-download-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    border-radius: 28px;
    background: linear-gradient(90deg, #f9fff5 0%, #e9f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* LEFT */
.app-left img {
    max-width: 260px;
}

/* CENTER */
.app-center {
    text-align: left;
    max-width: 380px;
}

.app-center h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2545;
    margin-bottom: 20px;
}

.store-buttons {
    display: flex;
    gap: 12px;
}

.store-buttons img {
    height: 44px;
}

/* DIVIDER */
.app-divider {
    width: 1px;
    height: 120px;
    background: rgba(0, 0, 0, 0.1);
}

/* RIGHT */
.app-right {
    text-align: center;
}

.app-right img {
    width: 150px;
    height: 150px;
}

.app-right p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.4;
}

/* BACKGROUND ICONS (OPTIONAL) */
.app-download-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://content.akbartravelsonline.com/b2brevamp/S4V1/assets/v2images/new/app-bg-icons.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .app-download-box {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .app-divider {
        display: none;
    }

    .app-center {
        text-align: center;
    }
}



/* ========================why=========================== */
/* WHY SECTION */
.why-akbar h2 {
    font-size: 34px;
}

.why-akbar p {
    color: #555;
    line-height: 1.7;
}

/* ABOUT CARD */
.about-card {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(
        to right,
        #f9fff5 50%,
        #e9f7ff 50%
    );
}

/* LEFT */
.about-left {
    width: 40%;
    padding: 40px;
}

.about-left img {
    margin-top: 30px;
    max-width: 100%;
}

/* RIGHT */
.about-right {
    width: 60%;
    padding: 40px;
}

.about-right p {
    color: #555;
    line-height: 1.7;
}

/* ================= MOBILE RESPONSIVE FIXES ================= */
@media (max-width: 992px) {
    .top-header {
        position: relative;
        background: rgba(0,0,0,0.85);
    }

    .top-header nav a {
        display: none;
    }

    .top-header nav .btn {
        font-size: 14px;
        padding: 6px 14px;
    }
}

/* ===== Banner ===== */
@media (max-width: 768px) {
    .top-banner {
        min-height: 380px;
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .top-banner h2 {
        font-size: 22px;
    }
}

/* ===== Card Slider ===== */
@media (max-width: 768px) {
    .card-slider {
        gap: 12px;
        padding: 0 10px;
    }

    .card-slider .card {
        min-width: 240px;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
       
    }
}

/* ===== Slider Bullets ===== */
@media (max-width: 576px) {
    .slider-bullets .bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
        
    }

    .slider-bullets .bullet.active {
        width: 12px;
        height: 12px;
        
    }
}

/* ===== Floating Icon Menu ===== */
@media (max-width: 768px) {
    .icon-menu-wrapper {
        margin-top: -60px;
    }

    .icon-menu-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 12px 18px;
        border-radius: 18px;
    }

    .menu-item {
        width: 70px;
    }

    .menu-item p {
        font-size: 12px;
        margin-top: 6px;
    }

    .menu-icon {
        width: 50px;
        height: 50px;
    }
}

/* ===== Feature Boxes ===== */
@media (max-width: 768px) {
    .feature-img {
        width: 60px;
    }

    .feature-img + h3 {
        font-size: 22px;
    }
}

/* ===== About Images ===== */
@media (max-width: 768px) {
    .about-images {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-images img {
        width: 90px;
    }
}

/* ===== Footer ===== */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    footer img {
        max-width: 100%;
    }
}
