:root {
    --primary: #28B2E4;
    --primary-dark: #000000;
    --primary-light: #ffffff;
    --primary-tint: #eaf8fd;
    --accent: #000000;
    --accent-dark: #28B2E4;
    --text-dark: #000000;
    --text-muted: #5a5a5a;
    --border-color: #e6e9f0;
    --radius: 10px;
    --shadow-soft: 0 10px 35px rgba(0, 0, 0, .10);
    --shadow-strong: 0 20px 45px rgba(0, 0, 0, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

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

a {
    text-decoration: none;
}

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

/* =========================================================
   CUSTOM SCROLLBAR — comfortable, on-brand scrolling
========================================================= */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f5f9;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), #000000);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* =========================================================
   GLOBAL ENTRANCE / SCROLL-REVEAL ANIMATIONS
========================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* Generic scroll-reveal utility — added via JS (IntersectionObserver) in app layout */
.reveal-onscroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-onscroll.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.reveal-onscroll.delay-1 {
    transition-delay: .12s;
}

.reveal-onscroll.delay-2 {
    transition-delay: .24s;
}

.visa-card,
.cert-card,
.feature-item,
.package-card {
    animation: fadeInUp .6s ease both;
}

.visa-grid .col:nth-child(1) .visa-card {
    animation-delay: .05s;
}

.visa-grid .col:nth-child(2) .visa-card {
    animation-delay: .12s;
}

.visa-grid .col:nth-child(3) .visa-card {
    animation-delay: .19s;
}

.visa-grid .col:nth-child(4) .visa-card {
    animation-delay: .26s;
}

.visa-grid .col:nth-child(5) .visa-card {
    animation-delay: .33s;
}

.visa-grid .col:nth-child(6) .visa-card {
    animation-delay: .40s;
}

.visa-grid .col:nth-child(7) .visa-card {
    animation-delay: .47s;
}

.visa-grid .col:nth-child(8) .visa-card {
    animation-delay: .54s;
}

.cert-col:nth-child(1) .cert-card {
    animation-delay: .05s;
}

.cert-col:nth-child(2) .cert-card {
    animation-delay: .15s;
}

.cert-col:nth-child(3) .cert-card {
    animation-delay: .25s;
}

.cert-col:nth-child(4) .cert-card {
    animation-delay: .35s;
}

/* =========================================================
   UNIVERSAL BUTTON HOVER — black slides in from one side
   (applies to every primary CTA button across the site)
========================================================= */
.btn-inquiry,
.btn-about,
.btn-visa,
.btn-outline-white,
.btn-view-all-cert,
.btn-visa-viewall,
.btn-view-details,
.btn-search,
.visa-status-search-box button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-inquiry::before,
.btn-about::before,
.btn-visa::before,
.btn-outline-white::before,
.btn-view-all-cert::before,
.btn-visa-viewall::before,
.btn-view-details::before,
.btn-search::before,
.visa-status-search-box button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s ease;
    z-index: -1;
}

.btn-inquiry:hover::before,
.btn-about:hover::before,
.btn-visa:hover::before,
.btn-outline-white:hover::before,
.btn-view-all-cert:hover::before,
.btn-visa-viewall:hover::before,
.btn-view-details:hover::before,
.btn-search:hover::before,
.visa-status-search-box button:hover::before {
    transform: scaleX(1);
}

.btn-inquiry:hover,
.btn-about:hover,
.btn-visa:hover,
.btn-outline-white:hover,
.btn-view-all-cert:hover,
.btn-visa-viewall:hover,
.btn-view-details:hover,
.btn-search:hover,
.visa-status-search-box button:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-inquiry:hover i,
.btn-about:hover i,
.btn-visa:hover i,
.btn-outline-white:hover i,
.btn-view-all-cert:hover i,
.btn-visa-viewall:hover i,
.btn-view-details:hover i,
.btn-search:hover i {
    color: #ffffff;
}

/* start  */
/* =========================================================
   1. TOPBAR (marquee) — single light color (white + sky tint)
========================================================= */
.topbar {
    background: linear-gradient(90deg, var(--primary-tint) 0%, #ffffff 50%, var(--primary-tint) 100%);
    color: #0c2233;
    font-size: .85rem;
    position: relative;
    z-index: 1051;
    border-bottom: 2px solid var(--primary);
}

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

.topbar-badge {
    flex: 0 0 auto;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    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: 500;
    opacity: .9;
    color: #0c2233;
}

.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(0, 0, 0, .25);
}

@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(0, 0, 0, .12);
    margin-left: 12px;
    height: 100%;
}

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

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

@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(0, 0, 0, .06);
    transition: padding .3s ease, box-shadow .3s ease;
    border-bottom: 1px solid #eef2f7;
}

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

.site-header.is-scrolled {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: auto;
    height: 78px;
    max-width: 190px;
    object-fit: contain;
    object-position: center;
    flex: 0 0 auto;
    transition: height .3s ease;
}

.site-header.is-scrolled .brand-logo {
    height: 60px;
    width: auto;
}

@media (max-width:991.98px) {
    .brand-logo {
        height: 64px;
        max-width: 150px;
    }

    .site-header.is-scrolled .brand-logo {
        height: 52px;
    }
}

@media (max-width:575.98px) {
    .brand-logo {
        height: 56px;
        max-width: 130px;
    }
}

.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: #000000;
    font-weight: 600;
    font-size: .96rem;
    padding: 10px 16px !important;
    border-radius: 6px;
    position: relative;
    transition: color .25s ease;
}

.main-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

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

.main-nav .nav-link.active::before,
.main-nav .nav-link:hover::before {
    transform: scaleX(1);
}

.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: #000000;
    font-size: .9rem;
    font-weight: 500;
    transition: .2s ease;
}

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

.dropdown-menu-custom a:hover {
    background: var(--primary-tint);
    color: var(--primary);
    padding-left: 16px;
}

.dropdown-menu-custom a:hover i {
    color: #000000;
}

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

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

.btn-inquiry {
    background: var(--primary);
    color: #ffffff !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(40, 178, 228, .35);
    transition: .25s;
    border: none;
}

/* mobile toggler */
.mobile-toggle {
    border: none;
    background: #000000;
    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;
    transition: .25s;
}

.mobile-toggle:hover {
    background: var(--primary);
    color: #000000;
}

.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 / MOBILE SIDEBAR
========================================================= */
.offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

#mobileSidebar {
    z-index: 1200;
    width: 300px;
    max-width: 86vw;
    border: none;
    box-shadow: 0 0 60px rgba(0, 0, 0, .35);
}

#mobileSidebar .offcanvas-header {
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    position: relative;
}

#mobileSidebar .offcanvas-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

#mobileSidebar .offcanvas-brand .brand-logo,
#mobileSidebar .offcanvas-brand img.brand-logo {
    width: auto !important;
    height: 52px !important;
    max-width: 170px;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.offcanvas-close-btn {
    border: none;
    background: var(--primary-tint);
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: 0 0 auto;
    transition: .3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.offcanvas-close-btn:hover {
    background: var(--primary-tint);
    color: var(--primary);
    transform: rotate(90deg);
    border: 1px solid var(--border-color);
}

#mobileSidebar .offcanvas-body {
    padding: 20px 16px 26px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

#mobileSidebar .nav-link {
    color: #000000;
    font-weight: 600;
    font-size: .95rem;
    padding: 13px 14px;
    border-bottom: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .25s ease;
    margin-bottom: 4px;
    position: relative;
}

#mobileSidebar .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 9px;
    width: 3px;
    border-radius: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform .25s ease;
}

#mobileSidebar .nav-link.active,
#mobileSidebar .nav-link:hover {
    color: #0f8fbf;
    background: var(--primary-tint);
    padding-left: 18px;
}

#mobileSidebar .nav-link.active::before,
#mobileSidebar .nav-link:hover::before {
    transform: scaleY(1);
}

#mobileSidebar .submenu {
    display: none;
    padding-left: 16px;
    border-left: 2px solid var(--primary-tint);
    margin: 2px 0 10px 18px;
}

#mobileSidebar .submenu.show {
    display: block;
    animation: slideDown .3s ease;
}

#mobileSidebar .submenu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 8px;
    font-size: .87rem;
    color: var(--text-muted);
    border-radius: 8px;
    transition: .2s ease;
}

#mobileSidebar .submenu a:hover {
    color: #0f8fbf;
    background: var(--primary-tint);
    padding-left: 14px;
}

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

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

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

#mobileSidebar .sidebar-cta {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

#mobileSidebar .sidebar-cta .btn-inquiry {
    width: 100%;
    justify-content: center;
}



/* =========================================================
   3. BANNER SLIDER — full image shown on every device, no crop
========================================================= */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #06142d;
}

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

.hero-slide.active {
    position: relative;
    height: 100%;
    /* <-- এই লাইনটা যোগ করুন */
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

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

/* base (mobile-first): full image, natural ratio, no crop */
.hero-slide-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Desktop/tablet — fixed height box, full image always fills it (stretched, no crop) */
@media (min-width: 768px) {
    .hero-slider {
        height: 550px !important;
    }

    .hero-slider .hero-slide {
        height: 100%;
        /* <-- নিশ্চিত করতে এটাও যোগ করলাম */
    }

    .hero-slider .hero-slide-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: fill !important;
        object-position: center !important;
    }
}

.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 5;
}

.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;
    cursor: pointer;
    transition: .25s;
}

.hero-arrow:hover {
    background: #000000;
    border-color: #000000;
    transform: scale(1.08);
}


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

@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;
        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-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    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(--primary);
    width: 38px;
}




/* =========================================================
   4. SEARCH BOX — new unique pill-switcher tab design
========================================================= */
.search-anchor {
    position: relative;
}

.search-panel-wrap {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    gap: 2px;
}

.search-tabs-indicator {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(33.333% - 6px);
    background: #000000;
    border-radius: 40px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
}

.search-tab-btn {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: .84rem;
    padding: 14px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    border-radius: 40px;
    transition: color .3s ease;
}

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

.search-tab-btn.active {
    color: #ffffff;
}

.search-tab-btn:hover:not(.active) {
    color: var(--primary);
}

.search-panel {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .14);
    padding: 28px;
    margin-top: 16px;
    width: 100%;
    animation: fadeInUp .5s ease both;
}

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

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

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

.search-form .form-select,
.search-form .form-control {
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: .92rem;
    background: #f8f9fc;
    transition: .25s ease;
}

.search-form .form-select:focus,
.search-form .form-control:focus {
    box-shadow: 0 0 0 4px var(--primary-tint);
    border-color: var(--primary);
    background: #fff;
}

.btn-search {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    padding: 12px 22px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 22px rgba(40, 178, 228, .28);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-search:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .3);
}

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

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

    .search-tab-btn {
        font-size: .74rem;
        padding: 12px 6px;
    }

    .search-panel {
        border-radius: 16px;
        padding: 20px;
    }

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

/* end */


/* start about css */

/* =========================================================
   5. ABOUT / WELCOME SECTION (design unchanged — animation only)
========================================================= */
.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;
    transition: transform .3s ease;
}

.about-badge:hover {
    transform: translateY(-4px);
}

.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);
}

.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);
    animation: fly-bob 2.6s ease-in-out infinite;
}

@keyframes fly-bob {

    0%,
    100% {
        transform: rotate(-20deg) translateY(0);
    }

    50% {
        transform: rotate(-20deg) translateY(-8px);
    }
}

.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(40, 178, 228, .3);
}

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

.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(--primary);
    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(--primary);
    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;
    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(-8px);
    box-shadow: 0 24px 44px rgba(0, 0, 0, .18);
}

.visa-img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    flex: 0 0 190px;
    overflow: hidden;
    margin: 0;
    border-radius: 16px 16px 0 0;
}

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

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

.visa-flag {
    position: absolute;
    bottom: -22px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    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;
    transition: transform .3s ease;
}

.visa-card:hover .visa-flag {
    transform: translateX(-50%) scale(1.12);
}

.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;
    transition: transform .25s ease;
}

.visa-cat:hover i {
    transform: translateY(-3px) scale(1.05);
}

.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;
}

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

.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 — soft bounce on hover ===== */
.section-title .eyebrow {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .85rem;
}

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

/* ===== DESTINATIONS — auto bounce + hover lift ===== */
.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 230px;
    display: block;
    box-shadow: var(--shadow-soft);
    transition: box-shadow .3s ease;
    animation: autoBounce 3.2s ease-in-out infinite;
}

@keyframes autoBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* stagger so all cards don't bounce in exact sync */
.row.g-3.py-4 .col-6:nth-child(4n+1) .dest-card {
    animation-delay: 0s;
}

.row.g-3.py-4 .col-6:nth-child(4n+2) .dest-card {
    animation-delay: .25s;
}

.row.g-3.py-4 .col-6:nth-child(4n+3) .dest-card {
    animation-delay: .5s;
}

.row.g-3.py-4 .col-6:nth-child(4n+4) .dest-card {
    animation-delay: .75s;
}

.dest-card:hover {
    box-shadow: var(--shadow-strong);
    animation-play-state: paused;
    transform: translateY(-14px) scale(1.03);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
}

.dest-card:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-10px) scale(1.03);
}

.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(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, .85) 100%);
}

.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(--primary);
    border-color: var(--primary);
    transform: rotate(-45deg);
}

/* 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-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: .3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover .f-ic {
    background: #000000;
    color: #fff;
    transform: translateY(-4px) rotate(-6deg);
}

.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 — simplified, less sky ===== */
.cta-strip {
    background: #000000;
    padding: 34px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary);
}

.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;
    transition: transform .3s ease;
}

.cta-strip:hover .cta-ic {
    transform: rotate(12deg);
}

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

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

/* 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: #000000;
    color: rgba(255, 255, 255, .78);
    padding: 64px 0 0;
    font-size: .9rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: .3px;
}

footer h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: var(--primary);
}

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

footer a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.foot-logo {
    display: inline-block;
}

.foot-logo img {
    height: 90px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
    border: 1px solid rgba(40, 178, 228, .25);
}

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

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

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

.foot-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    transform: translateY(-4px);
    padding-left: 0;
    box-shadow: 0 8px 18px rgba(40, 178, 228, .4);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 44px;
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.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: 44px 0 0;
        text-align: left;
    }

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

    .payment-icons {
        justify-content: center;
    }
}

/* WhatsApp floating button (moved in from footer partial) */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1200;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(37, 211, 102, .55);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.2s infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--text-dark);
    font-size: .82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 50px;
        right: 16px;
        font-size: 1.4rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* 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: #000000;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    transition: background .25s;
    user-select: none;
}

.filter-head:active {
    background: #0c3548;
}

.filter-head.open {
    background: var(--primary);
}

.filter-head .chev-ic {
    transition: transform .3s;
}

.filter-head.open .chev-ic {
    transform: rotate(180deg);
}

.filter-count-badge {
    background: #fff;
    color: var(--primary);
    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: #000000;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title::before {
    content: '';
    width: 4px;
    height: 14px;
    background: var(--primary);
    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(--primary);
}

.filter-check input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
    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(--primary);
    color: var(--primary);
}

@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: #000000;
    font-weight: 700;
}

.sort-select-wrap {
    position: relative;
}

.sort-select {
    appearance: none;
    background: #fff;
    border: 1.5px solid var(--border-dark, #d8dce6);
    color: #000000;
    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(--primary);
    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(--primary);
    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: #000000;
    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(--primary);
}

@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: #000000;
    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(--primary);
}

.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(--primary);
    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: var(--primary);
    font-size: 0.78rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pkg-more-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    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, #eef1f7 0%, #fff 100%);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: 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: #000000;
    font-weight: 600;
}

.btn-view-details {
    background: var(--primary);
    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;
    box-shadow: 0 8px 18px rgba(40, 178, 228, .3);
    width: 100%;
    justify-content: center;
}

@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: #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: #000000;
    transition: border-color .2s;
}

.price-input:focus {
    border-color: var(--primary);
    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: #000000;
    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(--primary);
}


.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: #f7f7f9;
    color: var(--primary);
}

.submenu-list li a.view-all-sub {
    color: var(--primary);
    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;
}

.search-field::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 8px;
    bottom: 14px;
    color: var(--primary);
    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: #000000;
    background: #fff;
    border: 1px solid var(--border-dark, #d8dce6);
    transition: .2s;
}

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

.pkg-page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 6px 14px rgba(40, 178, 228, .3);
}

.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 var(--primary);
    border-radius: 50px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    background: transparent;
}

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

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



/* =========================================================
   CERTIFICATE SECTION (moved in from home page, now on-brand)
========================================================= */
.cert-section {
    background: linear-gradient(180deg, #f6f9ff 0%, #eef3fb 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cert-head {
    text-align: center;
    margin-bottom: 46px;
}

.cert-medal {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 40px;
}

.cert-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.cert-title-row .line {
    height: 2px;
    width: 70px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.cert-title-row .line.right {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.cert-heading {
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: .5px;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

.cert-subline {
    font-weight: 600;
    font-size: 17px;
    color: #123b7a;
    margin: 10px 0 8px;
}

.cert-desc {
    color: #64748b;
    font-size: 15px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.cert-col {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .cert-col {
        flex: 0 0 calc(50% - 11px);
        max-width: calc(50% - 11px);
    }
}

@media (min-width: 768px) {
    .cert-col {
        flex: 0 0 calc(33.333% - 15px);
        max-width: calc(33.333% - 15px);
    }
}

@media (min-width: 992px) {
    .cert-col {
        flex: 0 0 calc(25% - 16.5px);
        max-width: calc(25% - 16.5px);
    }
}

.cert-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 20px 18px 26px;
    height: 100%;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
    border-color: transparent;
}

.cert-card-title {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 16px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
}

.cert-img-outer {
    position: relative;
    margin-bottom: 36px;
}

.cert-img-frame {
    background: #f4f6fa;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    background: #fff;
}

.cert-badge {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.cert-badge img {
    width: 72%;
    height: 72%;
    object-fit: contain;
}

.cert-badge i {
    font-size: 22px;
    color: #000000;
}

.cert-card-desc {
    color: #6b7685;
    font-size: 12.5px;
    line-height: 1.65;
    margin: 0;
    padding: 0 4px;
    margin-top: auto;
}

#certificateModal .modal-content {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

#certificateModal .modal-header {
    background: #000000;
    color: #fff;
    border: none;
}

#certificateModal .modal-header .btn-close {
    filter: invert(1);
}

#certificateModal .modal-body {
    background: #fff;
}

#certificateModal .modal-img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    background: #f4f6fa;
    display: block;
}

#certificateModal .modal-desc {
    padding: 18px 22px;
    color: #495057;
    font-size: .92rem;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   VISA STATUS TRACKER (moved in from home page, on-brand)
========================================================= */
.visa-status-section {
    background: linear-gradient(180deg, #eaf8fd 0%, #f7fbff 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.visa-status-section::before,
.visa-status-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background-image: radial-gradient(circle, #c7e8f5 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: .55;
    z-index: 0;
}

.visa-status-section::before {
    top: -60px;
    left: -60px;
}

.visa-status-section::after {
    bottom: -60px;
    right: -60px;
}

.visa-status-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.visa-status-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.visa-status-eyebrow .line {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.visa-status-eyebrow .line.right {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.visa-status-title {
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    color: #000000;
    margin: 0 0 12px;
}

.visa-status-sub {
    color: #64748b;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.visa-status-search-wrap {
    max-width: 640px;
    margin: 32px auto 0;
    position: relative;
    z-index: 1;
}

.visa-status-search-box {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .12);
    padding: 6px;
    border: 1px solid var(--border-color);
}

.visa-status-search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 22px;
    font-size: 15px;
    color: #1e293b;
    border-radius: 50px;
}

.visa-status-search-box input::placeholder {
    color: #94a3b8;
}

.visa-status-search-box button {
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 0 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.visa-status-search-box button:disabled {
    opacity: .7;
    cursor: not-allowed;
}

@media (max-width: 575px) {
    .visa-status-search-box {
        flex-direction: column;
        border-radius: 20px;
        gap: 8px;
    }

    .visa-status-search-box input {
        padding: 12px 16px;
    }

    .visa-status-search-box button {
        border-radius: 14px;
        padding: 12px;
        justify-content: center;
    }
}

.visa-status-error {
    display: none;
    max-width: 640px;
    margin: 16px auto 0;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    text-align: center;
}

.visa-status-result {
    display: none;
    max-width: 720px;
    margin: 30px auto 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 1;
    animation: fadeInUp .35s ease;
}

.visa-status-result-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.visa-status-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-tint);
    flex-shrink: 0;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.visa-status-photo i {
    font-size: 30px;
    color: #94a3b8;
}

.visa-status-info {
    flex: 1;
    min-width: 200px;
}

.visa-status-info h5 {
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
    font-size: 17px;
}

.visa-status-info .vs-row {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.visa-status-info .vs-row i {
    color: var(--primary);
    width: 14px;
}

.visa-status-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.visa-status-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #94a3b8;
}

.visa-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    position: relative;
}

.visa-status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
}

.visa-status-badge .dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: visaPulse 1.6s ease-out infinite;
}

@keyframes visaPulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: .55;
    }

    100% {
        box-shadow: 0 0 0 10px currentColor;
        opacity: 0;
    }
}

.visa-status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.visa-status-badge.pending .dot {
    background: #d69e2e;
    color: #d69e2e;
}

.visa-status-badge.approved {
    background: #d4edda;
    color: #155724;
}

.visa-status-badge.approved .dot {
    background: #22c55e;
    color: #22c55e;
}

.visa-status-badge.rejected {
    background: #f8d7da;
    color: #721c24;
}

.visa-status-badge.rejected .dot {
    background: #ef4444;
    color: #ef4444;
}

.visa-status-badge.default {
    background: #e0e7ff;
    color: #3730a3;
}

.visa-status-badge.default .dot {
    background: #6366f1;
    color: #6366f1;
}

#trackForm .visa-status-error,
#trackForm .visa-status-result {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

#trackForm .visa-status-result {
    margin-top: 22px;
}



/* =========================================================
   HEADER "Contact Us" BUTTON — simple continuous bounce
========================================================= */
.btn-inquiry-animated {
    animation: ctaBounce 2s ease-in-out infinite;
}

@keyframes ctaBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}