:root {
    --primary: #0d47a1;
    --primary-dark: #062a5e;
    --primary-light: #e8f0fd;
    --accent: #75b942;
    --accent-dark: #5c9a30;
    --text-dark: #1b2437;
    --text-muted: #6c7688;
    --border-color: #e6e9f0;
    --radius: 10px;
    --shadow-soft: 0 10px 35px rgba(13, 71, 161, .12);
    --shadow-strong: 0 20px 45px rgba(6, 20, 45, .18);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.section-pad {
    padding: 80px 0;
}

/* start  */
/* =========================================================
   1. TOPBAR (marquee)
========================================================= */
.topbar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-size: .85rem;
    position: relative;
    z-index: 1051;
}

.topbar-inner {
    display: flex;
    align-items: center;
    height: 38px;
}

.topbar-badge {
    flex: 0 0 auto;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .3px;
    padding: 6px 16px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    padding-right: 26px;
}

.marquee-wrap {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 22s linear infinite;
    padding-left: 100%;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    padding: 0 28px;
    position: relative;
    font-weight: 400;
    opacity: .95;
}

.marquee-track span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.topbar-contact {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 12px;
    height: 100%;
}

.topbar-contact a {
    color: #fff;
    font-size: .85rem;
    opacity: .9;
}

.topbar-contact a:hover {
    opacity: 1;
    color: var(--accent);
}

@media (max-width:767.98px) {
    .topbar-contact {
        display: none;
    }

    .topbar-badge {
        font-size: .68rem;
        padding: 6px 12px;
        padding-right: 20px;
    }

    .marquee-track span {
        padding: 0 18px;
        font-size: .78rem;
    }
}

/* =========================================================
   2. HEADER
========================================================= */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 18px rgba(13, 71, 161, .06);
    transition: padding .3s ease, box-shadow .3s ease;
}

@media (max-width:991.98px) {
    .site-header {
        padding: 10px 0;
    }
}

.site-header.is-scrolled {
    /* padding: 8px 0; */
    box-shadow: 0 6px 24px rgba(13, 71, 161, .14);
}

.site-header.is-scrolled .brand-logo {
    width: 100px;
    height: 100px;
    font-size: 1.05rem;
}
@media (max-width:991.98px) {
    .site-header.is-scrolled .brand-logo {
        width: 81px;
        height: 81px;
    }
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 100px;
    height: 100px;
   
    object-fit: cover;
    flex: 0 0 auto;
}

@media (max-width:991.98px) {
    .brand-logo {
        width: 90px;
        height: 90px;
    }
}
.brand-text {
    line-height: 1.1;
}

.brand-text .b1 {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary);
    letter-spacing: .3px;
}

.brand-text .b2 {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* desktop nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: .96rem;
    padding: 10px 16px !important;
    border-radius: 6px;
    position: relative;
    transition: .25s;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
    color: var(--primary);
}

.main-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-color);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
}

@media (min-width:992px) {
    .nav-item.dropdown:hover .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu-custom a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: .9rem;
    font-weight: 500;
}

.dropdown-menu-custom a i {
    color: var(--primary);
    font-size: 1rem;
}

.dropdown-menu-custom a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-caret {
    font-size: .65rem;
    margin-left: 4px;
    transition: .25s;
}

.nav-item.dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

.btn-inquiry {
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    font-size: .9rem;
    padding: 10px 22px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(117, 185, 66, .35);
    transition: .25s;
    border: none;
}

.btn-inquiry:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* mobile toggler */
.mobile-toggle {
    border: none;
    background: var(--primary-light);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    z-index: 5;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width:992px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width:991.98px) {
    .desktop-only {
        display: none !important;
    }

    .header-flex {
        position: relative;
    }

    .header-flex .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        pointer-events: none;
    }

    .header-flex .brand * {
        pointer-events: auto;
    }
}

/* offcanvas sidebar */
.offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

#mobileSidebar {
    z-index: 1200;
}

#mobileSidebar .offcanvas-header {
    border-bottom: 1px solid var(--border-color);
}

#mobileSidebar .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 12px 6px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#mobileSidebar .nav-link.active {
    color: var(--primary);
}

#mobileSidebar .submenu {
    display: none;
    padding-left: 14px;
    border-left: 2px solid var(--primary-light);
    margin: 4px 0 8px 6px;
}

#mobileSidebar .submenu.show {
    display: block;
}

#mobileSidebar .submenu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 6px;
    font-size: .9rem;
    color: var(--text-muted);
}

#mobileSidebar .submenu a i {
    color: var(--primary);
}

#mobileSidebar .caret-toggle i {
    transition: .25s;
}

#mobileSidebar .caret-toggle.open i {
    transform: rotate(180deg);
}

.offcanvas-close-btn {
    border: none;
    background: var(--primary-light);
    color: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex: 0 0 auto;
    transition: .25s;
    cursor: pointer;
}

.offcanvas-close-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}

#mobileSidebar .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}



/* =========================================================
   3. BANNER SLIDER (FIXED — mobile overflow issue + reduced height)
========================================================= */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 650;
    overflow: hidden;
    background: #06142d;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* desktop-এ ছবি পুরোপুরি fill করবে, crop হবে না কারণ ratio মিলে যায় */
.hero-slide-bg {
    display: none;
}

.hero-slide-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}




@media (max-width:767.98px) {
    .hero-arrows { display: none !important; }

    .hero-slider {
        aspect-ratio: auto;
        height: auto;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
    }

    .hero-slide.active {
        position: relative; /* active slide ta flow-e boshe container-er height set korbe */
        opacity: 1;
        visibility: visible;
    }

    .hero-slide-bg { display: none; }

    .hero-slide-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
}



.hero-caption .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 18px;
}

.hero-caption h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.hero-caption p {
    font-size: 1.02rem;
    opacity: .92;
    margin-bottom: 0;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-arrows {
    position: absolute;
    bottom: 120px;
    right: 6%;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

.hero-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-dots {
    position: absolute;
    bottom: 150px;
    left: 6%;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-dots span {
    width: 26px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: .3s;
}

.hero-dots span.active {
    background: var(--accent);
    width: 38px;
}




/* =========================================================
   4. SEARCH BOX (visa / tour)
========================================================= */
.search-anchor {
    position: relative;
}

.search-panel-wrap {
    position: relative;
    z-index: 10;
    margin-top: -70px;
}

.search-tabs {
    display: flex;
    max-width: 340px;
}

.search-tab-btn {
    flex: 1;
    border: none;
    background: #fff;
    color: var(--text-muted);
    font-weight: 600;
    font-size: .92rem;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px 12px 0 0;
    transition: .25s;
}

.search-tab-btn:first-child {
    margin-right: 4px;
}

.search-tab-btn i {
    font-size: 1rem;
}

.search-tab-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 -6px 18px rgba(13, 71, 161, .2);
}

.search-panel {
    background: #fff;
    border-radius: 0 14px 14px 14px;
    box-shadow: var(--shadow-strong);
    padding: 26px;
}

.search-form {
    display: none;
    animation: fadeIn .35s ease;
}

.search-form.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-form .form-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.search-form .form-select,
.search-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: .92rem;
    background: #f8f9fc;
}

.search-form .form-select:focus,
.search-form .form-control:focus {
    box-shadow: 0 0 0 3px var(--primary-light);
    border-color: var(--primary);
}

.btn-search {
    background: var(--accent);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    padding: 12px 22px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    transition: .25s;
}

.btn-search:hover {
    background: var(--accent-dark);
}

@media (max-width:767.98px) {
    .search-panel-wrap {
        margin-top: -10px;
    }

    .search-tabs {
        max-width: 100%;
    }

    .search-panel {
        border-radius: 0 0 14px 14px;
        padding: 18px;
    }

    .search-form .row>div {
        margin-bottom: 12px;
    }
}

/* end */


/* start about css */

/* =========================================================
   5. ABOUT / WELCOME SECTION
========================================================= */
.about-section {
    padding: 5px 100px 5px;
    background: #fff;
    overflow: hidden;
}

.about-media {
    position: relative;
    max-width: 520px;
}

.about-dots {
    position: absolute;
    top: -28px;
    left: -28px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 1.6px, transparent 1.6px);
    background-size: 12px 12px;
    opacity: .25;
    z-index: 0;
}

.about-img-frame {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.about-media:hover .about-img {
    transform: scale(1.04);
}

.about-img-frame::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 70px;
    height: 70px;
    border-left: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    border-radius: 0 0 0 22px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    left: 24px;
    bottom: -30px;
    z-index: 3;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
    padding: 14px 20px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.about-badge-text {
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* dashed flight trail + plane */
.about-plane-trail {
    position: absolute;
    right: -30px;
    bottom: 10px;
    width: 160px;
    height: 100px;
    color: var(--primary);
    opacity: .35;
    z-index: 0;
}

.about-plane {
    position: absolute;
    right: -14px;
    bottom: 78px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: rotate(-20deg);
    box-shadow: var(--shadow-strong);
}

.about-content {
    padding-top: 34px;
}

.about-eyebrow {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 22px;
    min-height: 2.7em;
}

.about-cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    animation: cursor-blink 1s steps(1) infinite;
}

@keyframes cursor-blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.about-para {
    font-size: .96rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 560px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 26px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 12px 26px rgba(13, 71, 161, .28);
    transition: .25s;
}

.btn-about i {
    transition: .25s;
}

.btn-about:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-about:hover i {
    transform: translateX(4px);
}

/* ---------- eyebrow simple reveal ---------- */
.reveal-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:991.98px) {
    .about-section {
        padding: 5px 100px 5px;
    }

    .about-media {
        max-width: 460px;
        margin: 0 auto;
    }

    .about-content {
        padding-top: 0;
        text-align: center;
    }

    .about-para {
        margin-left: auto;
        margin-right: auto;
    }

    .about-title {
        font-size: 1.9rem;
    }
}

@media (max-width:767.98px) {
    .about-section {
        padding: 10px 0 10px;
    }

    .about-dots {
        width: 80px;
        height: 80px;
        top: -16px;
        left: -16px;
    }

    .about-img {
        height: 340px;
    }

    .about-badge {
        padding: 10px 16px 10px 10px;
        left: 12px;
        bottom: -24px;
    }

    .about-badge-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .about-badge-text {
        font-size: .75rem;
    }

    .about-plane,
    .about-plane-trail {
        display: none;
    }

    .about-eyebrow {
        font-size: 1rem;
    }

    .about-title {
        font-size: 1.55rem;
        min-height: 2.4em;
    }

    .about-para {
        font-size: .9rem;
    }

    .btn-about {
        width: 100%;
        justify-content: center;
    }
}

/* end */

/* =========================================================
   VISA PROCESSING / DESTINATIONS SECTION
========================================================= */
.visa-section {
    padding: 60px 0;
    background: #fff;
}

.visa-head {
    max-width: 640px;
    margin: 0 auto 50px;
}

.visa-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--accent);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.visa-line {
    width: 30px;
    height: 0;
    border-top: 1.5px dashed var(--accent);
    display: inline-block;
}

.visa-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.visa-title span {
    color: var(--primary);
}

.visa-sub {
    font-size: .96rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.visa-grid .col {
    display: flex;
}

.visa-card {
    background: #fff;
    border-radius: 16px;
    overflow: visible;   /* flag এর জন্য visible */
    box-shadow: var(--shadow-strong);
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.visa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(13, 71, 161, .18);
}

.visa-img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    flex: 0 0 190px;      /* সব card এর image height এখানে FIXED, compress হবে না */
    overflow: hidden;
    margin: 0;
    border-radius: 16px 16px 0 0;   /* উপরের radius এখানে দাও যেহেতু parent overflow visible */
}

.visa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.visa-card:hover .visa-img {
    transform: scale(1.06);
}

.visa-flag {
    position: absolute;
    bottom: -22px;              /* image-এর নিচের বর্ডার থেকে কতটুকু ঝুলবে */
    left: 50%;                  /* মাঝখানে আনার জন্য */
    top: auto;
    transform: translateX(-50%); /* এটাই flag-কে exact center করবে */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    z-index: 2;
}

.visa-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visa-body {
    padding: 22px 18px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
}

.visa-country {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.visa-cats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.visa-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-muted);
}

.visa-cat i {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #fff;
}

.cat-holiday {
    background: #f7931e;
}

.cat-business {
    background: #1e88e5;
}

.cat-family {
    background: #8e5cd9;
}

.cat-study {
    background: #43a047;
}

.cat-transit {
    background: #00acc1;
}

.cat-work {
    background: #fb8c00;
}

.btn-visa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    padding: 11px 20px;
    border-radius: 9px;
    margin-top: auto;
    transition: .25s;
}

.btn-visa i {
    transition: .25s;
}

.btn-visa:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-visa:hover i {
    transform: translateX(4px);
}

@media (max-width:991.98px) {
    .visa-section {
        padding: 70px 0;
    }

    .visa-title {
        font-size: 1.8rem;
    }
}

@media (max-width:767.98px) {
    .visa-section {
        padding: 50px 0;
    }

    .visa-title {
        font-size: 1.5rem;
    }

    .visa-sub {
        font-size: .88rem;
    }

    .visa-country {
        font-size: .95rem;
    }

    .visa-cat {
        font-size: .62rem;
    }

    .visa-cat i {
        width: 26px;
        height: 26px;
        font-size: .75rem;
    }

    .visa-body {
        padding: 34px 14px 18px;
    }
}

@media (max-width:575.98px) {
    .visa-grid .col {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* end */
/* start css */
/* ===== DESTINATIONS ===== */
.section-title .eyebrow {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .85rem;
}

.section-title h2 {
    color: var(--text-dark);
    font-weight: 700;
}

.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 230px;
    display: block;
    box-shadow: var(--shadow-soft);
    transition: .3s;
}

.dest-card:hover {
    box-shadow: var(--shadow-strong);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 42, 94, 0) 40%,
            rgba(6, 42, 94, .85) 100%);
    /* --primary-dark base diye gradient */
}

.dest-card .dest-info {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.dest-card .dest-info h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-card .dest-info .go-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    background: rgba(255, 255, 255, .08);
    transition: .3s;
}

.dest-card:hover .go-circle {
    background: var(--accent);
    border-color: var(--accent);
}

/* end css */

/* start  */
/* ===== FEATURE STRIP ===== */
.feature-strip {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-item .f-ic {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: .3s ease;
}

.feature-item:hover .f-ic {
    background: var(--accent);
    color: #fff;
    transform: translateY(-4px);
}

.feature-item h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .col-lg:not(:last-child) .feature-item {
        border-right: 1px solid var(--border-color);
        padding-right: 16px;
    }
}

/* end */

/* start */
/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 34px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle decorative circle pattern */
.cta-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 8%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.cta-strip .container {
    position: relative;
    z-index: 2;
}

.cta-ic {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.cta-left h5 {
    font-weight: 700;
}

/* Contact Us button */
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s ease;
    border: 1px solid var(--accent);
}

.btn-outline-white:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* WhatsApp block */
.whatsapp-ic {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
}

.cta-right div[style] {
    color: #fff;
}

.cta-right div[style] strong {
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .cta-strip .container {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .cta-right {
        width: 100%;
        justify-content: space-between;
    }

    .cta-strip {
        padding: 26px 0;
        text-align: left;
    }

    .cta-strip .container {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    .cta-left {
        width: 100%;
    }

    .cta-left h5 {
        font-size: 1rem;
    }

    .cta-left p {
        font-size: .82rem !important;
    }

    .cta-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    .btn-outline-white {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .cta-right > div {
        width: 100%;
    }

    .whatsapp-ic {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .cta-ic {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .cta-left h5 {
        font-size: .95rem;
    }
}


/* end */

/* footer start */
/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .75);
    padding: 60px 0 0;
    font-size: .9rem;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

footer h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

footer a {
    display: block;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: .87rem;
    transition: .25s ease;
}

footer a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.foot-logo img {
    /* background: #fff; */
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 14px;
    height: 170px;
    width: auto;
}

@media (max-width:767.98px) {
    .foot-logo img {
        height: 100px;
        padding: 8px 12px;
    }
}

.foot-social {
    display: flex;
    gap: 10px;
}

.foot-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: #fff;
    font-size: .9rem;
}

.foot-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    padding-left: 0;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 40px;
    padding: 20px 0;
}

.foot-bottom p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
}

.payment-icons img {
    width: 200px;
    height: auto;
    background: #fff;
    padding: 4px 8px;
    border-radius: 5px;
}

@media (max-width: 767px) {
    footer {
        padding: 40px 0 0;
        text-align: left;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
}
/* footer end */




/* ===== ALL-PACKAGES LISTING PAGE ===== */
.listing-wrap { background: var(--bg, #f5f6fa); padding: 30px 0 70px; }
.listing-wrap .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.listing-row { display: grid; grid-template-columns: 270px 1fr; gap: 26px; align-items: start; }
@media (max-width: 991px) { .listing-row { grid-template-columns: 1fr; } }

.filter-sidebar { background: #fff; border-radius: 14px; border: 1px solid var(--border, #e5e7eb); box-shadow: 0 4px 20px rgba(16,24,40,.06); overflow: hidden; }
.filter-head { display: none; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--navy); color: #fff; font-weight: 700; font-size: 0.9rem; cursor: pointer; position: relative; transition: background .25s; user-select: none; }
.filter-head:active { background: #1f2a44; }
.filter-head.open { background: var(--red); }
.filter-head .chev-ic { transition: transform .3s; }
.filter-head.open .chev-ic { transform: rotate(180deg); }
.filter-count-badge { background: #fff; color: var(--red); font-size: 0.68rem; font-weight: 800; width: 20px; height: 20px; border-radius: 50%; display: none; align-items: center; justify-content: center; margin-left: 8px; }
.filter-count-badge.show { display: inline-flex; }
.filter-body { padding: 6px 0; }
.filter-group { padding: 18px 20px; border-bottom: 1px solid var(--border, #e5e7eb); }
.filter-group:last-child { border-bottom: none; }
.filter-title { font-size: 0.86rem; font-weight: 700; color: var(--navy); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.filter-title::before { content: ''; width: 4px; height: 14px; background: var(--red); border-radius: 2px; }
.filter-check { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; font-size: 0.83rem; color: #444d5e; transition: color .2s; }
.filter-check:hover { color: var(--red); }
.filter-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--red); cursor: pointer; flex-shrink: 0; }
.filter-clear { display: block; width: calc(100% - 40px); margin: 6px 20px 16px; background: none; border: 1.5px solid var(--border-dark, #d8dce6); color: var(--gray, #6b7280); font-size: 0.78rem; font-weight: 700; padding: 9px; border-radius: 7px; cursor: pointer; transition: .2s; }
.filter-clear:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 991px) {
    .filter-head { display: flex; }
    .filter-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0; }
    .filter-body.expanded { max-height: 2000px; padding: 6px 0; }
}

.results-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.results-count { font-size: 0.86rem; color: #444d5e; }
.results-count strong { color: var(--navy); font-weight: 700; }
.sort-select-wrap { position: relative; }
.sort-select { appearance: none; background: #fff; border: 1.5px solid var(--border-dark, #d8dce6); color: var(--navy); font-weight: 600; font-size: 0.82rem; padding: 9px 34px 9px 14px; border-radius: 8px; cursor: pointer; transition: border-color .2s; }
.sort-select:focus { border-color: var(--red); outline: none; }
.sort-select-wrap::after { content: '\f0d7'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--red); font-size: 0.75rem; pointer-events: none; }

.package-list { display: flex; flex-direction: column; gap: 22px; }
.package-card { background: #fff; border-radius: 16px; border: 1px solid var(--border, #e5e7eb); box-shadow: 0 4px 20px rgba(16,24,40,.07); overflow: hidden; transition: .3s; }
.package-card:hover { box-shadow: 0 16px 40px rgba(16,24,40,.14); transform: translateY(-3px); }
.package-card-inner { display: grid; grid-template-columns: 400px 1fr 240px; gap: 0; }
@media (max-width: 991px) { .package-card-inner { grid-template-columns: 1fr; } }

.package-thumb { position: relative; height: 100%; min-height: 280px; overflow: hidden; }
.package-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.package-card:hover .package-thumb img { transform: scale(1.08); }
.package-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,24,40,.5) 0%, transparent 40%); }
.duration-chip { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95); color: var(--navy); font-size: 0.72rem; font-weight: 700; padding: 6px 13px; border-radius: 20px; display: flex; align-items: center; gap: 6px; z-index: 2; box-shadow: 0 4px 10px rgba(16,24,40,.15); }
.duration-chip i { color: var(--red); }
@media (max-width: 991px) { .package-thumb { height: 220px; min-height: 220px; } }
@media (max-width: 575px) { .package-thumb { height: 190px; min-height: 190px; } }

.package-content { padding: 22px 24px; display: flex; flex-direction: column; border-right: 1px solid var(--border, #e5e7eb); }
@media (max-width: 991px) { .package-content { border-right: none; border-bottom: 1px solid var(--border, #e5e7eb); } }
.pkg-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.18rem; font-weight: 700; color: var(--navy); margin: 0 0 6px; line-height: 1.3; }
.pkg-title a { color: inherit; text-decoration: none; transition: color .2s; }
.pkg-title a:hover { color: var(--red); }
.pkg-location { font-size: 0.8rem; color: var(--gray, #6b7280); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.pkg-location i { color: var(--red); font-size: 0.74rem; }
.pkg-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pkg-features li { font-size: 0.84rem; color: #444d5e; display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.pkg-features li i { color: #f5a623; font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }
.pkg-more-link { font-size: 0.8rem; font-weight: 700; color: var(--red); text-decoration: none; margin-top: 10px; display: inline-flex; align-items: center; gap: 5px; width: fit-content; transition: gap .2s; }
.pkg-more-link:hover { gap: 8px; }

.pkg-price-box {
    background: linear-gradient(180deg, var(--navy-light, #eef1f7) 0%, #fff 100%);
    padding: 24px 22px; display: flex;
    flex-direction: column; align-items: center;
    /* justify-content: center; */
    gap: 12px;
    text-align: center;
    position: relative;
}
.pkg-price-divider { width: 50px; height: 1px; background: var(--border-dark, #d8dce6); }
.pkg-price-wrap { display: flex; flex-direction: column; align-items: center; background: #fff; border: 1.5px solid var(--border, #e5e7eb); border-radius: 12px; padding: 12px 20px; width: 100%; z-index: 2; }
.pkg-price-lbl { font-size: 0.68rem; color: var(--gray, #6b7280); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; font-weight: 600; }
.pkg-old-price { font-size: 0.78rem; color: var(--red); font-weight: 600; }
.btn-view-details { background: red; color: #fff; border: none; padding: 12px 26px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; letter-spacing: .03em; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: .25s; box-shadow: 0 8px 18px rgba(227,28,37,.3); width: 100%; justify-content: center; }
.btn-view-details:hover { box-shadow: 0 10px 24px rgba(227,28,37,.42); transform: translateY(-2px); color: #fff; }

@media (max-width: 991px) {
    .pkg-price-box { border-top: 1px solid var(--border, #e5e7eb); flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; text-align: left; padding: 16px 20px; background: var(--navy-light, #eef1f7); gap: 14px; }
    .pkg-price-divider { display: none; }
    .pkg-price-wrap { align-items: flex-start; width: auto; border: none; padding: 0; background: transparent; flex-shrink: 0; }
    .btn-view-details { width: auto; }
}
@media (max-width: 575px) { .btn-view-details { padding: 11px 18px; font-size: 0.78rem; } }

.pkg-pagination-wrap { display: flex; justify-content: center; margin-top: 34px; }
.pkg-pagination-wrap nav { display: flex; }
.tp-card-link { text-decoration: none; display: block; }
.tp-badge-icon { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }


.price-range-inputs {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.price-input-wrap {
    flex: 1;
    min-width: 0;
}
.price-input-wrap label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray, #6b7280);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 5px;
}
.price-input {
    width: 100%;
    padding: 9px 10px;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 7px;
    font-size: 0.85rem;
    color: var(--navy);
    transition: border-color .2s;
}
.price-input:focus {
    border-color: var(--red);
    outline: none;
}
.price-range-sep {
    color: var(--gray, #6b7280);
    font-size: 0.9rem;
    padding-bottom: 9px;
}
.price-apply-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}
.price-apply-btn:hover {
    background: var(--red);
}


.dropdown-submenu { position: relative; }
.pkg-count { font-size: 0.72rem; color: var(--gray, #6b7280); margin-left: 4px; }
.submenu-list {
    list-style: none;
    margin: 0;
    padding: 4px 0 6px 30px;
    display: none;
}
.dropdown-submenu:hover .submenu-list { display: block; }
.submenu-list li a {
    display: block;
    padding: 6px 10px;
    font-size: 0.82rem;
    color: var(--gray, #6b7280);
    text-decoration: none;
    border-radius: 5px;
    transition: background .15s, color .15s;
}
.submenu-list li a:hover { background: var(--light, #f7f7f9); color: var(--red); }
.submenu-list li a.view-all-sub {
    color: var(--red);
    font-weight: 700;
    font-size: 0.78rem;
}


.search-field {
    position: relative;
}

.search-field select.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 26px;
    cursor: pointer;
    background-image: none; /* remove default browser arrow if any */
}

.search-field::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 8px;
    bottom: 14px;
    color: var(--red);
    font-size: 0.72rem;
    pointer-events: none;
}

@media (max-width: 767px) {
    .search-field::after {
        bottom: 10px;
    }
}


.pkg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.pkg-page-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border-dark, #d8dce6);
    transition: .2s;
}

.pkg-page-btn:hover:not(.disabled):not(.active):not(.dots) {
    border-color: var(--red);
    color: var(--red);
}

.pkg-page-btn.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 6px 14px rgba(227, 28, 37, .25);
}

.pkg-page-btn.disabled {
    color: #c4c9d4;
    background: #f7f7f9;
    cursor: not-allowed;
    border-color: var(--border, #e5e7eb);
}

.pkg-page-btn.dots {
    border: none;
    background: transparent;
    cursor: default;
    color: var(--gray, #6b7280);
}

@media (max-width: 480px) {
    .pkg-page-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}


/* View All Button Wrapper */
.visa-viewall-wrap {
  margin-top: 40px;
}

.btn-visa-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid #093A84;
  border-radius: 50px;
  color: #093A84;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-visa-viewall i {
  transition: transform 0.3s ease;
}

.btn-visa-viewall:hover {
  background: #093A84;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.btn-visa-viewall:hover i {
  transform: translateX(4px);
}
