/* ==============================================================
1️⃣ DESIGN TOKENS (CSS variables)
============================================================== */
:root {
    /* ---- Colours ------------------------------------------------- */
    --color-primary: #202b6d;
    /* Dark blue (buttons, accents) */
    --color-primary-dark: #1c2560;
    /* Darker shade for hover */
    --color-accent: #ee3c25;
    /* Red‑orange (highlights, links) */
    --color-blue: #006cb8;
    /* Light blue (secondary buttons) */
    --color-navy: #00026e;
    /* Footer background */
    --color-dark: #000;
    /* General dark background / text */
    --color-light: #fff;
    /* Light text / background */
    --color-gray-light: #dcdcdc;
    /* Light border / input */
    --color-gray-dark: #333;
    /* Darker gray for text */
    --color-overlay: rgba(0, 0, 0, 0.35);
    --color-overlay-gallery: rgba(0, 0, 0, 0.4);
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-shadow-dark: rgba(0, 0, 0, 0.15);
    --color-shadow-hover: rgba(0, 0, 0, 0.2);

    /* ---- Typography ---------------------------------------------- */
    --font-base: 'Times New Roman', sans-serif;
    --font-alt: 'Times New Roman', sans-serif;

    /* ---- Sizing -------------------------------------------------- */
    --btn-padding: 12px 35px;
    --btn-radius: 10px;
    --gallery-height: 380px;
    --gallery-height-mobile: 280px;
}

/* ==============================================================
2️⃣ GLOBAL RESET & BASE STYLES
============================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-base);
    font-size: 14px !important;
}

/* ==============================================================
3️⃣ HEADER & NAVIGATION
============================================================== */

/* Default: black on all pages (including sticky) */
.header-area-all .main-menu-ex li a {
    color: var(--color-dark);
}

/* Sticky header: ensure black text (covers both home & inner pages when scrolled) */
.header-area-all.sticky .main-menu-ex li a {
    color: var(--color-dark);
}

/* Homepage only: white text when NOT sticky */
body.home-page .header-area-all:not(.sticky) .main-menu-ex li a {
    color: var(--color-light);
}

/* ==============================================================
4️⃣ HERO SECTION
============================================================== */
.hero-area6 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-dark);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 2;
}

.fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-area6 .container {
    position: relative;
    z-index: 3;
}

.drop-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-area6 img[class^="hero6-shape"] {
    position: absolute;
    z-index: 4;
}

/* ==============================================================
5️⃣ DESTINATION SECTION
============================================================== */
.hero6-form-all {
    margin-top: 0;
}

.flag-option {
    display: flex;
    align-items: center;
}

.flag-option img {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
    object-fit: cover;
}

.select2-selection__rendered {
    display: flex !important;
    align-items: center;
}

.select2-container--default .select2-selection--single {
    height: 50px !important;
    border-radius: var(--btn-radius) !important;
    border: 1px solid var(--color-gray-light) !important;
    display: flex !important;
    align-items: center !important;
    padding-left: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px !important;
}

/* Primary button style – used in many places */
.theme-btn13 {
    background: var(--color-primary);
    color: var(--color-light);
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.theme-btn13:hover {
    background: var(--color-primary-dark);
}

/* ==============================================================
6️⃣ TOUR SECTION
============================================================== */
.tour-card img {
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover img {
    transform: scale(1.05);
}

.tour-card .badge {
    font-size: 0.8rem;
    padding: 6px 10px;
}

.hover-text-primary:hover {
    color: var(--color-accent) !important;
}

:root {
    --goz-blue: #1A2B48;
    --goz-light-blue: #007bff;
    --goz-yellow: #FFC107;
    --goz-gray: #6C757D;
}

/* Sidebar Styling */
.filter-sidebar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-title {
    font-size: 18px !important;
    font-weight: 700;
    color: var(--neutral-main-text-color, #19191B);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.filter-section-title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Time Icons */
.time-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    flex: 1;
    margin: 2px;
}

.time-box i {
    display: block;
    font-size: 14px;
}

.time-box span {
    font-size: 10px;
}

/* Category Icons Top */
.category-item {
    background: white;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    cursor: pointer;
}

.category-item:hover {
    border-color: var(--goz-light-blue);
}

.category-item img {
    height: 30px;
    margin-bottom: 5px;
}

.category-item p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Tour Card Styling */
.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #eee;
    position: relative;
}

.card-img-container {
    position: relative;
}

.get-points-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
}

.tour-content {
    padding: 15px;
}

.tour-title {
    font-size: 18px !important;
    font-weight: 700;
    color: var(--neutral-main-text-color, #19191B);
    margin-bottom: 5px;
}

.tour-location {
    font-size: 14px;
    color: var(--goz-gray);
}

.tour-meta {
    font-size: 14px;
    color: var(--goz-gray);
    margin-top: 10px;
}

.tour-policy {
    font-size: 14px;
    color: #444;
    background: #F8F9FA;
    padding: 8px;
    border-radius: 4px;
    margin-top: 10px;
}

.price-section {
    border-left: 1px solid #eee;
    padding: 15px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.current-price {
    font-size: 20px;
    font-weight: 800;
    color: #000;
}

.discount-tag {
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.footer-note {
    font-size: 14px;
    color: var(--goz-gray);
    margin-top: -15px;
    margin-bottom: 20px;
}

.custom-tour-banner {
    background: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
}

.form-check-input:checked[type="checkbox"] {
    background-color: #ee3c25;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #ee3c25;
    border-color: #ee3c25;
}

.form-check-input:focus {
    border-color: #ee3c25;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(238, 60, 37, .25);
}

:root {
    --goz-blue: #1A2B48;
    --goz-yellow: #FFC107;
    --goz-gray: #6C757D;
    --goz-light-bg: #F5F7FA;
}

/* Hero Section */
.tour-hero {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tour-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tour-info-panel {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tour-info-panel h2 {
    font-size: 30px !important;
    color: var(--neutral-main-text-color, #19191B);
    font-weight: 700;
    margin-bottom: 5px;
}

.tour-info-panel p {
    font-size: 14px;
    color: var(--goz-gray);
    margin: 3px 0;
}

.tour-info-panel .location {
    color: #007bff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-info-panel .map {
    width: 100%;
    height: 265px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.tour-info-panel .map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tabs */
.nav-tabs .nav-link {
    color: var(--goz-gray);
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
}

.nav-tabs .nav-link.active {
    color: var(--goz-blue);
    border-bottom: 3px solid var(--goz-blue);
}

/* Accordion Sections */
.accordion-section {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--goz-blue);
    border-bottom: 1px solid #eee;
}

.accordion-header i {
    font-size: 16px;
}

.accordion-body {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.accordion-body ul {
    padding-left: 20px;
    list-style-type: disc;
    margin: 10px 0;
}

.accordion-body li {
    margin-bottom: 5px;
}

/* Inclusion/Exclusion Icons */
.inclusion-list li::before {
    content: "✓ ";
    color: #2E7D32;
    font-weight: bold;
}

.exclusion-list li::before {
    content: "✗ ";
    color: #D32F2F;
    font-weight: bold;
}

/* Consultation Form */
.consult-form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
}

.consult-form h4 {
    font-size: 18px !important;
    color: var(--neutral-main-text-color, #19191B);
    font-weight: 700;
    margin-bottom: 15px;
}

.consult-form .form-control {
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
}

.consult-form .btn-submit {
    background: #006cb8;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 6px;
    width: 100%;
    transition: 0.3s;
}

.consult-form .btn-submit:hover {
    background: #ee3c25;
}

/* ===== TOUR GALLERY ===== */
.tour-gallery {
    background: #fff;
    border-radius: 12px;
    overflow: visible;
}

.tour-main-slider img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.tour-thumb-slider {
    padding: 12px 0;
    margin-left: -3px;
}

.tour-thumb-slider img {
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .5;
    transition: .3s;
}

.tour-thumb-slider .slick-current img {
    opacity: 1;
}

.tour-thumb-slider .slick-slide {
    margin: 0 6px;
}

/* Sticky Panels */
.tour-sticky {
    position: sticky;
    top: 90px;
}

/* MOBILE */
@media (max-width: 768px) {
    .tour-main-slider img {
        height: 260px;
    }

    .tour-hero .row>div {
        padding: 0 !important;
    }

    .tour-info-panel {
        margin-top: 15px;
    }
}

.btn-check:focus+.btn,
.btn:focus {
    color: #fff;
    box-shadow: none;
}

/* ==============================================================
7️⃣ SERVICES SECTION
============================================================== */
.service5-hadding a:hover {
    color: var(--color-accent) !important;
}

/* ==============================================================
8️⃣ GALLERY SECTION
============================================================== */
.gallery-slider-section {
    padding: 100px 0;
}

.gallery-slide-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--color-shadow);
    transition: all 0.4s ease;
}

.gallery-slide-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--color-shadow-dark);
}

.gallery-slide-item img {
    width: 100%;
    height: var(--gallery-height);
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-slide-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay-gallery);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 42px;
    color: var(--color-light);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-slide-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 20px !important;
    color: var(--color-gray-dark) !important;
    box-shadow: 0 5px 15px var(--color-shadow);
    transition: all 0.3s;
}

.gallery-slider .owl-nav button:hover {
    background: var(--color-blue) !important;
    color: var(--color-light) !important;
}

.gallery-slider .owl-prev {
    left: -25px;
}

.gallery-slider .owl-next {
    right: -25px;
}

@media (max-width: 768px) {
    .gallery-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-slider .owl-prev {
        left: 10px;
    }

    .gallery-slider .owl-next {
        right: 10px;
    }

    .gallery-slide-item img {
        height: var(--gallery-height-mobile);
    }
}

/* ==============================================================
9️⃣ PARTNER SECTION
============================================================== */
.partner-section {
    padding: 100px 0;
}

.partner-grid .partner-item {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.partner-grid .partner-item img {
    width: auto;
    margin: 0 auto;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.4s ease;
}

.partner-grid .partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.12);
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
    .partner-grid .partner-item {
        padding: 20px 10px;
    }

    .partner-grid .partner-item img {
        max-height: 70px;
    }
}

/* ==============================================================
🔟 FOOTER
============================================================== */
.footer-gozayaan {
    background-color: var(--color-navy);
    color: var(--color-light);
    padding: 80px 0 20px;
    font-family: var(--font-alt);
}

.footer-title {
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    color: var(--color-light);
}

.footer-links a {
    color: var(--color-light);
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s;
    line-height: 22px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-text {
    opacity: 1;
    line-height: 21px;
}

.footer-address {
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact {
    font-size: 15px;
}

.footer-contact a {
    color: var(--color-light);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-payment-img {
    transition: transform 0.3s;
}

.footer-divider {
    border-color: var(--color-light);
    opacity: 0.25;
}

.footer-logo {
    height: 50px;
}

.footer-copyright {
    font-size: 14px;
    opacity: 1;
}

.footer-copyright a {
    color: inherit;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--color-accent);
}

.profile_pdf {
    display: block;
}

.profile_pdf a {
    display: flex;
    width: 420px;
    padding: 12px 15px !important;
    background-color: var(--color-accent);
    border: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.profile_pdf a i {
    font-size: 45px !important;
    margin: 0 !important;
}

.profile_pdf a h3 {
    width: 300px;
    padding-left: 30px;
}

.profile_pdf a h3 span {
    display: block;
}

.profile_pdf h3 {
    font-size: 1.75rem !important;
}

/* ==============================================================
1️⃣1️⃣ VISA SECTION
============================================================== */
/* Filter bar */
.visa-filter-bar {
    background: #fff;
    border: 1px solid var(--color-blue);
    border-radius: 10px;
    padding: 14px;
}

.filter-box {
    border: 1px solid var(--color-blue);
    border-radius: 10px;
    padding: 14px 14px 12px;
    height: 100%;
    background: #fff;
}

.filter-label {
    font-size: 14px;
    color: #8b95a7;
    margin-bottom: 4px;
    font-weight: 600;
}

.filter-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.filter-sub {
    margin-top: 4px;
    font-size: 14px;
    color: #98a2b3;
}

.visa-search-btn {
    background: var(--color-accent);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid var(--color-accent);
    padding: 14px 16px;
}

.visa-search-btn:hover {
    background: #ee3c25;
    border-color: #ee3c25;
    color: #fff;
}

/* Visa cards */
.visa-card {
    background: #fff;
    border: 1px solid var(--color-blue);
    border-radius: 12px;
    padding: 16px;
    transition: .2s ease;
}

.visa-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(17, 24, 39, .08);
}

.visa-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    min-height: 26px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.pill-visa {
    background: #ffe9f5;
    color: var(--color-accent);
    border: 1px solid #ffd1ea;
}

.pill-unavailable {
    background: #e53935;
    color: #fff;
    border: 1px solid #e53935;
}

.visa-title {
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    min-height: 44px;
    font-size: 18px !important;
}

.mt-5.mb-4.fw-semibold {
    font-size: 18px !important;
}

.visa-info {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 14px;
}

.visa-info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px dashed #dadada;
    gap: 10px;
}

.visa-info li:last-child {
    border-bottom: none;
}

.visa-info span {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 60%;
}

.visa-info i {
    color: #94a3b8;
}

.visa-info b {
    color: #111827;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 6px;
    border-top: 1px solid #eef1f7;
}

.price-row .muted {
    color: #6b7280;
    font-size: 14px;
}

.price-row strong {
    font-size: 18px;
}

.select-btn {
    margin-top: 12px;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    background: #fff;
    border-radius: 10px;
    font-weight: 800;
    padding: 10px 12px;
}

.select-btn:hover {
    background: var(--color-accent);
    color: #fff;
}

.select-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.visa-wrapper {
    /* background: #f8fafc; */
    padding: 60px 0
}

.visa-box,
.visa-side-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, .06)
}

.visa-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #f1f5f9;
    border-bottom: 1px solid #e5e7eb
}

.visa-tabs {
    padding: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.visa-tab {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer
}

.visa-tab.active {
    border-color: #ee3c25;
    color: #ee3c25;
}

.visa-tab-content {
    display: none;
}

.visa-tab-content.active {
    display: block;
}

.visa-doc {
    padding: 20px
}

.visa-doc-title {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.visa-note {
    padding: 0 20px 20px;
    font-size: 14px;
}

.important-list {
    padding: 20px 30px;
}

.visa-side-card {
    padding: 20px;
    position: sticky;
    top: 100px;
}

.visa-side-header {
    display: flex;
    justify-content: space-between;
}

.visa-side-header h5 {
    color: var(--Main-Text-Color, #181A1C);
    font-size: 18px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    position: relative;
    padding-left: 16px;
}

.visa-side-header h5::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 2px;
    top: 1px;
    background: #006cb8;
    left: 0;
    z-index: 1;
}

.badge-evisa {
    background: #ffe6f2;
    color: #ee3c25;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.visa-info-list li {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 10px;
    margin-bottom: 10px
}

.visa-fee-list li {
    display: flex;
    justify-content: space-between
}

.visa-total {
    font-weight: 700;
    margin: 15px 0;
    display: flex;
    justify-content: space-between
}

.btn-apply {
    width: 100%;
    background: #ff2f92;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    margin-bottom: 8px
}

.btn-quote {
    width: 100%;
    background: #f1f5f9;
    padding: 12px;
    border: none;
    border-radius: 8px
}

.pink {
    color: #ff2f92
}

.green {
    color: #16a34a
}

.visa-name {
    font-weight: 700;
    font-size: 18px !important;
    padding: 20px 0;
}

/* ==============================================================
1️⃣2️⃣ MISCELLANEOUS / UTILITIES
============================================================== */
.hadding4 span {
    font-size: 26px !important;
}

.progress-wrap::after {
    color: var(--color-accent);
}

.progress-wrap:hover {
    color: var(--color-accent);
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-accent);
}

.page-hero-area {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 93px;
}

.page-hero-hadding {
    padding-top: 0px;
}

.custom_check_btn {
    margin-top: 25px;
    width: 100%;
}

/* Overriding the primary button colour for a secondary usage */
.theme-btn13 {
    padding: 0 35px !important;
    background: var(--color-blue) !important;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
    .profile_pdf a {
        width: inherit;
    }

    .custom_display_none {
        display: none;
    }

    .footer-logo {
        height: 70px;
        margin-bottom: 20px;
    }
}


/* ==============================================================
1️⃣3️⃣ Service Section
============================================================== */
.custom_long_description {
    text-align: justify;
}

.custom_long_description p {
    margin: 20px 0;
}

.custom_long_description ul {
    list-style: disc !important;
    margin-left: 20px !important;
    margin-bottom: 16px;
}

.custom_long_description li {
    margin-bottom: 8px;
}

.custom_long_description li p {
    margin: 0;
}

.contact-widget li {
    font-size: 14px;
    color: #555;
}

.contact-widget i {
    color: #ff5a3c;
}

.contact-widget a {
    color: inherit;
    text-decoration: none;
}

.contact-widget a:hover {
    text-decoration: underline;
}

/* Ensure UL lists show bullets inside description and FAQ */
.custom_long_description ul,
.accordion-body2 ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.custom_long_description li,
.accordion-body2 li {
    margin-bottom: 8px;
}

button.accordion-button.accordion-button2 {
    background: #ff5a3c1a;
    padding: 1rem 1.5rem;
}

.accordion-button.accordion-button2:not(.collapsed) {
    background-color: #ff5a3c;
}

.accordion-body.accordion-body2 {
    background: #fff;
    color: #000;
    padding: 24px 45px;
}

.blog-category-list li a.active {
    background-color: #ff5a3c;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 1;
}

.blog-category-list li a:hover {
    background-color: #ff5a3c;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 1;
}


/* ==============================================================
1️⃣4️⃣ Blog Section
============================================================== */
.blog-search-box {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.blog-search-box input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 14px;
    outline: none;
}

.blog-search-box button {
    background: #ee3c25;
    color: #fff;
    border: none;
    padding: 0 18px;
    height: 100%;
    cursor: pointer;
    transition: background 0.3s;
    margin-right: 10px;
    border-radius: 5px;
}

.blog-search-box button:hover {
    background: #d63420;
}

.search-loading {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
    display: none;
}

/* Results */
.search-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: transform .2s, box-shadow .2s;
}

.search-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.search-card img {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
}

.search-card-content h6 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.highlight {
    background: #fff3a0;
    padding: 0 3px;
}

/* Link inside card */
.search-card-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100%;
}

/* Blog image */
.search-card-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-right: 1px solid #f0f0f0;
}

/* Blog title */
.search-card-title {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}

#blog-search-btn {
    padding: 0px 15px;
}

.search-card-title:hover {
    color: #ee3c25;
}


.highlight {
    font-weight: 700;
}

.search-card-wrapper {
    display: grid;
    gap: 10px;
}

.search-card {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
}

.search-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.search-card h6 {
    margin: 0;
    font-size: 14px;
    color: #111;
}

.search-loading {
    margin-top: 10px;
    font-size: 13px;
}


/* ==============================================================
1️⃣5️⃣ Contact Section
============================================================== */
.standard-contact-box {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.standard-contact-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.standard-contact-box .contact7-icon img {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
}

.standard-contact-box h4 a {
    font-size: 18px !important;
    font-weight: 600;
    color: #051923;
}

.standard-contact-box a {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
}

.standard-contact-box a:hover {
    color: var(--main-color, #1a73e8);
}

/* ==============================================================
1️⃣6️⃣ Gallery Section
============================================================== */
.popup-gallery a img {
    height: 306px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

/* Hide counter */
.mfp-counter {
    display: none !important;
}

/* Toolbar at bottom */
.mfp-toolbar {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.mfp-toolbar button {
    background: transparent;
    border: none;
    color: #fff;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.mfp-toolbar button:hover {
    color: #00d9ff;
}

.mfp-img {
    transition: transform 0.25s ease-in-out;
    transform-origin: center center;
}

/* ==============================================================
1️⃣7️⃣ Team Section
============================================================== */
/* Team Box */
.team-slider .team2-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-slider .team2-box:hover {
    transform: translateY(-5px);
}

.team-slider .team2-box-hover p {
    margin: 5px 0 10px 0;
}

/* Navigation Buttons */
.team-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.team-slider .owl-nav button:hover {
    background: #ee3c25 !important;
}

.team-slider .owl-nav i {
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.team-slider .owl-nav button:hover i {
    color: #fff;
}

.team-slider .owl-nav .owl-prev {
    left: 10px;
}

.team-slider .owl-nav .owl-next {
    right: 10px;
}

/* Optional hover show only */
.team-slider .owl-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-slider:hover .owl-nav {
    opacity: 1;
}

@media (max-width: 768px) {
    .team-slider .owl-nav .owl-prev {
        left: 5px;
    }

    .team-slider .owl-nav .owl-next {
        right: 5px;
    }
}

/* ==============================================================
1️⃣8️⃣ POLICY PAGES (TERMS / REFUND / EMI / PRIVACY)
============================================================== */
.custom_policies h2,
.custom_policies h3 {
    color: #1a5d3e;
    margin-top: 40px;
}

.custom_policies h2 {
    font-size: 18px !important;
    border-bottom: 2px solid #1a5d3e;
    padding-bottom: 6px;
}

.custom_policies h3 {
    font-size: 18px !important;
    margin-bottom: 10px;
}

.custom_policies p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.custom_policies ul {
    margin: 10px 0 20px 30px;
}

.custom_policies li {
    margin-bottom: 6px;
    list-style-type: disc;
}

.custom_policies strong {
    color: #2d7a57;
}

.custom_policies a {
    color: #1a5d3e;
    text-decoration: none;
}

.custom_policies a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .custom_policies h2 {
        font-size: 18px !important;
    }
}


/* ==============================================================
1️⃣9️⃣ VISA DETAILS SECTION
============================================================== */
:root {
    --vb-page: #f4f7fb;
    --vb-card: #ffffff;
    --vb-border: #e6edf7;
    --vb-head: #f3f6fb;
    --vb-text: #0f172a;
    --vb-muted: #6b7a90;
    --vb-soft: #f8fafc;

    --vb-primary: #ee3c25;
    --vb-primary-soft: rgba(255, 42, 161, .08);
    --vb-success: #22c55e;
}

/* page spacing after breadcrumb */
.vb-page {
    padding: 22px 0 60px;
    margin-top: -10px;
}

.vb-gutter {
    row-gap: 18px;
}

/* cards */
.vb-card {
    background: var(--vb-card);
    border: 1px solid var(--vb-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(16, 24, 40, .02);
}

.vb-card-header {
    background: var(--vb-head);
    padding: 12px 14px;
    font-weight: 700;
    font-size: 14px;
    color: var(--vb-text);
    border-bottom: 1px solid var(--vb-border);
}

.vb-card-body {
    padding: 14px;
}

/* traveler top row */
.vb-traveler-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid var(--vb-border);
    border-radius: 8px;
    background: #fff;
    margin-bottom: 12px;
}

.vb-traveler-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--vb-text);
}

.vb-traveler-left i {
    color: #64748b;
}

.vb-traveler-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vb-select {
    border: 1px solid var(--vb-border);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    min-width: 210px;
    height: 34px;
}

.vb-icon-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--vb-border);
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* blocks (accordion look but static) */
.vb-block {
    border: 1px solid var(--vb-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.vb-block-head {
    background: #f6f9fe;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--vb-border);
}

.vb-block-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--vb-text);
}

.vb-block-head i {
    color: #64748b;
    font-size: 14px;
}

.vb-block-body {
    padding: 12px;
}

.vb-mt {
    margin-top: 14px;
}

.vb-mt-card {
    margin-top: 18px;
}

/* labels & inputs (look like screenshot) */
.vb-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #2b3a52;
    line-height: 1.2;
}

.vb-label span {
    color: #ef4444;
}

.vb-info {
    margin-left: 6px;
    color: #94a3b8;
    font-weight: 400;
}

.vb-input {
    width: 100%;
    height: 34px;
    border: 1px solid var(--vb-border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    outline: none;
}

.vb-input::placeholder {
    color: #94a3b8;
}

.vb-input:focus {
    border-color: #cfe0ff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .08);
}

.vb-phone-wrap {
    position: relative;
}

.vb-phone-flag {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid var(--vb-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #fff;
    font-size: 10px;
    pointer-events: none;
}

/* dropzones */
.vb-dropzone {
    position: relative;
    border: 1px dashed #d7e2f2;
    border-radius: 10px;
    background: #fbfdff;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vb-dropzone-sm {
    min-height: 90px;
}

.vb-drop-center {
    width: 100%;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.vb-preview {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vb-drop-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #94a3b8;
}

.vb-drop-hint i {
    color: #9aa9c0;
}

.vb-drop-hint b {
    color: #0f172a;
    font-weight: 700;
}

.vb-file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* radios */
.vb-radio-row {
    display: flex;
    gap: 16px;
    margin-top: 6px;
    align-items: center;
}

.vb-radio {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    color: #2b3a52;
}

/* save row */
.vb-save-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--vb-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    color: #2b3a52;
}

.vb-save-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* switch */
.vb-switch {
    position: relative;
    width: 44px;
    height: 22px;
}

.vb-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.vb-slider {
    position: absolute;
    inset: 0;
    background: #e5e7eb;
    border-radius: 999px;
    transition: .2s;
    cursor: pointer;
}

.vb-slider:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: .2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}

.vb-switch input:checked+.vb-slider {
    background: #c7d2fe;
}

.vb-switch input:checked+.vb-slider:before {
    transform: translateX(22px);
}

.vb-switch-text {
    color: #64748b;
    font-size: 14px;
}

/* confirmation section */
.vb-confirm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vb-check {
    display: flex;
    gap: 12px;
    border: 1px solid var(--vb-border);
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    cursor: pointer;
    align-items: flex-start;
}

.vb-check input {
    display: none;
}

.vb-box {
    width: 14px;
    height: 14px;
    border: 1.6px solid #cbd5e1;
    border-radius: 3px;
    margin-top: 7px;
    position: relative;
    flex: 0 0 14px;
    background: #fff;
}

.vb-check input:checked+.vb-box {
    border-color: var(--vb-primary);
    background: var(--vb-primary-soft);
}

.vb-check input:checked+.vb-box:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: 2px solid var(--vb-primary);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.vb-checktext b {
    font-size: 14px;
    color: var(--vb-text);
}

.vb-checktext small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #7a8aa0;
    line-height: 1.35;
}

.vb-checktext a {
    color: var(--vb-primary);
    text-decoration: none;
}

/* right column */
.vb-sticky {
    position: sticky;
    top: 18px;
}

.vb-booking-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 700;
    font-size: 12.5px;
    color: var(--vb-text);
    margin-bottom: 12px;
}

.vb-booking-title i {
    color: #94a3b8;
}

.vb-steps {
    margin-bottom: 10px;
}

.vb-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
}

.vb-step-text b {
    font-size: 11.5px;
    color: var(--vb-text);
}

.vb-step-text div {
    font-size: 10.5px;
    color: #7a8aa0;
    margin-top: 2px;
}

.vb-step-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--vb-success);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    margin-top: 2px;
    flex: 0 0 16px;
}

.vb-step-dot-muted {
    background: #e5e7eb;
    color: #e5e7eb;
}

.vb-divider {
    height: 1px;
    background: var(--vb-border);
    margin: 12px 0;
}

.vb-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #334155;
    padding: 4px 0;
}

.vb-total {
    padding-top: 8px;
    font-weight: 800;
    color: var(--vb-text);
}

.vb-coupon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--vb-primary);
    text-decoration: none;
    margin: 10px 0 12px;
}

.vb-pay-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.vb-pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.vb-pay-btn {
    border: 1px solid var(--vb-border);
    border-radius: 8px;
    background: #fff;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    color: #334155;
    height: 56px;
}

.vb-pay-btn i {
    font-size: 14px;
}

.vb-pay-active {
    border-color: #ee3c25;
    background: rgba(255, 42, 161, .06);
    color: var(--vb-primary);
}

.vb-primary-btn {
    width: 100%;
    border: none;
    background: var(--vb-primary);
    color: #fff;
    border-radius: 6px;
    height: 34px;
    font-weight: 800;
    font-size: 14px;
}

.vb-secondary-btn {
    width: 100%;
    border: 1px solid var(--vb-border);
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 6px;
    height: 34px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .vb-sticky {
        position: relative;
        top: auto;
    }

    .vb-select {
        min-width: 160px;
    }
}

/* Accordion behavior */
.vb-block-body {
    display: block;
}

.vb-block.is-collapsed .vb-block-body {
    display: none;
}

.vb-block-head {
    cursor: pointer;
    user-select: none;
}

.vb-block-head i {
    transition: transform .2s ease;
}

.vb-block.is-collapsed .vb-block-head i {
    transform: rotate(180deg);
}

/* ✅ dropdown cut হওয়া বন্ধ */
.vb-card,
.vb-block {
    overflow: visible !important;
}

/* ✅ select open হলে উপরের layer এ আসবে */
.row.g-3 .col-md-6 {
    position: relative;
    z-index: 1;
}

.row.g-3 .col-md-6:focus-within {
    z-index: 9999;
}

.nice-select.vb-input {
    padding: 0 10px;
}

/* ==============================================================
2️⃣0️⃣ SIGN IN & SIGN UP
============================================================== */
.auth2-wrap {
    padding: 40px 0 90px;
    background:
        radial-gradient(600px 300px at 20% 15%, rgba(11, 94, 215, .10), transparent 60%),
        radial-gradient(600px 300px at 80% 20%, rgba(255, 90, 60, .08), transparent 60%),
        linear-gradient(180deg, #F7FBFF 0%, #F3FBFA 100%);
    padding-top: 130px;
}

.auth2-container {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 16px;
}

.auth2-card {
    background: #fff;
    border-radius: 18px;
    padding: 34px 28px;
    border: 1px solid rgba(12, 44, 74, .10);
    box-shadow: 0 18px 55px rgba(10, 30, 60, .10);
}

.auth2-top {
    text-align: center;
    margin-bottom: 18px;
}

.auth2-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.auth2-logo img {
    height: 36px;
    width: auto;
}

.auth2-top h2 {
    margin: 6px 0 6px;
    font-size: 26px !important;
    color: #0b2440;
}

.auth2-top p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.auth2-alert {
    border-radius: 12px;
    padding: 12px 14px;
    margin: 0 0 14px;
    font-size: 14px !important;
    border: 1px solid transparent;
}

.auth2-alert ul {
    margin: 0;
    padding-left: 18px;
}

.auth2-alert.success {
    background: rgba(22, 163, 74, .08);
    border-color: rgba(22, 163, 74, .22);
    color: #0f5132;
}

.auth2-alert.danger {
    background: rgba(220, 38, 38, .08);
    border-color: rgba(220, 38, 38, .22);
    color: #842029;
}

.auth2-form {
    margin-top: 10px;
}

.auth2-field {
    margin-bottom: 14px;
}

.auth2-field label {
    display: block;
    font-size: 13px !important;
    font-weight: 700;
    color: #0b2440;
    margin-bottom: 6px;
}

.auth2-field input {
    width: 100%;
    border-radius: 12px;
    padding: 12px 12px;
    border: 1px solid rgba(12, 44, 74, .14);
    outline: none;
    font-size: 14px !important;
    transition: .2s ease;
    background: #fff;
}

.auth2-field input:focus {
    border-color: rgba(11, 94, 215, .45);
    box-shadow: 0 0 0 4px rgba(11, 94, 215, .12);
}

.auth2-pass {
    position: relative;
}

.auth2-pass input {
    padding-right: 64px;
}

.auth2-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(12, 44, 74, .06);
    color: #0b2440;
    font-weight: 700;
    font-size: 12px !important;
    padding: 7px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.auth2-eye:hover {
    background: rgba(12, 44, 74, .10);
}

.auth2-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 16px;
    font-size: 14px !important;
}

.auth2-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #475569;
    cursor: pointer;
}

.auth2-check input {
    width: 16px;
    height: 16px;
}

.auth2-link {
    color: #0b5ed7;
    text-decoration: none;
    font-weight: 700;
}

.auth2-link:hover {
    text-decoration: underline;
}

.auth2-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    letter-spacing: .2px;
    color: #fff;
    background: linear-gradient(135deg, #0b5ed7 0%, #084298 100%);
    box-shadow: 0 14px 30px rgba(11, 94, 215, .22);
    transition: transform .15s ease, box-shadow .15s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.auth2-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(11, 94, 215, .26);
}

.auth2-btn.ghost {
    background: #fff;
    color: #0b2440;
    border: 1px solid rgba(12, 44, 74, .14);
    box-shadow: none;
}

.auth2-btn.ghost:hover {
    background: rgba(12, 44, 74, .03);
    transform: none;
}

.auth2-divider {
    position: relative;
    text-align: center;
    margin: 14px 0;
    color: #64748b;
    font-size: 13px !important;
}

.auth2-divider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(12, 44, 74, .10);
    transform: translateY(-50%);
}

.auth2-divider span {
    position: relative;
    background: #fff;
    padding: 0 10px;
}

.auth2-help {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
}

.auth2-help.ok {
    color: #16a34a;
}

.auth2-help.bad {
    color: #dc2626;
}

/* Default: normal header */
.site-logo img.logo-sticky {
    display: none;
}

.site-logo img.logo-normal {
    display: block;
}

/* Sticky header */
.header-area.is-sticky .site-logo img.logo-normal {
    display: none;
}

.header-area.is-sticky .site-logo img.logo-sticky {
    display: block;
}