@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {
    --Rubik-font: 'Rubik', sans-serif;
    --font-awesome: 'Font Awesome 6 free';
    --bootstrap-icon: 'bootstrap-icons';

    --transition-05s: all ease-in-out 0.5s;
    --transition-08s: all ease-in-out 0.8s;

    --main-color: 255, 81, 0;
    --second-color: 255, 81, 0;
    --third-color: 255, 81, 0;
    --fourth-color: 30, 0, 137;
    --back-color: 0, 0, 0, 0.031;
    --para-color: 107, 107, 107;
    --nav-color: 51, 51, 51;
    --white-color: 255, 255, 255;
    --black-color: 0, 0, 0;
    --dark-blue-color: 0, 13, 26;
}

ol,
ul,
dl {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

a {
    display: inline-block;
    outline: none;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

img,
.img-fluid {
    user-select: none;
    pointer-events: none;
    --ehw-EHWC: 100%;
}

.img-fluid {
    width: var(--ehw-EHWC) !important;
    height: var(--ehw-EHWC);
    object-fit: cover;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--Rubik-font);
    margin: 0px !important;
    overflow-x: hidden;
}

:where(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    font-family: var(--Rubik-font);
}

figure {
    margin: 0rem;
}

/* .head-pt {
	padding-top: 170px;
} */
.common-section {
    --eptb-cptb: 70px;
    padding: var(--eptb-cptb) 0px;
    position: relative;
    overflow: hidden;
}

.common-section > *,
.banner-inner-section > *,
.footer-section > * {
    /* position: relative; */
    z-index: 1;
}

/* All type btn start */

.common-bgBtn,
.common-bgBtn:visited,
.common-bgBtn:focus,
.common-btn,
.common-btn:visited,
.common-btn:focus {
    --common-btn-transition: var(--transition-08s);
    transition: var(--common-btn-transition);
    border: 2px solid var(--boco-btn);
    background: var(--bg-btn);
    color: var(--common-btn-color);
    text-transform: capitalize;
    position: relative;
    border-radius: 0px;
    font-weight: 700;
    line-height: 1.1;
    overflow: hidden;
    padding: 14px 30px;
    font-size: 16px;
    white-space: nowrap;
}
.common-bgBtn > * {
    position: relative;
    z-index: 2;
}
.common-bgBtn,
.common-bgBtn:visited,
.common-bgBtn:focus {
    --boco-btn: rgba(var(--second-color), 1);
    --bg-btn: rgba(var(--main-color), 0);
    --common-btn-color: rgba(var(--second-color), 1);
}
button.common-bgBtn:focus:not(:focus-visible),
.common-bgBtn:focus-visible,
.common-bgBtn:hover,
.common-bgBtn:first-child:active,
.common-bgBtn:active,
:not(.btn-check) + .common-bgBtn:active,
.common-bgBtn:first-child:hover,
button.common-btn:focus:not(:focus-visible),
.common-btn:focus-visible,
.common-btn:hover,
.common-btn:first-child:active,
.common-btn:active,
:not(.btn-check) + .common-btn:active,
.common-btn:first-child:hover {
    background: var(--bg-btn);
    border-color: var(--boco-btn);
    color: var(--common-btn-color);
}
button.common-bgBtn:focus:not(:focus-visible),
.common-bgBtn:focus-visible,
.common-bgBtn:hover,
.common-bgBtn:first-child:active,
.common-bgBtn:active,
:not(.btn-check) + .common-bgBtn:active,
.common-bgBtn:first-child:hover {
    --boco-btn: rgba(var(--second-color), 1);
    --bg-btn: rgba(var(--main-color), 0);
    --common-btn-color: rgba(var(--white-color), 1);
}
.common-btn,
.common-btn:visited,
.common-btn:focus {
    --boco-btn: rgba(var(--second-color), 0);
    --bg-btn: rgba(var(--main-color), 0);
    --common-btn-color: rgba(var(--main-color), 1);
    padding: 4px 4px;
    border: none;
}
button.common-btn:focus:not(:focus-visible),
.common-btn:focus-visible,
.common-btn:hover,
.common-btn:first-child:active,
.common-btn:active,
:not(.btn-check) + .common-btn:active,
.common-btn:first-child:hover {
    --boco-btn: rgba(var(--second-color), 0);
    --bg-btn: rgba(var(--main-color), 0);
    --common-btn-color: rgba(var(--second-color), 1);
    border: none;
}
.common-bgBtn::before {
    content: '';
    position: absolute;
    display: inline-block;
    transition: var(--common-btn-transition);
    background: var(--boco-btn);
    bottom: -40%;
    left: 0px;
    width: 100%;
    height: 0%;
    border-radius: 50% 50% 0% 0%;
    z-index: -1;
}
.common-bgBtn:hover::before,
.common-bgBtn:first-child:active::before,
.common-bgBtn:active::before,
:not(.btn-check) + .common-bgBtn:active::before,
.common-bgBtn:first-child:hover::before {
    height: calc(100% + 100%);
    width: calc(100% + 50%);
    left: -20%;
}
.common-bgBtn::after {
    /* content: '\f061'; */
    position: relative;
    transition: var(--common-btn-transition);
    color: var(--common-btn-color);
    font-family: var(--font-awesome);
    font-weight: 600;
    vertical-align: middle;
    display: inline-block;
    left: 3px;
    bottom: 0px;
    transform: rotate(-45deg);
    margin-left: 5px;
}
.common-bgBtn:hover::after,
.common-bgBtn:first-child:active::after,
.common-bgBtn:active::after,
:not(.btn-check) + .common-bgBtn:active::after,
.common-bgBtn:first-child:hover::after {
    transform: rotate(0deg);
}
.linkbtn,
.linkbtn:focus,
.linkbtn:hover,
.linkbtn:visited {
    color: rgba(var(--black-color), 1);
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 6px;
    background-color: rgba(var(--third-color), 1);
    width: max-content;
}
/* All type btn end */

/* media start */

.MainHeader .navbar.DesktopNav > * {
    display: block;
}

@media (max-width: 1199px) {
    .common-bgBtn,
    .common-bgBtn:visited,
    .common-bgBtn:focus,
    .common-btn,
    .common-btn:visited,
    .common-btn:focus,
    .common-btn2,
    .common-btn2:visited,
    .common-btn2:focus {
        padding: 14px 24px;
        font-size: 16px;
    }
    .common-section {
        padding: 50px 0px !important;
    }
}

@media (max-width: 767px) {
    .common-section {
        padding: 40px 0px !important;
    }

    .common-bgBtn,
    .common-bgBtn:visited,
    .common-bgBtn:focus,
    .common-btn,
    .common-btn:visited,
    .common-btn:focus,
    .common-btn2,
    .common-btn2:visited,
    .common-btn2:focus {
        padding: 13px 22px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .common-section {
        padding: 30px 0px !important;
    }

    .common-bgBtn,
    .common-bgBtn:visited,
    .common-bgBtn:focus,
    .common-btn,
    .common-btn:visited,
    .common-btn:focus,
    .common-btn2,
    .common-btn2:visited,
    .common-btn2:focus {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* media end */

/* === Scrollbar style start === */
.common-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.common-scrollbar::-webkit-scrollbar-track {
    background-color: #ecdef3;
    border-radius: 10px;
}

.common-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(var(--main-color), 1);
    border-radius: 10px;
}

.common-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(var(--main-color), 0.7);
}

/* === Scroll-bar Style end === */

/* date picker custome design */
/* Change flatpickr popup style */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-size: 12px !important; /* all text inside */
    font-weight: 600 !important;
    color: #000 !important;
}

.flatpickr-day {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #000 !important;
}

/* Hover effect */
.flatpickr-day:hover {
    background: #ffea00 !important; /* yellow */
    color: #000 !important;
    border-color: #ffea00 !important;
}

/* Selected date */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange {
    background: #ffea00 !important; /* yellow */
    color: #000 !important;
    border-color: #ffea00 !important;
}

/* Today indicator if you want same style */
.flatpickr-day.today {
    border-color: #ffea00 !important;
}

.flatpickr-months,
.flatpickr-current-month,
.flatpickr-weekday {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #000 !important;
}

.section-header {
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
}
.sub-title {
    font-size: 16px;
    color: #4e5561;
    line-height: 1.5;
}
.common-section {
    padding: 50px 0px;
}

.text-primarysec {
    color: rgba(var(--main-color), 1) !important;
    opacity: 1;
    text-decoration: underline;
}

/* <<<<<< ************* OFFER SECTION CSS START **************** >>>>>> */

.card-banner-slide {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
}
.card-banner-slide .card-image {
    position: relative;
    min-height: 232px;
    overflow: hidden;
    border-radius: 16px;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url(../images/bg-slider.png); */
    width: 100%;
    background-size: cover;
}
.card-banner-slide.offercard2 .card-image {
    /* background-image: url(../images/offer2.jpg); */
    opacity: 0.5;
}
.card-banner-slide.offercard2 .box-button,
.card-banner-slide.offercard3 .box-button {
    justify-content: start;
}
.card-banner-slide.offercard2 {
    border: 1px solid #cecece;
    border-radius: 18px;
    overflow: hidden;
}
.card-banner-slide.offercard2 .card-info,
.card-banner-slide.offercard3 .card-info {
    position: absolute;
    left: 35px;
    right: auto;
    bottom: 30px;
    z-index: 12;
    text-align: left;
}
.card-banner-slide.offercard2 .card-info h6,
.card-banner-slide.offercard3 .card-info h6 {
    text-align: left;
    color: rgba(var(--main-color), 1);
}
.card-banner-slide.offercard3 .card-image {
    /* background-image: url(../images/bg-slider2.png); */
}
.card-banner-slide .card-info {
    position: absolute;
    right: 35px;
    bottom: 30px;
    z-index: 12;
    text-align: right;
}
.card-banner-slide .card-info h6 {
    display: inline-block;
    text-align: left;
    margin-bottom: 35px;
    color: rgba(var(--white-color), 1);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-align: end;
}
.offerbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: var(--transition-05s);
}
.offerbtn:hover,
.offerbtn:focus {
    border: 1px solid rgba(var(--main-color), 1);
    transition: var(--transition-05s);
    background-color: transparent;
    color: rgba(var(--main-color), 1);
}
.box-button {
    display: flex;
    align-items: center;
    justify-content: end;
}
/* <<<<<< ************* OFFER SECTION CSS END **************** >>>>>> */

/* <<<<<< ************* cta update-section CSS START **************** >>>>>> */

.update-sec {
    border-radius: 10px;
    padding: 50px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.update-sec .section-header {
    margin-bottom: 20px;
}
.update-sec .update-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.update-section {
    padding-bottom: 0;
}
.linkbtn,
.linkbtn:hover {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
}

.update-sec::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0px 0 0 0;
    transform-origin: left;
    transform: skewY(1.5deg);
    background: #feedeb;
    border-radius: 20px;
}
.bottoncopyox {
    padding: 0px 0px;
    border-top: 1px solid #dddddd40;
    background-color: #000;
}

/* <<<<<< ************* cta update-section CSS End **************** >>>>>> */

/* <<<<<< ************* INNERBANNER SECTION CSS STRAT **************** >>>>>> */

.innerbanner-section {
    min-height: 30vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 100px; */
    padding: 150px 0px 50px 0px;
}

.innerbannerbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.innerbannerbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.innerbanner-section::before {
    content: '';
    background: linear-gradient(180deg, rgb(255 255 255) 1%, rgb(0 0 0 / 61%) 61%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.innerbanner-section .container {
    position: relative;
    z-index: 2;
}
.inner-bannerbox {
    text-align: center;
    /* width: max-content; */
    margin: 0 auto;
}
.innercommon-heading {
    color: rgba(var(--white-color), 1);
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    position: relative;
    /* width: max-content; */
}

.innercommon-heading::before {
    content: attr(data-text);
    position: absolute;
    top: -30px;
    left: 0;
    color: rgba(var(--white-color), 1);
    overflow: hidden;
    width: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-color: rgba(var(--white-color), 1);
    -webkit-text-stroke-width: 1px;
    font-size: 88px;
    z-index: -1;
    opacity: 0.5;
    display: none;
}

/* <<<<<< ************* INNERBANNER SECTION CSS END **************** >>>>>> */

/* <<<<<< ************* testimonial slider section CSS START **************** >>>>>> */

/* Unique class for the whole section */
.custom-testimonial-wrapper {
    background: #f6f9fc;
    padding: 60px 0px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.custom-testimonial-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-testimonial-heading span {
    color: rgba(var(--main-color), 1);
    text-decoration: underline;
}

.custom-subheading {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}
.custom-testimonial-carousel .testimonial-box {
    background: rgba(var(--white-color), 1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.custom-testimonial-carousel .testimonial-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-testimonial-carousel .testimonial-box p {
    font-size: 14px;
    color: #444;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-footer img {
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
}

.testimonial-footer strong {
    font-size: 14px;
}

.testimonial-footer small {
    font-size: 13px;
    color: #555;
}

.rating-badge {
    background-color: rgba(var(--third-color), 1);
    color: #000;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
    margin-left: auto;
}

.custom-testimonial-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
    display: flex !important
;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.custom-testimonial-carousel .owl-nav button {
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 8px 12px !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    line-height: normal !important;
    justify-content: center;
}

.custom-testimonial-carousel .owl-nav button:hover {
    background: rgba(var(--main-color), 1) !important;
    color: #fff !important;
    border-color: rgba(var(--main-color), 1) !important;
}

/* <<<<<< *************testimonial slider section CSS end **************** >>>>>> */

/* <<<<<< *************login modal CSS start **************** >>>>>> */

.dreams-modal-dialog {
    max-width: 450px;
    margin: 1.75rem auto;
}

.dreams-modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.dreams-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: none;
    text-align: center;
    position: relative;
    justify-content: center;
}

.dreams-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dreams-close-button:hover {
    color: #374151;
}

.dreams-modal-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.dreams-modal-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.dreams-modal-body {
    padding: 1rem 2rem 2rem;
}

.dreams-form-group {
    margin-bottom: 14px;
}

.dreams-form-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.dreams-form-input {
    width: 100%;
    padding: 9px 14px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: #f9fafb;
}

.dreams-form-input:focus {
    outline: none;
    border-color: rgba(var(--second-color), 1);
    box-shadow: 0 0 0 3px rgba(59, 131, 246, 0);
    background-color: #ffffff;
}

.dreams-form-input::placeholder {
    color: #9ca3af;
}

.dreams-input-icon {
    position: relative;
}

.dreams-input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1rem;
}

.dreams-input-icon .dreams-form-input {
    padding-left: 48px;
}

.dreams-password-toggle {
    position: absolute;
    right: 16px !important;
    top: 50%;
    left: auto !important;
    transform: translateY(-50%);
    color: #6b7280;
    cursor: pointer;
    font-size: 1rem;
}

.dreams-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.dreams-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dreams-checkbox {
    width: 18px;
    height: 18px;
}

.dreams-checkbox-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.dreams-forgot-link {
    color: rgba(var(--main-color), 1) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.dreams-forgot-link:hover {
    color: #dc2626;
}

.dreams-login-button {
    width: 100%;
    background: rgba(var(--second-color), 1);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dreams-login-button:hover {
    background: #dc2626;
}

.dreams-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: #6b7280;
    font-size: 0.9rem;
}

.dreams-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.dreams-divider span {
    background: white;
    padding: 0 1rem;
}

.dreams-social-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.dreams-social-button {
    flex: 1;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f8fafc;
    color: #374151;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dreams-social-button:hover {
    background: #e2e8f0;
    color: #1f2937;
    text-decoration: none;
    transform: translateY(-1px);
}

.dreams-social-button i {
    font-size: 1.1rem;
}

.dreams-signup-link {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dreams-signup-link a {
    color: rgba(var(--second-color), 1);
    text-decoration: none;
    font-weight: 500;
}

.dreams-signup-link a:hover {
    color: rgba(var(--second-color), 0.8);
}

.btn-trigger {
    margin: 20px;
    padding: 12px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.modaltopsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
/* <<<<<< *************login modalCSS end **************** >>>>>> */
.traveler-section .form-check-input:focus {
    box-shadow: none;
    outline: none;
}
.backcolor-section {
    background-color: rgba(var(--back-color));
}

.common-para ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: rgba(var(--fourth-color), 1);
    position: absolute;
    left: 5px;
    top: 7px;
    outline: 5px solid rgba(var(--fourth-color), 0.2);
    border-radius: 50%;
}

.common-para ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    margin-right: 15px;
    font-size: 14px;
    color: rgba(var(--black-color), 1);
}
.common-para ul li span {
    color: rgba(var(--fourth-color), 1);
    font-weight: 700;
}

::selection {
    background: #e8040f; /* orange */
    color: #fff; /* black text */
}

::-moz-selection {
    background: #e8040f;
    color: #fff;
}

/* Width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 10px;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
    background: rgba(var(--third-color), 1); /* blue */
    border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--main-color), 1); /* darker blue */
}

/* Scrollbar colors */
html {
    scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: rgba(var(--third-color), 1) #000000; /* thumb | track */
}

canvas#particle-canvas {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .update-sec {
        padding: 30px 0;
    }
    .update-sec .section-header h2 {
        font-size: 20px;
    }
    .update-sec .sub-title {
        font-size: 14px;
        margin: 10px auto;
        max-width: 380px;
    }
}
@media (max-width: 580px) {
    section.common-section.offer-section {
        padding-bottom: 0;
    }
}
@media (max-width: 320px) {
    .update-sec .section-header h2 {
        font-size: 14px;
    }
    .update-sec .sub-title {
        font-size: 11px;
        max-width: 260px;
    }
}

@media (max-width: 1366px) {
    .innercommon-heading {
        font-size: 40px;
    }
    .innercommon-heading::before {
        font-size: 75px;
    }
}
@media (max-width: 1199px) {
    .section-header h2 {
        font-size: 30px;
    }
}
@media (max-width: 1024px) {
    .card-banner-slide .card-image {
        min-height: 170px;
    }
    .card-banner-slide .card-info h6 {
        font-size: 18px;
        line-height: 23px;
    }
}
@media (max-width: 991px) {
    .innerbanner-section {
        min-height: 25vh;
    }
    .innercommon-heading::before {
        font-size: 55px;
        top: -22px;
    }
    .info-card,
    .card-banner-slide {
        margin-bottom: 20px;
    }
    html {
        scrollbar-width: none; /* auto | thin | none */
        scrollbar-color: rgba(var(--third-color), 1) #000000; /* thumb | track */
    }
}
@media (max-width: 767px) {
    .section-header h2 {
        font-size: 26px;
    }
    .innercommon-heading {
        font-size: 30px;
    }
    .sub-title {
        font-size: 14px;
    }
    .innercommon-heading::before {
        display: none;
    }
}
@media (max-width: 580px) {
    .section-header h2 {
        font-size: 19px;
    }
    .innercommon-heading {
        font-size: 20px;
    }
    .innerbanner-section {
        min-height: 24vh;
        padding-top: 60px;
    }
}

.mobtravel-list-diveder {
    display: none;
}

@media (max-width: 991px) {
    .mobsearchbtn {
        order: 1;
    }
    .mobtravel-list-diveder {
        display: block;
    }
    .mob-diverder {
        font-size: 11px;
        font-weight: 500;
        color: rgba(var(--fourth-color), 1);
    }
}
