:root {
    --primary-color: #092C56;
    --secondary-color: #f4b41a;
    --accent-color: #d1e8ff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky navbar */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.5) !important;
    padding: 0.3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-logo {
    height: 52px;
    width: auto;
}

.brand-text {
    gap: 5px;
    min-width: 0;
}

.brand-title {
    font-family: 'Niconne', 'Apple Chancery', 'Snell Roundhand', 'Segoe Script', 'Brush Script MT', cursive;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.25;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.brand-subtitle {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.8px;
    line-height: 1.2;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
    .navbar-logo { height: 36px; }
    .brand-title  { font-size: 1.05rem; }
    .brand-subtitle { font-size: 0.6rem; }
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin: 0 0.6rem;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Slider */
.hero-slider-section {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Video Hero */
.hero-video-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Travel Services */
.services-section {
    padding: 80px 0;
}

.service-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-icon {
    min-width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.service-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    flex: 1;
    min-height: 300px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats Section */
.stats-section {
    background-color: #0f1f2d;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay per image */
    z-index: 1;
}

.stats-heading {
    font-size: 4rem;
    font-weight: 300; /* Light for first two lines */
    line-height: 1.1;
    margin-bottom: 0;
}

.stats-heading span {
    font-weight: 800; /* Extra bold for specific name */
}

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Tour Categories */
.cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    margin: 6px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: none;
}

/* Custom Swiper Buttons with White Fade Background */
.custom-swiper-btn {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50% !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 40px rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

.custom-swiper-btn::after {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
}

.custom-swiper-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1) !important;
}

.swiper-button-prev.custom-swiper-btn {
    left: -30px !important;
}

.swiper-button-next.custom-swiper-btn {
    right: -30px !important;
}

/* Success Specific Buttons - Out of Box */
.success-btn-prev {
    left: -80px !important;
}

.success-btn-next {
    right: -80px !important;
}

.success-slide-row {
    margin-bottom: 2rem !important; /* Reduced from default mb-5 (3rem) */
}

@media (max-width: 1400px) {
    .success-btn-prev { left: -40px !important; }
    .success-btn-next { right: -40px !important; }
}

@media (max-width: 1024px) {
    .custom-swiper-btn {
        display: none !important;
    }
}

.categories-swiper {
    margin-bottom: 60px !important;
}

.categories-pagination {
    bottom: -40px !important;
}

.categories-pagination .swiper-pagination-bullet {
    background: var(--primary-color) !important;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
}

.categories-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 50px 20px 22px;
    color: var(--white);
    text-align: center;
}

.cat-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.btn-explore {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 6px;
    transition: var(--transition);
}

.btn-explore:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Tour Packages */
.packages-section {
    background: #ffffff;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.pkg-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
    z-index: 0;
}


.packages-section .section-heading,
.packages-section .d-lg-none.section-heading {
    color: #ffffff;
}

.packages-section .pkg-grid-header .section-heading {
    color: #ffffff;
}

.packages-section .pkg-grid-header p {
    color: rgba(255, 255, 255, 0.82) !important;
}

.pkg-explore-btn {
    color: #ffffff;
}

.pkg-explore-plus {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.pkg-explore-btn:hover {
    color: #ffffff;
}

.pkg-explore-btn:hover .pkg-explore-plus {
    background: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border-color: #ffffff;
}

.pkg-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
    z-index: 1;
}

.packages-section .container {
    position: relative;
    z-index: 2;
}

/* ── CSS Grid layout ───────────────────────────────────── */
.pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        "featured header  header"
        "featured card2   card3"
        "card4    card5   card6";
    gap: 18px;
}

.pkg-grid-featured { grid-area: featured; min-height: 560px; }
.pkg-grid-header   { grid-area: header;   min-height: 200px; }
.pkg-card2         { grid-area: card2; }
.pkg-card3         { grid-area: card3; }
.pkg-card4         { grid-area: card4; }
.pkg-card5         { grid-area: card5; }
.pkg-card6         { grid-area: card6; }

.pkg-grid-item     { min-height: 240px; }

/* ── Overlay card (shared by all cards) ────────────────── */
.pkg-overlay-card {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
}

.pkg-overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.pkg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
    pointer-events: none;
}

/* ── Featured badge ────────────────────────────────────── */
.pkg-featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #c0392b;
    color: #fff;
    padding: 14px 18px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    border-bottom-right-radius: 12px;
    z-index: 2;
}

/* ── Card text info at bottom ──────────────────────────── */
.pkg-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 20px;
    z-index: 2;
    color: #fff;
}

.pkg-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.82;
    margin-bottom: 5px;
}

.pkg-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}

.pkg-grid-featured .pkg-title {
    font-size: 1.3rem;
}

/* ── Explore button ────────────────────────────────────── */
.pkg-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pkg-explore-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}

.pkg-explore-btn:hover {
    color: #ffffff;
}

.pkg-explore-btn:hover .pkg-explore-plus {
    background: rgba(255, 255, 255, 0.35);
    border-color: #ffffff;
    color: #ffffff;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
    .pkg-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: none;
        gap: 14px;
    }
    .pkg-grid-featured,
    .pkg-grid-header,
    .pkg-grid-item {
        grid-area: auto;
    }
    .pkg-grid-featured {
        grid-column: 1 / -1;
        min-height: 300px;
    }
    .pkg-grid-header { display: none; }
    .pkg-grid-item   { min-height: 200px; }
    .pkg-card2,.pkg-card3,.pkg-card4,.pkg-card5,.pkg-card6 { grid-area: auto; }
}

@media (max-width: 575px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }
    .pkg-grid-featured {
        grid-column: 1;
        min-height: 260px;
    }
    .pkg-grid-item { min-height: 180px; }
}

/* Success Story */
.success-section {
    background-color: #0f1f2d;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Standardized lighter overlay */
    z-index: 1;
}

.success-swiper {
    margin-bottom: 60px !important;
}

.success-pagination {
    bottom: -40px !important;
}

.success-pagination .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.success-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff !important;
}

.story-img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.story-info {
    text-align: center;
}

.story-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.story-country {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0;
}

.story-country i {
    font-style: italic;
    margin-left: 8px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
    background: transparent;
}

.accordion-button {
    font-weight: 700;
    font-size: 1.15rem;
    padding: 20px 0;
    color: var(--primary-color);
    background: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 0 0 20px;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Footer */
.footer {
    background: url('../images/landing/footerbg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Standardized lighter overlay */
    z-index: 1;
}

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

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar {
        background: rgba(0, 0, 0, 0.6) !important;
        padding: 0.4rem 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.8);
        margin-top: 0.4rem;
        border-radius: 10px;
        padding: 1rem;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    .nav-link {
        margin: 0.5rem 0 !important;
        text-align: center;
    }
    .hero-section {
        height: 60vh;
    }
    .stat-item h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 50px 0;
    }
    .service-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    .service-icon {
        margin-right: 1.2rem;
        margin-bottom: 0;
    }
    .story-img {
        width: 100% !important;
        height: 120px !important;
        object-fit: cover !important;
        border-radius: 10px !important;
        margin-bottom: 10px !important;
    }
    .success-section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 767px) {
    .stats-heading {
        font-size: 2.2rem !important;
    }
    .stat-item h2 {
        font-size: 2.5rem !important;
    }
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
}

/* Floating Contact Icons */
.fixed-floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-icon-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important; /* Force zero padding */
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
}

.floating-icon-item:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.inquiry-floating-btn {
    background: #04162b !important;
}

.inquiry-floating-btn img {
    width: 50% !important;
    height: 50% !important;
    object-fit: contain;
}

.whatsapp-floating-btn {
    background: transparent !important;
    box-shadow: none !important;
}

.whatsapp-floating-btn img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

@media (max-width: 767px) {
    .fixed-floating-icons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-icon-item {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Custom Modal Input Styles */
.custom-input {
    background-color: #ffffff !important;
    border: 1px solid #e1e8ef !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    border-color: #04162b !important;
    box-shadow: 0 0 0 0.2rem rgba(4, 22, 43, 0.05) !important;
    outline: none !important;
}
.custom-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: none !important;
}
.custom-input.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.08) !important;
}
.inquiry-invalid-text {
    color: #dc3545;
    font-size: 0.82rem;
    margin-top: 6px;
    display: block;
}

#siteToastStack {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.site-toast {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 14px;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
    overflow: hidden;
    pointer-events: all;
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform .38s cubic-bezier(.34,1.36,.64,1), opacity .3s ease;
}
.site-toast.toast-show {
    transform: translateX(0);
    opacity: 1;
}
.site-toast.toast-hide {
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform .28s ease-in, opacity .25s ease-in;
}
.site-toast-accent {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #22c55e, #16a34a);
}
.site-toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    margin: auto 0;
    background: #dcfce7;
    color: #16a34a;
}
.site-toast-body {
    flex: 1;
    padding: 14px 12px 12px 14px;
    min-width: 0;
}
.site-toast-title {
    font-size: .88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 2px;
}
.site-toast-msg {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.45;
}
.site-toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: .78rem;
    padding: 10px 12px 0 0;
    align-self: flex-start;
    line-height: 1;
    flex-shrink: 0;
}

select.custom-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}
