/* BASE */


:root {
    --primary: #001ea0;
    --bs-primary: #001ea0;
    --accent: #ffb400;
    --muted: #6c757d;
    --brand: #001ea0;
    --card-shadow: 0 10px 30px rgba(10, 20, 40, 0.08);
    --glass: rgba(255, 255, 255, 0.85);
    --radius: 14px;
    /*--bs-font-sans-serif: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';*/
    /* --bs-font-sans-serif: "Raleway", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;*/
}

body {
    /* font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; */
    /*font-family: "Raleway", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;*/
    font-weight: 400;
    font-style: normal;
    /*background: #f5f8fb;*/
    background-color: #ffffff;
    color: #153243;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
}

.pagetop {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

/* NAV */
.navbar-brand img {
    height: 38px
}

.btn-primary {
    --bs-btn-bg: #001ea0;
    --bs-btn-border-color: #001ea0;
}
/* SWIPER */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
}

.mySwiper {
    /*margin-bottom: 1.5rem;*/
}
    /* .mySwiper > .swiper-wrapper > .swiper-slide {
     filter: grayscale(1) blur(1px);
 }
  .mySwiper > .swiper-wrapper > .swiper-slide-fully-visible{
     filter: grayscale(0) blur(0);
 }*/
    .mySwiper > .swiper-wrapper > .swiper-slide-prev,
    .mySwiper > .swiper-wrapper > .swiper-slide-next {
        /*filter: grayscale(1) blur(1px);*/
        box-shadow: none;
    }

    .mySwiper > .swiper-wrapper > .swiper-slide-fully-visible img {
        border-radius: 8px;
        box-shadow: rgb(0 0 0 / 20%) 0px 1px 3px 1px;
    }

.mySwiper2 > .swiper-wrapper > .swiper-slide,
.mySwiper3 > .swiper-wrapper > .swiper-slide {
    border: 1px solid #fdf1ff;
    padding: 5px;
    border-radius: 10px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.mySwiper > .swiper-button-next:after,
.mySwiper > .swiper-button-prev:after {
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    border-radius: 50%;
    overflow: hidden;
    width: 25px;
    height: 25px;
    font-size: 13px;
    text-align: center;
    line-height: 25px;
    color: black;
    background: white;
}

.mySwiper3 > .swiper-button-next:after,
.mySwiper3 > .swiper-button-prev:after,
.mySwiper2 > .swiper-button-next:after,
.mySwiper2 > .swiper-button-prev:after {
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    border-radius: 5px;
    overflow: hidden;
    width: 25px;
    height: 25px;
    font-size: 13px;
    text-align: center;
    line-height: 25px;
    color: white;
    background: #bdbdbd;
}

.mySwiper3 > .swiper-button-disabled, .mySwiper2 > .swiper-button-disabled {
    display: none;
}

.swiper_wrap {
    height: 100%;
    width: 85%;
    position: relative;
    display: block;
    text-align: left;
}

    .swiper_wrap > .swiper-button-next {
        margin-top: 0px;
        position: absolute;
        top: 50%;
        right: -40px;
        width: 45px;
        height: 45px;
        transform: translateY(-50%);
    }

    .swiper_wrap > .swiper-button-prev {
        position: absolute;
        top: 50%;
        left: -40px;
        width: 45px;
        height: 45px;
        transform: translateY(-50%);
        margin-top: 0px;
    }

    .swiper_wrap .swiper-button-prev::after,
    .swiper_wrap .swiper-button-next::after {
        font-size: 18px;
        color: black;
    }

    .swiper_wrap > .swiper-button-disabled, .swiper_wrap > .swiper-button-disabled {
        display: none;
    }

/* marquee */
.marquee {
    display: flex;
    align-items: center;
    block-size: var(--marquee-item-height);
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 5%, hsl(0 0% 0% / 1) 95%, hsl(0 0% 0% / 0));
}

.marquee--8 {
    --marquee-item-width: 120px;
    --marquee-item-height: 100px;
}

.marquee__item {
    --marquee-item-offset: max(calc(var(--marquee-item-width) * var(--marquee-items)), calc(100% + var(--marquee-item-width)));
    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
    position: absolute;
    inset-inline-start: var(--marquee-item-offset);
    transform: translateX(-50%);
    animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}

@keyframes go {
    to {
        inset-inline-start: calc(var(--marquee-item-width) * -1);
    }
}

/* marquee ends */
/* SECTIONS */
.section {
    padding: 64px 0;
}

    .section .section-heading {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 18px;
    }

.section-images {
    height: 320px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

    .section-images img {
        position: absolute;
        height: 100%;
        width: 100%;
        inset: 0px;
        object-fit: cover;
        color: transparent;
        -webkit-transition: -webkit-transform 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out;
    }

        .section-images img:hover {
            transform: scale(1.1);
            /*cursor: pointer;*/
        }

.section-desc-one {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #ffffff;
    font-weight: bold;
    /*background: linear-gradient(0deg, #6b6c85e0, #00000000);*/
    border-radius: 10px;
    padding: 10px;
    /* backdrop-filter: blur(1px) grayscale(1); */
    text-align: start;
}

    .section-desc-one h5 {
        margin-bottom: 0;
    }

    .section-desc-one p {
        color: #e1e1e1 !important;
    }

.section-desc-two {
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    color: #1a2b3d;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px;
    /* backdrop-filter: blur(1px) grayscale(1); */
    text-align: start;
}

    .section-desc-two h5 {
        margin-bottom: 0;
    }

    .section-desc-two p {
        color: #373737 !important;
    }

.odd {
    background-color: #f7f7f7;
}

.section-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

    .section-contents h2 {
        margin: 0;
        font-size: 32px;
        font-weight: 700;
        line-height: 40px;
        color: #1A2B3D;
        letter-spacing: -0.00833em;
    }

    .section-contents p {
        margin: 0;
        color: #3E4957;
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0.00938em;
        color: #5A6573;
        font-weight: 400;
        line-height: 24px;
        font-size: 15px;
        max-width: 620px;
    }

.footer-about img {
    max-height: 40px;
}

.footer-about p {
    margin: 0;
    color: #3E4957;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.00938em;
    font-weight: 400;
    line-height: 24px;
    max-width: 620px;
}

.footer-links h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1A2B3D;
    letter-spacing: 0em;
    font-weight: 525;
    margin-bottom: 8px;
    line-height: 20px;
}

.footer-links ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    flex-direction: column;
}


    .footer-links ul li {
        list-style: none;
        margin-bottom: 8px;
        -webkit-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
        line-height: 20px;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

        .footer-links ul li a {
            color: #3E4957;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            font-family: inherit;
            -webkit-text-decoration: none;
            text-decoration: none;
        }

            .footer-links ul li a:hover {
                color: #001ea0;
            }

.footer-social-links {
    display: grid;
    grid-template-columns: auto 1fr; /* label column + link column */
    gap: 0 4px;
    padding: 0;
    margin: 0;
}

    .footer-social-links div {
        /*padding: 4px 0;*/
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #3E4957;
        margin-bottom: 8px;
    }

        .footer-social-links div a {
            color: #001ea0;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            font-family: inherit;
            -webkit-text-decoration: none;
            text-decoration: none;
        }

            .footer-social-links div a:hover {
                color: #001ea0;
                text-decoration: underline;
            }

.footer-links a {
    color: #001ea0;
}

    .footer-links a:hover {
        text-decoration: underline !important;
    }

.footer-social-media a {
    font-size: 14px;
    height: 20px;
    width: 20px;
    text-align: center;
}

    .footer-social-media a:hover {
        background-color: #001ea0;
        color: white !important;
    }

.css-63g010 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 24px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.css-41zia9 {
    width: 23px;
    height: 55px;
    color: #000000;
}

.css-1ipfofe {
    width: 23px;
    height: 55px;
    color: #000000;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.css-1l96w9z {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.css-14rzhbo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 10px;
}

.css-1t9pz9x {
    width: 20px;
    height: 20px;
}

.css-dvxtzn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.css-fxthjx {
    margin: 0;
    font-family: Proxima Nova, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3333333333333333;
}

.css-1xhj18k {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.planeembed {
    background-image: url(../images/world-map.png);
    background-position: 0 0, 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: auto;
    height: 350px;
    display: block;
    /* position: absolute; */
    inset: 16px 5% auto auto;
}

.w-embed:before,
.w-embed:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-embed:after {
    clear: both;
}

/*.stat-section {
    background-image: url(../images/bg7.webp);
    min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
}*/
.stat-section {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    margin-top: 30px;
}

    .stat-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(../images/bg7.webp) center/cover no-repeat;
        filter: hue-rotate(261deg) saturate(33%);
        z-index: 0;
    }

    .stat-section > * {
        position: relative;
        z-index: 1; /* ensures content stays above background */
    }

.stat-div {
    text-transform: uppercase;
    text-align: center;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-modify: read-only;
}

.stat-header {
    font-size: 1.8rem;
}

    .stat-header span:nth-child(1), .stat-header span:nth-child(2) {
        color: #416ea7
        /*color: #fff;
        text-shadow: 1px 1px #000;*/
    }

    .stat-header span:nth-child(3), .stat-header span:nth-child(4) {
        color: #e31c24
        /*color: #fff;
        text-shadow: 1px 1px #000;*/
    }

    .stat-header span:nth-child(2), .stat-header span:nth-child(4) {
        font-weight: 800;
    }

.stat-footer {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .stat-footer span:nth-child(1), .stat-footer span:nth-child(2) {
        color: #e31c24;
        text-shadow: 3px 0px 12px #ffffff;
        /* color: #ffffff;
        text-shadow: -2px -2px 1px #e31c24;*/
    }



    .stat-footer span:nth-child(3), .stat-footer span:nth-child(4) {
        color: #001ea0;
        text-shadow: 3px 0px 12px #ffffff;
        /*  color: #ffffff;
        text-shadow: -2px -2px 1px #001ea0;*/
    }

    .stat-footer span:nth-child(1), .stat-footer span:nth-child(3) {
        font-weight: 800;
    }

    .stat-footer span:nth-child(2), .stat-footer span:nth-child(4) {
        font-weight: 500;
    }

.stat-body {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 6px;
}

    .stat-body div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

.main-stat {
    background-color: #416ea7;
    color: white;
    padding: 8px;
    font-size: 2.4rem;
    font-weight: 900;
    border-radius: 15px 15px 0 0;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 500;
    background: #c1dcff9c;
    padding: 4px 8px;
    backdrop-filter: blur(1px);
    border-radius: 0 0 15px 15px;
}


/*HERO SECTION*/
.hero {
    position: relative;
    background-image: conic-gradient(hsl(228deg 100% 32% / 36%) 0 0), url('../images/bgice.webp');
    /*background-image: conic-gradient(hsl(210.46deg 65.12% 47.3% / 62%) 0 0), url('../images/bgice.webp');*/
    /*background-image: conic-gradient(hsl(0 0% 100% / .10) 0 0), url('../images/bg6.webp');*/
    -o-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
    /*  margin: 90px 50px 0 !important;
    border-radius: 16px;*/
    overflow: visible;
    /*margin: 0 5px 5px;*/
    /* border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;*/
    /*mask: linear-gradient(red calc(100% - 110px), transparent);*/
}

.hero-container {
    position: relative;
    z-index: 2;
    margin-top: 0px !important;
    padding: 10px 0 !important;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -0.3px;
    font-size: clamp(1.8rem, 3.6vw, 3rem)
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    font-size: 1rem
}

@media (max-width:576px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
        margin: 0 !important;
    }

        .hero p.lead {
            font-size: .95rem
        }
}
/* MAIN SEARCH TAB PANEL */
.search-bar {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 100px 10px rgba(24, 33, 77, .05);
    padding: 0;
    position: relative;
    color: black;
    overflow: hidden;
}

/* Navigation Tabs */
.search-nav-tabs {
    display: flex;
    background: #1a2b3d;
    border-radius: 20px 20px 0 0;
    padding: 0;
    margin: 0;
    overflow-x: auto;
}

.search-nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
}

    .search-nav-tab:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .search-nav-tab.active {
        background: #fff;
        color: #1a2b3d;
    }

    .search-nav-tab i {
        font-size: 16px;
    }

/* Search Content */
.search-content {
    padding: 30px;
}

/* Tab Content Panels */
.tab-content-panel {
    display: none;
}

    .tab-content-panel.active {
        display: block;
    }


.travel-container {
    position: relative;
    padding: 20px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 232px;
    /* Space for half of the tabs */
}

.travel-tabs {
    background: white; /*linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    border-radius: 12px;
    padding: 8px;
    width: 90%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 0 15px;
    box-shadow: 0 2px 6px rgba(25, 103, 210, 0.2);
}

.travel-tab {
    background: transparent;
    border: none;
    color: black;
    padding: 8px 0px;
    /* border-radius: 20px; */
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
    /*.travel-tab.active,*/
    .travel-tab:hover {
        /*color: white;*/
        color: rgb(25, 103, 210);
        transform: translateY(-2px);
    }

    .travel-tab.active {
        /*color: white;
        border-bottom: 2px solid white;*/
        color: rgb(25, 103, 210);
        border-bottom: 2px solid rgb(25, 103, 210);
    }

    .travel-tab i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .travel-tab span {
        font-size: 0.9rem;
    }

.section-bg {
    --bg-color: rgba(255, 233, 236, .6); /* gradient color */
    --base-color: #fffbf7cc; /* main background */
    background: radial-gradient(ellipse 30% 26% at 80% 0, var(--bg-color), transparent), radial-gradient(ellipse 30% 26% at bottom left, var(--bg-color), transparent), var(--base-color);
}

    .section-bg.blue {
        --bg-color: rgba(204,243,255,.6);
        --base-color: #f7fafc; /* light blue background */
    }

    .section-bg.green {
        --bg-color: rgb(224 255 224 / 60%);
        --base-color: #fafffa; /* light green background */
    }

    .section-bg.yellow {
        --bg-color: rgb(221 255 244 / 60%);
        --base-color: #fafffc; /* light yellow background */
    }
