@charset "utf-8";
/* CSS Document */
/* Author : Binod Raj Dhami */

:root {
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #1C1B1F;
    --theme-blue-color: #003580;
    --theme-red-color: #ce0d0d;
    --theme-yellow-color: #f5991e;
    --theme-grey-color: #666666;
    --theme-grey-light-color: #83827F;
    --theme-light-color: #E0E4E8;
    --theme-background-color: #F1F1F1;
    --theme-font-PlusJakartaSans: "Plus Jakarta Sans", sans-serif;
    --theme-font-Poppins: "Poppins", sans-serif;
    --transition: all ease-in-out 0.3s;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================================================== Reset specific tags further */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
li,
figure,
blockquote,
span,
a {
    margin: 0;
    padding: 0;
    line-height: inherit;
    font-family: var(--theme-font-Poppins);
}

a {
    display: inline-block;
    text-decoration: none;
    line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--theme-font-PlusJakartaSans);
}

/* ================================================== Apply the font globally */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-Poppins);
    background: var(--theme-primary-color);
}


/* ================================================== Go To Top Section */
#back-top {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 15px;
    text-align: center;
    z-index: 9;
}

#back-top a {
    display: block;
    text-decoration: none;
}

#back-top a .fa {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
    opacity: 1;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
}

#back-top a .fa:hover {
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

/* ================================================== Notification Section */
.notification {
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    padding: 10px 0;
    overflow: hidden;
}

.scroll-text {
    white-space: nowrap;
    display: inline-block;
    animation: scroll-left 15s linear infinite;
    font-size: 16px;
    font-weight: 500;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* ================================================== Header Section */
.site-header-top {
    padding: 10px 0;
    background: var(--theme-blue-color);
}

.site-header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header-top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.site-header-top-contact span {
    font-size: 14px;
    color: var(--theme-primary-color);
}

.site-header-top-contact .fa-brands,
.site-header-top-contact .fa-solid {
    font-size: 14px;
    margin-right: 5px;
}

.site-header-top-contact a {
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

.site-header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

#menu-header-top-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

#menu-header-top-menu ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

#menu-header-top-menu .menu-item a {
    position: relative;
    padding: 0 15px;
    font-size: 14px;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

#menu-header-top-menu .menu-item a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 15px;
    transform: translateY(-50%);
    background: var(--theme-primary-color);
}

#menu-header-top-menu .menu-item a:hover {
    color: var(--theme-red-color);
}

.site-header-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.site-header-top-social li a .fa-brands {
    font-size: 14px;
    color: var(--theme-primary-color);
}


/* Header Bottom */
.site-header-bottom {
    padding: 0;
    background: var(--theme-primary-color);
}

.site-header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-header-logo img {
    width: 250px;
    height: auto;
}

/* ========== Header Menu ==========*/
.site-header-navigation {
    padding-left: 50px;
    margin-right: auto;
}

.header-menu-list {
    display: flex;
}

.header-menu-list-item {
    position: relative;
    list-style: none;
}

.header-menu-list-item>a {
    padding: 35px 15px;
    font-size: 16px;
    color: var(--theme-secondary-color);
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.header-menu-list-item>a .fa-solid {
    font-size: 12px;
}

/* Dropdown Menu */
.dropdown-submenu-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    height: auto;
    background: var(--theme-blue-color);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.header-menu-list-item:hover .dropdown-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-submenu-list-item {
    position: relative;
    list-style: none;
}

.dropdown-submenu-list-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 15px;
    color: var(--theme-blue-dark-color);
    transition: var(--transition);
    border-top: rgba(000, 000, 000, 0.1) solid 1px;
    background: var(--theme-primary-color);
}

.dropdown-submenu-list-item>a .fa-solid {
    font-size: 12px;
}


.dropdown-submenu-list-item:hover>a {
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

/* Floating Menu */
.floating-submenu-list {
    position: absolute;
    top: 0;
    left: 100%;
    width: 250px;
    height: auto;
    background: var(--theme-blue-color);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: var(--transition);
}

.dropdown-submenu-list-item:hover .floating-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-submenu-list-item {
    position: relative;
    list-style: none;
}

.floating-submenu-list-item a {
    display: block;
    padding: 15px 20px;
    font-size: 15px;
    color: var(--theme-blue-dark-color);
    background: var(--theme-primary-color);
    transition: var(--transition);
    border-top: rgba(255, 255, 225, 0.1) solid 1px;
    border-left: rgba(255, 255, 225, 0.1) solid 1px;
}

.floating-submenu-list-item a:hover {
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

/* ========== Header Auth ==========*/
.site-header-auth {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.site-header-login-register {
    padding: 10px 15px;
    border-radius: 5px;
    background: var(--theme-red-color);
}

.site-header-login-register span {
    color: var(--theme-primary-color);
}

.site-header-login-register a {
    font-size: 14px;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.site-header-login-register a:hover {
    color: var(--theme-primary-color);
}


/* ================================================== Banner Section */
.banner {
    position: relative;
    padding: 100px 0;
    background: url('../images//page-banner-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 128, 0.85);
    z-index: -1;
}

/* Banner Forms */
.banner-form {
    margin: 0 auto;
    max-width: 1000px;
}

.banner-form-nav nav {
    display: inline-block;
}

.banner-form-nav nav>.nav-tabs>.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 0;
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}

.banner-form-nav nav>.nav-tabs>.nav-link.active {
    color: var(--theme-red-color);
}

.banner-form-nav nav>.nav-tabs>.nav-link:first-child {
    border-top-left-radius: 10px;
}

.banner-form-nav nav>.nav-tabs>.nav-link:last-child {
    border-top-right-radius: 10px;
}

.banner-form-nav nav>.nav-tabs>.nav-link .fa-solid {
    font-size: 12px;
}

.banner-form-nav nav>.nav-tabs>.nav-link span {
    font-size: 16px;
}

.banner-form-flight-nav .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.banner-form-flight-nav .nav-tabs .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    text-transform: uppercase;
}

.banner-form-flight-nav>.nav-tabs>.nav-link.active {
    color: var(--theme-primary-color);
    background: var(--theme-red-color);
}

.banner-form-content>.tab-content {
    padding: 30px;
    border-radius: 10px;
    border-top-left-radius: 0;
    background: var(--theme-primary-color);
    border-top: #eee solid 1px;
}

.banner-form-content>.tab-content .tab-pane .form {
    position: relative;
}

.banner-form-content>.tab-content .form-group-checkbox {
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    width: 270px;
    display: flex;
    gap: 5px;
}

.banner-form-content>.tab-content .form-group-checkbox .fare-item {
    width: 50%;
    height: 45px;
    padding: 5px;
    font-size: 14px;
    border-radius: 50px;
    color: var(--theme-grey-color);
    border: var(--theme-grey-color) solid 1px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
}

.banner-form-content>.tab-content .form-group-checkbox .fare-item input[type="checkbox"] {
    accent-color: var(--theme-primary-color);
}

.banner-form-content>.tab-content .form-group-checkbox .fare-item:has(input[type="checkbox"]:checked) {
    background: var(--theme-grey-color);
    color: #fff;
}

.banner-form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.banner-form .form-group label {
    font-size: 16px;
    line-height: 36px;
    color: var(--theme-secondary-color);
}

.banner-form .form-group .fa-solid {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 10px;
    color: var(--theme-grey-color);
}

.banner-form .form-group .form-control {
    margin-bottom: 0;
    height: 50px;
    padding-left: 30px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--theme-grey-light-color);
    border: #bbb solid 1px;
    text-align: left;
}

.banner-form .form-group .form-control::placeholder {
    color: #999
}

.banner-form .form-group .btn-form-search {
    position: relative;
    padding: 15px 20px 15px 30px;
    border-radius: 5px;
    border: none;
    background: var(--theme-red-color);
}

.banner-form .form-group .btn-form-search span {
    margin-left: 5px;
    color: var(--theme-primary-color);
    font-size: 14px;
    font-weight: 500;
}

.banner-form .form-group .btn-form-search .fa-solid {
    top: 18px;
    display: inline-block;
    font-size: 14px;
    color: var(--theme-primary-color);
}

.banner-form .form-group-add-trip {
    margin-bottom: 15px;
}

.banner-form .form-group .btn-add-trip {
    position: relative;
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    background: var(--theme-blue-color);
}

.banner-form .form-group .btn-add-trip span {
    margin-left: 5px;
    color: var(--theme-primary-color);
    font-size: 14px;
    font-weight: 500;
}

.banner-form .form-group .btn-add-trip .fa-solid {
    bottom: 19px;
    display: inline-block;
    font-size: 12px;
    color: var(--theme-primary-color);
}

.btn-remove-trip {
    position: relative;
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    background: var(--theme-red-color);
}

.btn-remove-trip span {
    margin-left: 5px;
    color: var(--theme-primary-color);
    font-size: 14px;
    font-weight: 500;
}

.banner-form .form-group .btn-remove-trip .fa-solid {
    bottom: 19px;
    display: inline-block;
    font-size: 12px;
    color: var(--theme-primary-color);
}

/* ================================================== User Contact Information Modal */
#UserContactInformationModal .modal-dialog .modal-content {
    background: var(--theme-primary-color);
    border-radius: 0;
    border: none;
}

#UserContactInformationModal .modal-dialog .modal-content .modal-header {
    background: var(--theme-blue-color);
    border-radius: 0;
    border: none;
}

#UserContactInformationModal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#UserContactInformationModal .modal-dialog .modal-content .modal-body {
    padding: 25px;
    padding-bottom: 10px;
}

#UserContactInformationModal .modal-dialog .modal-content .modal-body .form-group {
    position: relative;
}

#UserContactInformationModal .modal-dialog .modal-content .modal-body .form-group .fa-solid {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

#UserContactInformationModal .modal-dialog .modal-content .modal-body .form-group .form-control {
    height: 50px;
    padding-left: 65px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    border-radius: 0;
}

#UserContactInformationModal .modal-dialog .modal-content .modal-body p {
    margin-bottom: 15px;
}

#UserContactInformationModal .modal-dialog .modal-content .modal-footer .btn-primary {
    margin: 0 auto;
    padding: 15px 30px;
    background: var(--theme-red-color);
    border: none;
}

/* ================================================== Travellers Modal */
#TravellersModal .modal-dialog .modal-content {
    background: var(--theme-primary-color);
    border-radius: 0;
    border: none;
}

#TravellersModal .modal-dialog .modal-content .modal-header {
    background: var(--theme-red-color);
    border-radius: 0;
    border: none;
}

#TravellersModal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#TravellersModal .modal-dialog .modal-content .modal-body {
    padding: 25px;
    ;
}

#TravellersModal .select2-container .select2-selection--single {
    height: 50px;
}

#TravellersModal .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
}

#TravellersModal .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-grey-color);
}

#TravellersModal .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 10px;
}

#TravellersModal .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: var(--theme-red-color);
    color: var(--theme-primary-color);
    font-size: 24px;
    margin-right: 0;
    z-index: 9;
}

#TravellersModal .select2-container--default .select2-search--dropdown .select2-search__field {
    margin-bottom: 0;
    height: 40px;
    padding-left: 15px;
    font-size: 14px;
    border-radius: 0;
    color: var(--theme-grey-light-color);
    text-align: left;
    outline: none;
    box-shadow: none;
}

#TravellersModal .select2-container--open .select2-dropdown--below {
    font-family: var(--theme-font-Poppins);
    font-size: 16px;
}

#travellerBox .counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #eee;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-grey-color);
}

#travellerBox .counter-row .counter-btn {
    height: 40px;
    width: 40px;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    border: none;
    font-weight: 700;
}

#TravellersModal .traveller-notes {
    margin: 10px 0;
    padding: 10px;
    background-color: #d9edf7;
    border: #bce8f1 1px solid;
    color: #31708f;
    font-size: 14px;
}

#TravellersModal .cabin-class-type {
    margin-top: 10px;
}

#TravellersModal .cabin-class-type label {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

#TravellersModal .cabin-class-type input[type="radio"] {
    position: relative;
    top: 3px;
    transform: scale(1.2);
    margin-right: 4px;
    cursor: pointer;
    accent-color: var(--theme-red-color);
}

#TravellersModal .modal-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: none;
}

#TravellersModal .modal-footer .btn-primary {
    padding: 10px 20px;
    font-weight: 500;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    border: none;
    border-radius: 0;
}

#TravellersModal .modal-footer .btn-primary span {
    font-size: 16px;
}

#TravellersModal .modal-footer .btn-primary .fa-solid {
    font-size: 14px;
}

#statusModal .modal-dialog .modal-content .modal-header {
    justify-content: center;
    text-align: center;
    background: #27ae60;
    padding: 15px;
}

#statusModal .modal-dialog .modal-content .modal-header .modal-title {
    text-transform: uppercase;
    color: var(--theme-primary-color);
    font-weight: 700;
}

#statusModal .modal-dialog .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
    gap: 15px;
    padding: 30px;
}

#statusModal .modal-dialog .modal-content .modal-body .fa-solid {
    font-size: 150px;
    color: #27ae60;
}

#statusModal .modal-dialog .modal-content .modal-body p {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-Poppins);
}

#statusModal .modal-dialog .modal-content .modal-footer {
    justify-content: center;
}

#statusModal .modal-dialog .modal-content .modal-footer .btn-primary {
    width: 80px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    background: #27ae60;
    border-color: #27ae60;
}

/* ========================================================== Select2 */
.select2-container .select2-selection--single {
    height: 48px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 47px;
}


.select2-container--default .select2-search--dropdown .select2-search__field {
    margin-bottom: 0;
    height: 40px;
    padding-left: 15px;
    font-size: 14px;
    border-radius: 0;
    color: var(--theme-grey-light-color);
    text-align: left;
    outline: none;
    box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 100%;
    background: var(--theme-red-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    margin-right: 0;
    z-index: 9;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    box-shadow: none;
}

.select2-results__option {
    color: #666;
}

/* ================================================== Offers Section */
.offers {
    padding: 70px 0;
    background: var(--theme-primary-color);
}

.offers-card a {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.offers-card a img {
    width: 100%;
}

#offersSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#offersSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#offersSlider .owl-nav button.owl-prev:hover,
#offersSlider .owl-nav button.owl-next:hover {
    opacity: 1;
}


/* ================================================== Title Section */
.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-Poppins);
}

.section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-blue-color);
    font-family: var(--theme-font-Poppins);
}

.section-view-all-btn {
    display: flex;
    justify-content: center;
}

.section-view-all-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 15px 20px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
}

.section-view-all-btn a .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: var(--theme-primary-color) solid 2px;
    font-size: 9px;
    transition: var(--transition);
}

.section-view-all-btn a span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-Poppins);
}

.section-view-all-btn a:hover {
    background: var(--theme-blue-color);
}

/* ================================================== Destinaions Section */
.destinations {
    padding: 70px 0;
    background: #f6f6f6
}

.destinations-card {
    position: relative;
    transition: var(--transition);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.destinations-card:hover {
    transform: translateY(-5px);
}

.destinations-card-thumbnail {
    position: relative;
    overflow: hidden;
}

.destinations-card-thumbnail img {
    width: 100%;
    height: auto;
}

.destinations-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    flex-direction: column;
    z-index: 9;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.destinations-card-content h4 a {
    font-style: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.destinations-card-country {
    display: flex;
    align-items: center;
    gap: 10px;
}

.destinations-card-country .fa-solid {
    color: var(--theme-yellow-color);
    font-size: 16px;
}

.destinations-card-country span {
    color: var(--theme-yellow-color);
    font-size: 16px;
}

/* ================================================== Packages Section */
.packages {
    padding: 70px 0;
    background: var(--theme-primary-color);
}

.packages-card {
    margin-bottom: 30px;
    transition: var(--transition);
}

.packages-card:hover {
    transform: translateY(-5px);
}

.packages-card-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.packages-card-thumbnail img {
    width: 100%;
    height: auto;
}

.packages-card-content {
    position: relative;
    padding: 20px;
    transform: translateY(-10px);
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--theme-primary-color);
    transition: var(--transition);
}

.packages-card:hover .packages-card-content {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.packages-card-destination {
    font-size: 14px;
    font-weight: 300;
    color: var(--theme-grey-light-color);
}

.packages-card-title {
    margin: 5px 0 10px;
}

.packages-card-title a {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--theme-font-PlusJakartaSans);
    color: var(--theme-blue-dark-color);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    height: 30px;
}

.packages-card-title a:hover {
    color: var(--theme-yellow-color);
}

.packages-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.packages-card-rating .rating {
    font-size: 12px;
    color: var(--theme-yellow-color);
}

.packages-card-rating .text {
    font-size: 12px;
    color: var(--theme-grey-light-color);
}

.packages-card-duration {
    margin: 15px 0;
}

.packages-card-duration ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.packages-card-duration ul li .fa-regular {
    font-size: 14px;
    color: var(--theme-yellow-color);
    margin-right: 5px;
}

.packages-card-duration ul li span {
    font-size: 14px;
    color: var(--theme-grey-light-color);
}

.packages-card-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    border-top: var(--theme-light-color) solid 1px;
    padding-top: 15px;
    margin-top: 15px;
}

.packages-card-price strong {
    display: block;
    color: var(--theme-grey-color);
}

.packages-card-price span {
    font-size: 16px;
    color: var(--theme-grey-light-color);
}

.packages-card-price span:last-child {
    color: var(--theme-yellow-color);
}

.packages-card-view-details {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    transition: var(--transition);
}

.packages-card-view-details:hover {
    background: var(--theme-yellow-color);
}

/* ================================================== Why Chooose Us Section */
.whychooseus {
    padding: 70px 0;
    background: #f6f6f6
}

.whychooseus-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 50px 30px;
    background: var(--theme-primary-color);
    border-radius: 10px;
    box-shadow: 0 0 15px -10px rgba(0, 0, 0, 0.5);
}

.whychooseus-list-icon .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    font-size: 30px;
    border: 1px dashed rgba(0, 0, 0, 0.5);
    background: var(--theme-primary-color);
    color: var(--theme-yellow-color);
}

.whychooseus-list-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-yellow-color);
    margin-bottom: 10px;
}

.whychooseus-list-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--theme-grey-color);
}

/* ================================================== Testimonials Section */
.testimonials {
    padding: 70px 0;
    position: relative;
    background-size: cover;
    z-index: 1;
    background: #191919;
}

.testimonials .section-title {
    text-align: left;
    padding-right: 50px;
}

.testimonials .section-title h4 {
    color: var(--theme-yellow-color);
}

.testimonials .section-title h2 {
    color: var(--theme-primary-color);
}

.testimonials .section-title p {
    margin: 30px 0;
    font-size: 16px;
    line-height: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

.testimonials .section-view-all-btn {
    justify-content: flex-start;
}

#testimonialsSlider .slide-item {
    padding-top: 30px;
}

.testimonial-card {
    position: relative;
    border-radius: 15px;
    background: var(--theme-primary-color);
    text-align: center;
    padding: 50px 30px 30px;
}

.testimonial-card-photo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: var(--theme-primary-color) solid 1px;
}

.testimonial-card-photo img {
    width: 100%;
    height: 100%;
}

.testimonial-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-secondary-color);
}

.testimonial-card-content p {
    margin: 10px 0 15px;
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-grey-color);
}

.testimonial-card-stars .fa-solid {
    color: var(--theme-yellow-color);
}

#testimonialsSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#testimonialsSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#testimonialsSlider .owl-nav button.owl-prev:hover,
#testimonialsSlider .owl-nav button.owl-next:hover {
    opacity: 1;
}

/* ================================================== Team Member Section */
.teammembers {
    padding: 70px 0;
    background: var(--theme-primary-color)
}

.teammembers-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border-width: 1px;
    padding: 50px 15px 30px;
    background: #f6f6f6;
}

.team-member-card-thumbnail {
    position: relative;
    margin: auto;
    height: 150px;
    width: 150px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

#teammembersSlider .team-member-card-thumbnail img {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background: var(--theme-primary-color);
    padding: 5px;
}

.teammembers-card-content {
    position: relative;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
}

.teammembers-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--theme-grey-color);
    opacity: 0.1;
}

.teammembers-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-blue-color);
    margin-bottom: 5px;
}

.teammembers-card-content p {
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-yellow-color);
}

#teammembersSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#teammembersSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#teammembersSlider .owl-nav button.owl-prev:hover,
#teammembersSlider .owl-nav button.owl-next:hover {
    opacity: 1;
}

/* ================================================== News & Blogs Section */
.news-blog {
    padding: 70px 0;
    background: #f6f6f6
}

.news-blog .section-title {
    text-align: center;
}

.news-blog-card {
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition);
}

.news-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.3);
}

.news-blog-card-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.news-blog-card-thumbnail a {
    display: block;
    width: 100%;
}

.news-blog-card-thumbnail a img {
    width: 100%;
    height: auto;
}

.news-blog-card-category {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 10px 15px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-blog-card-category .fa-solid {
    font-size: 12px;
}

.news-blog-card-category a {
    font-size: 14px;
    color: var(--theme-primary-color);
}

.news-blog-card-content {
    padding: 30px;
    border-radius: 0 0 10px 10px;
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-primary-color);
}

.news-blog-card-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    list-style: none;
}

.news-blog-card-date li .fa-regular {
    font-size: 12px;
    color: var(--theme-yellow-color);
}

.news-blog-card-date li span {
    font-size: 14px;
    font-weight: 300;
    color: var(--theme-grey-color);
}

.news-blog-card-title a {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
    transition: var(--transition);
}

.news-blog-card-title a:hover {
    color: var(--theme-yellow-color);
}

.news-blog-card-excerpt p {
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-grey-color);
}

.news-blog-card-link {
    display: flex;
    margin-top: 15px;
}

.news-blog-card-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--theme-yellow-color);
}

.news-blog-card-link a span {
    font-size: 16px;
    font-weight: 500;
}

.news-blog-card-link a .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 50%;
    border: var(--theme-yellow-color) solid 2px;
}

/* ================================================== Get Started Section */
.airline-partners {
    padding: 50px 0;
    background: var(--theme-background-color);
}






/* ================================================== Footer Section */
.site-footer {
    background: #031631;
}

.footer-content {
    padding: 50px 0;
}

.footer-content-block {
    margin-top: 30px;
}

.footer-content-block p {
    margin: 20px 0 30px;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--theme-font-Poppins);
}

.footer-content-block h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

.footer-content-block-links ul li {
    list-style: none;
    line-height: 30px;
}

.footer-content-block-links ul li a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-family: var(--theme-font-Poppins);
}

.footer-content-block-links ul li a::before {
    content: '\f105';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    font-size: 12px;
    font-family: 'fontawesome';
}

.footer-content-block-links ul li a:hover {
    color: var(--theme-yellow-color);
}

.footer-social-link h4 {
    margin-bottom: 15px;
}

.footer-social-link ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.footer-social-link ul li a {
    padding-left: 0;
}

.footer-social-link ul li a::before {
    display: none;
}

.footer-social-link ul li .fa-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 50%;
    background: var(--theme-primary-color);
    color: var(--theme-blue-color);
    transition: var(--transition);
}

.footer-social-link ul li .fa-brands:hover {
    background: var(--theme-primary-color);
}

.footer-contact-block ul {
    margin-top: 30px;
}

.footer-contact-block ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-contact-block ul li span a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-block ul li span .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--theme-primary-color);
    color: var(--theme-blue-color);
}

.footer-contact-block ul li span {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--theme-font-Poppins);
}

.site-footer-logo h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-primary-color);
}

.associated-images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.associated-images a {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.associated-images img {
    width: 100%;
    height: auto;
}

/* ============================================================ */
.shared-social-links {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 9;
    width: 155px;
    height: 155px;
}

.shared-social-links .shares-icons {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.shared-social-links ul {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform: rotate(10deg);
}

.shared-social-links ul li {
    position: absolute;
    top: 80px;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.shared-social-links:hover ul li:first-child {
    top: 15px;
    right: 10px;
}

.shared-social-links:hover ul li:nth-child(2) {
    top: 10px;
    right: 61px;
}

.shared-social-links:hover ul li:nth-child(3) {
    top: 52px;
    right: 90px;
}

.shared-social-links:hover ul li:nth-child(4) {
    top: 100px;
    right: 70px;
}

.shared-social-links ul li a .fa-solid,
.shared-social-links ul li a .fa-brands {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================================ */

/* Copyright */
.copyright {
    padding: 20px 0;
    border-top: rgba(255, 255, 255, 0.15) solid 1px;
}

.copyright p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

.copyright p a {
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.copyright p a:hover {
    color: var(--theme-primary-color);
}

/* ================================================== Breadcrumb Section */
.page-banner {
    position: relative;
    padding: 50px 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-banner .container {
    position: relative;
    z-index: 9;
}

.page-breadcrumb {
    text-align: left;
}

.page-breadcrumb h1 {
    display: block;
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-breadcrumb a {
    font-size: 16px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-breadcrumb span {
    font-size: 16px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-breadcrumb span .fa-solid {
    font-size: 12px;
}

/* ================================================== Page Content Section */
.page-content {
    padding: 80px 0;
    background: var(--theme-primary-color);
}

.page-content .main-content .page-heading .page-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.page-content .main-content .page-heading .page-title::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--theme-grey-color);
}

.page-content .main-content .page-description {
    margin-bottom: 30px;
}

.page-content .main-content .page-description h2 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.page-content .main-content .page-description h3 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.page-content .main-content .page-description h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.page-content .main-content .page-description h5 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.page-content .main-content .page-description h6 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.page-description p {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-description ul,
.page-description ol {
    margin-bottom: 30px;
}

.page-description li {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-description p a {
    color: var(--theme-grey-color);
}

/* ================================================== Testimonial Page */
.archive-testimonial-card {
    margin-bottom: 30px;
}

.testimonial-card-body {
    padding: 30px;
    border: var(--theme-light-color) solid 1px;
}

/* ================================================== Contact Us Page */
.contact-form {
    padding: 50px;
    margin: -150px auto 100px;
    max-width: 800px;
    border-radius: 15px;
    background: var(--theme-primary-color);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 1);
}

.contact-form br {
    display: none;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-secondary-color);
}

.contact-form label p {
    display: inline-block;
}

.contact-form label span {
    display: inline-block;
    color: red;
}

.contact-form .form-control {
    height: 45px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 30px;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-secondary-color);
    background: var(--theme-light-color);
}

.contact-form textarea.form-control {
    height: 150px;
}

.contact-form .form-control::placeholder {
    color: var(--theme-secondary-color);
}

.contact-form .btn {
    display: inline-block;
    border-radius: 3px;
    padding: 15px 30px;
    font-weight: 500;
    font-size: 16px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

.contact-address-card {
    padding: 30px;
    min-height: 385px;
    border-radius: 5px;
    margin-bottom: 50px;
    background: var(--theme-background-color);
    border: var(--theme-light-color) solid 1px;
}

.contact-address-card h4 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
}

.contact-address-card ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-address-card ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.contact-address-card ul li .fa-solid,
.contact-address-card ul li .fa-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 2px;
    color: var(--theme-primary-color);
    background: var(--theme-grey-color);
}

.contact-address-card ul li strong {
    display: block;
}

.contact-address-card ul li span {
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-grey-color);
}

.google-map {
    position: relative;
    height: 600px;
}

.google-map iframe {
    width: 100%;
    height: 100%;
}

/* ================================================== Single Post Page */
.single-post-thumbnail img {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}

.relate-posts .sub-title {
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    border-bottom: var(--theme-grey-color) solid 1px;
}

.relate-posts-news-blog-card {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.relate-posts-news-blog-card-thumbnail img {
    width: 150px;
    height: auto;
}

.relate-posts-news-blog-card-content h4 a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--theme-secondary-color);
}

.relate-posts-posted-date-category {
    margin: 5px 0;
}

.relate-posts-posted-date-category span {
    font-size: 12px;
}

.relate-posts-news-blog-card-content-btn {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 0;
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
}

/* ================================================== Single Destination Page */
.single-destination-template .page-subtitle {
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
    border-bottom: var(--theme-light-color) solid 1px;
}

.single-destination-template-thumbnail {
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.single-destination-template-thumbnail img {
    width: 100%;
    height: auto;
}

.single-destination-template-description {
    margin-bottom: 50px;
}

.single-destination-template-description p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-grey-color);
}

/* ===== Package ===== */
#packagesSlider .packages-card-thumbnail img {
    width: 100%;
    height: auto;
}

#packagesSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -75px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

#packagesSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -75px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

#packagesSlider .owl-nav button.owl-prev:hover,
#packagesSlider .owl-nav button.owl-next:hover {
    background: var(--theme-blue-color);
}

/* ===== Overview ===== */
.single-destination-template-overview {
    margin-bottom: 50px;
}

.single-destination-template-overview table {
    border: var(--theme-light-color) solid 1px;
}

.single-destination-template-overview table tbody tr th {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-grey-color);
}

.single-destination-template-overview table tbody tr td {
    padding: 15px;
    font-size: 16px;
    color: var(--theme-grey-color);
}

/* ===== Google Map ===== */
.single-destination-template-map {
    position: relative;
    height: 450px;
    margin-bottom: 50px;
}

.single-destination-template-map iframe {
    width: 100%;
    height: 100%;
}

/* ===== Photo Gallery ===== */
.single-destination-template-gallery {
    margin-bottom: 50px;
}

.single-destination-template-gallery-card a {
    display: block;
}

.single-destination-template-gallery-card a img {
    width: 100%;
    height: auto;
}

/* ================================================== Archive Package Page */
.archive-package-template .page-content {
    background: var(--theme-grey-color);
}

/* ================================================== Single Package Page */
.single-package-template {
    padding-bottom: 100px;
}

/* ============================== Tabs Item */
#navtabPackages {
    background: var(--theme-blue-color);
    z-index: 1021 !important;
}

#navtabPackages .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
}

#navtabPackages .nabtab-package-item {
    display: inline-block;
    padding: 20px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    transition: var(--transition);
}

#navtabPackages .nabtab-package-item span {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--theme-font-WhyteInktrap);
}

#navtabPackages .nabtab-package-item.active,
#navtabPackages .nabtab-package-item:hover {
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

/* ============================== Tabs Content */
.single-package-template .page-subtitle {
    margin: 30px 0 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.scroll-package-content {
    padding: 30px 0;
}

.scroll-package-content .content-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

.scroll-package-content .content-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
}

#Overview .overview-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Overview .overview-content {
    padding: 30px;
    padding-bottom: 1px;
    border-radius: 10px;
    border: var(--theme-light-color) 1px solid;
    background: var(--theme-background-color);
    margin-bottom: 30px;
}

#Overview .overview-content ul li {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-bottom: 30px;
}

#Overview .overview-content ul li .package-overview-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#Overview .package-overview-content .package-overview-value {
    font-weight: 700;
}

#Overview .overview-content ul li .fa-solid,
#Overview .overview-content ul li .fa-regular {
    display: inline-block;
    margin-top: 5px;
    font-size: 24px;
    color: var(--theme-blue-color);
}

#Itinerary .accordion-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 5px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
}

#Itinerary .accordion-item .accordion-header .accordion-button {
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
    padding: 20px;
    padding-left: 25px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    gap: 15px;
}

#Itinerary .accordion-item .accordion-header .accordion-button.collapsed {
    background: var(--theme-primary-color);
    color: var(--theme-seondary-color);
}

#Itinerary .accordion-item .accordion-header .accordion-button::after {
    content: '\f068';
    font-family: 'fontawesome';
    background: transparent;
}

#Itinerary .accordion-item .accordion-header .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'fontawesome';
    background: transparent;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td {
    padding: 15px;
    background: var(--theme-light-color);
    border: var(--theme-light-color) solid 1px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item {
    display: flex;
    gap: 15px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .fa-regular,
#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .fa-solid {
    color: var(--theme-grey-color);
    font-size: 24px;
    position: relative;
    top: 5px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .table-item-content span {
    display: block;
    font-style: 18px;
    font-weight: 700;
    color: var(--theme-grey-color);
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .table-item-content span:last-child {
    font-size: 16px;
    font-weight: 400;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .itinerary-description {
    padding: 0 20px;
    padding-bottom: 5px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body ol {
    padding-left: 30px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body ul {
    padding-left: 15px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body li {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Inclusions .inclusions-include-description {
    padding: 30px;
    border-radius: 10px;
    background: var(--theme-background-color);
    margin-bottom: 30px;
}

#Inclusions .inclusions-exclude-description {
    padding: 30px;
    border-radius: 10px;
    background: #fae2e2;
}

#Inclusions .inclusions-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--theme-grey-color);
}

#Inclusions .inclusions-description ul,
#Inclusions .inclusions-description ol {
    margin-bottom: 30px;
}

#Inclusions .inclusions-description li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--theme-grey-color);
    list-style: none;
    padding-left: 30px;
}

#Inclusions .inclusions-description li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-family: 'fontawesome';
    color: var(--theme-secondary-color);
}

#Inclusions .inclusions-include-description li::before {
    content: '\f058';
}

#Inclusions .inclusions-exclude-description li::before {
    content: '\f057';
}

#Equipment.equipment-content {
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
}

#Equipment.equipment-content .page-subtitle {
    margin-top: 0;
}

#Equipment .equipment-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Equipment .equipment-description ul,
#Equipment .equipment-description ol {
    margin-bottom: 30px;
}

#Equipment .equipment-description li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--theme-grey-color);
    list-style: none;
    padding-left: 30px;
}

#Equipment .equipment-description li::before {
    content: '\f061';
    position: absolute;
    top: 3px;
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-family: 'fontawesome';
    color: var(--theme-secondary-color);
}

#FAQs .accordion-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 5px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
}

#FAQs .accordion-item .accordion-header .accordion-button {
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
    padding: 15px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    gap: 15px;
}

#FAQs .accordion-item .accordion-header .accordion-button.collapsed {
    background: var(--theme-primary-color);
    color: var(--theme-secondary-color);
}

#FAQs .accordion-item .accordion-header .accordion-button::after {
    content: '\f068';
    font-family: 'fontawesome';
    background: transparent;
}

#FAQs .accordion-item .accordion-header .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'fontawesome';
    background: transparent;
}

#FAQs .accordion-item .accordion-collapse .accordion-body {
    padding: 30px;
    padding-bottom: 15px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body ol {
    padding-left: 30px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body ul {
    padding-left: 15px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body li {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Gallery .package-gallery-photos a {
    display: block;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

#Gallery .package-gallery-photos a img {
    width: 100%;
    height: auto;
}

#Map .map-description {
    position: relative;
    border: var(--theme-grey-color) solid 5px;
    border-radius: 10px;
    overflow: hidden;
}

#Map .map-description a {
    display: block;
}

#Map .map-description a img {
    width: 100%;
    height: auto;
}

#Trips .trips-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--theme-blue-color);
    border-radius: 15px;
    margin-bottom: 30px;
}

#Trips .trips-card-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#Trips .trips-card-item:first-child {
    width: 50px;
}

#Trips .trips-card-item:nth-child(2) {
    position: relative;
    width: 100%;
}

#Trips .trips-card-item:last-child {
    width: 150px;
}

#Trips .trips-card-item-counter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 5px;
}

#Trips .trips-card-item-counter span {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#Trips .trips-card-item-divider {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#Trips .trips-card-item-divider:first-child::before {
    content: '';
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

#Trips .trips-card-item-divider-column {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
    width: 50%;
}

#Trips .trips-card-item-divider-column-calender {
    width: 40px;
    height: 40px;
    border: rgba(255, 255, 255, 0.2) solid 1px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Trips .trips-card-item-divider-column-calender .fa-solid {
    color: var(--theme-yellow-color);
    font-size: 18px;
}

#Trips .trips-card-item-divider-column-content strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#Trips .trips-card-item-divider-column-content span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#aside.sticky-top {
    padding-top: 100px;
}

#aside .package-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
    margin-bottom: 30px;
}

#aside .package-thumbnail::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

#aside .package-thumbnail img {
    width: 100%;
    height: auto;
}

#aside .package-header-title {
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 9;
}

#aside .package-header-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

#aside .package-price-show {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 9;
    display: flex;
    flex-direction: column;
}

#aside .package-price-show span:first-child {
    font-size: 42px;
    line-height: 42px;
    font-weight: 900;
    color: var(--theme-primary-color);
}

#aside .package-price-show span:last-child {
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-light-color);
}

#aside .package-overview {
    margin: 30px 0;
    padding: 30px;
    border-radius: 10px;
    border: var(--theme-grey-color) solid 1px;
    background: var(--theme-light-color);
}

#aside .package-overview ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#aside .package-overview ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    list-style: none;
}

#aside .package-overview-icon .fa-solid,
#aside .package-overview-icon .fa-regular {
    font-size: 24px;
}

#aside .package-overview-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#aside .package-overview-key {
    font-size: 14px;
    font-weight: 400;
}

#aside .package-overview-value {
    font-size: 16px;
    font-weight: 600;
}

#aside .package-enquiry-form {
    padding: 30px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.3)
}

#aside .package-enquiry-form h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#aside .package-enquiry-form label {
    display: block;
    font-size: 14px;
    color: var(--theme-grey-color);
}

#aside .package-enquiry-form label span {
    color: red;
}

#aside .package-enquiry-form .form-control {
    height: 40px;
    font-size: 14px;
    border-radius: 3px;
    color: var(--theme-secondary-color);
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-primary-color);
    margin-bottom: 5px;
}

#aside .package-enquiry-form textarea.form-control {
    height: 150px;
}

#aside .package-enquiry-form .form-control::placeholder {
    color: var(--theme-light-color);
}

#aside .package-enquiry-form .btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
}

/* ================================================== Activity Archive Page */
.activity-archive-template .activities-card {
    border: var(--theme-grey-light-color) solid 1px;
    margin-top: 30px;
}

/* ================================================== Activity Single Page */
.single-activity-related-packages .page-subtitle {
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-PlusJakartaSans);
    border-bottom: var(--theme-light-color) solid 1px;
}

.single-activity-template-description {
    margin-bottom: 30px;
}

.single-activity-template-description p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

/* ================================================== Trip Booking Page */
.trip-form-divider {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: rgba(0, 0, 0, 0.1) solid 1px;
    box-shadow: 0 0 30px -15px rgba(0, 0, 0, 0.3);
}

.trip-form-divider h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-blue-color);
    font-family: var(--theme-font-Poppins);
}

.trip-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.trip-form .form-group .fa-solid {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 14px;
}

.trip-form .form-group .form-control {
    padding-left: 35px;
    height: 45px;
    font-size: 14px;
    color: var(--theme-grey-color);
}


/* ================================================== Responsive */
/* Large */
@media (max-width: 1199px) {}

/* Medium */
@media (max-width: 991px) {}

/* Small */
@media (max-width: 767px) {
    #mega-menu-wrap-header-menu .mega-menu-toggle {
        background: var(--theme-yellow-color);
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-right {
        background: var(--theme-yellow-color);
        border-radius: 3px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
        width: 30px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
        width: 30px;
        background: var(--theme-blue-color);
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open+#mega-menu-header-menu {
        background: var(--theme-blue-color);
        padding: 30px 15px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open~button.mega-close {
        background: var(--theme-primary-color);
        left: calc(min(100vw - 40px, 260px));
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item>a.mega-menu-link {
        padding: 5px 15px;
        color: var(--theme-primary-color);
        border: rgba(0, 0, 0, 0) solid 1px;
        border-radius: 5px;
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item>a.mega-menu-link:hover,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item>a.mega-menu-link:focus,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item>a.mega-menu-link:active,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
        color: var(--theme-primary-color);
        border: var(--theme-primary-color) solid 1px;
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item>a.mega-menu-link:hover,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item>a.mega-menu-link:focus,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item>a.mega-menu-link:active,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
        color: var(--theme-primary-color);
    }
}

/* Extra Small*/
@media (max-width: 574px) {

    /* Heder Top Section */
    .site-header-top {
        padding: 15px 0;
    }

    .site-header-top .container {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .site-header-top-contact {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    /* Header Bottom Section */
    .site-header-logo img {
        width: 300px;
    }

    .site-header-auth {
        display: none;
    }

    /* Welcome Section */
    .welcome {
        padding: 50px 0;
    }

    .welcome-thumbnail {
        margin-bottom: 30px;
    }

    .welcome-subtitle {
        font-size: 18px;
    }

    .welcome-title {
        font-size: 42px;
        line-height: 48px;
    }

    .welcome-description {
        margin: 15px 0;
        font-size: 16px;
        line-height: 30px;
    }

    .welcome-list-content h4 {
        margin-bottom: 0;
    }

    .welcome-list-content h4 .fa-solid {
        font-size: 14px;
    }

    .welcome-list-content h4 span {
        font-size: 18px;
    }

    .welcome-link a span {
        font-size: 14px;
    }

    /* Title Section */
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h4 {
        font-size: 18px;
        font-weight: 400;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .section-title a span {
        font-size: 14px;
    }

    /* Distination Section */
    .destinations .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .destinations-card {
        margin-bottom: 0;
    }

    /* Activities Section */
    .activities {
        padding: 50px 0;
    }

    /* Packages Sction */
    .packages {
        padding: 50px 0;
    }

    .packages .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Why Choose Us */
    .whychooseus {
        padding-bottom: 50px;
    }

    .whychooseus-thunbnail {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .whychooseus-thunbnail .secondary-img {
        bottom: 20px;
        left: 20px;
        width: 150px;
        height: auto;
        border-radius: 10px;
        border: var(--theme-primary-color) solid 5px;
    }

    .whychooseus-experience {
        bottom: 15px;
        right: 15px;
    }

    .whychooseus-list li {
        gap: 20px;
    }

    .whychooseus-list-icon .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .whychooseus-list-content h4 span {
        font-size: 18px;
    }

    .whychooseus-list-content p {
        line-height: 26px;
    }

    /* Achievements Section */
    .achievements {
        padding: 50px 0;
        background: var(--theme-blue-color);
    }

    .achievements .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 50px 0;
    }

    .testimonials .section-title h2 {
        max-width: 100%;
    }

    .testimonials .section-title p {
        margin: 15px 0;
        font-size: 16px;
        line-height: 30px;
    }

    .testimonial-card-body {
        padding: 30px;
    }

    .testimonial-card-triangle {
        left: 30px;
    }

    .testimonial-card-heading {
        margin-top: 15px;
    }

    .testimonial-card-photo {
        width: 50px;
        height: 50px;
    }

    .testimonial-card-title h4 {
        font-size: 16px;
    }

    .testimonial-card-title p {
        font-size: 14px;
    }

    #testimonialsSlider .owl-nav button.owl-prev {
        top: calc(100% - 30px);
        width: 40px;
        height: 40px;
        right: 43px;
        font-size: 14px;
    }

    #testimonialsSlider .owl-nav button.owl-next {
        top: calc(100% - 30px);
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Explore Section */
    .explore {
        padding: 50px 0 70px;
    }

    .explore .section-title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .explore-content-contact a {
        padding: 15px 25px;
    }

    .explore-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .explore-thumbnails {
        width: 300px;
        height: 300px;
    }

    .explore-thumbnails-item {
        width: 150px;
        height: 150px;
    }

    /* News & Blogs Section */
    .news-blog {
        padding: 50px 0 20px;
    }

    .news-blog-card-content {
        padding: 25px 20px 20px;
    }

    .news-blog-card-title a {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .news-blog-card-link {
        margin-top: 10px;
    }

    /* Get Started Section */
    .get-started-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 30px;
        border-radius: 10px;
    }

    .get-started-content h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .get-started-content p {
        font-size: 16px;
        margin-top: 15px;
    }

    .get-started-icon {
        display: none;
    }

    /* Footer Section */
    .footer-content {
        padding: 50px 0;
    }

    .footer-content-block h4 {
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .footer-content-block-links ul li {
        line-height: 30px;
    }
}

/* Extra Small*/
@media (max-width: 460px) {}