:root {
    --primary-color: #32a419;
    --color-white: #ffffff;
    --color-dark: #212529;
    --primary-color-hover: #c6f5bc;
    --overlay-bg-color: #353a3c;
    --color-grey: #f9f7f3;
    --box-shadow-color: #00000029;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: auto;
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    background-color: var(--color-white);
    color: var(--color-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.width-50>* {
    width: 50%;
}

.width-33>* {
    width: 33%;
}

img,
svg {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

a {
    margin-bottom: unset;
    font-weight: unset;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;

}

a {
    text-decoration: none;
    color: var(--primary-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
a:focus {
    color: var(--color-white);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:focus {
    background: none;
    outline: none;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row>div {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.column-1,
.column-2,
.column-3,
.column-4,
.column-5,
.column-6,
.column-7,
.column-8,
.column-9,
.column-10,
.column-11,
.column-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}


.d-block {
    display: block !important;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.direction-column {
    flex-direction: column;
}

.direction-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

ul {
    list-style: none;
}

ul li {
    display: inline-block;
}

.bg-color-dark {
    background-color: var(--color-dark);
}

.bg-color-white {
    background-color: var(--color-white);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-grey {
    background-color: var(--color-grey);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-black,
text-black>* {
    color: var(--color-dark)
}

.text-white,
.text-white>* {
    color: var(--color-white);
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}


.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-dark);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn_dark {
    color: var(--color-white);
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn {
    padding: 0.8rem 2.2rem;
    font-weight: 500;
    border-width: 2px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.hero-btn {
    display: inline-block;
}


.hero-btn a {
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 30px;
    background-color: #0b0b0b;
    padding: 13px 35px;
    margin-right: 18px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.hero-btn a:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    transition: 0.5s;
    z-index: -1;
}

.hero-btn a i {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-left: 10px;
    position: relative;
    top: 3px;
    left: 12px;
    transition: 0.5s;
}

.hero-btn a:hover:before {
    width: 30%;
}

.hero-btn a:hover i {
    left: 18px;
}

.btn-primary {
    color: var(--color-white);
    font-size: 18px;
    border-radius: 30px;
    background-color: var(--primary-color);
    padding: 13px 35px;
    transition: 0.5s;
    cursor: pointer;
    border: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-dark);
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin-top: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.ml-4 {
    margin-left: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}


/*===========================================================
2. Header
===========================================================*/
header {
    padding: 20px 0;
    transition: ease-in-out 0.3s;
    background-color: transparent;
    position: absolute;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    z-index: 9;
}

.sticky {
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
    transition: ease-in-out 0.3s;
    padding: 10px 0;
}

#menuToggle {
    display: none;
}

label {
    cursor: pointer;
}

nav {
    width: 100%;
    height: 100%;
    height: 70px;
    background: var(--color-dark);
    z-index: 99;
}

nav .navbar {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

/* .navbar .logo a{
    font-size: 30px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
  } */

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
}

nav .navbar .links li a:hover,
.sticky nav .navbar .links li a:hover {
    color: var(--primary-color);
}

nav .navbar .links li a.active {
    color: var(--primary-color);
}

.sticky nav .navbar .links>li>a {
    color: var(--primary-color);
}

.sticky nav .navbar .links li a {
    color: var(--color-dark);
}

.sticky nav .navbar .links li a.active {
    color: var(--primary-color);
}

.sticky nav .navbar .links li ul li a {
    color: var(--color-white);
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: var(--color-white);
    position: relative;
    top: 0;
    transition: all 0.3s ease;
}

.sticky nav .navbar .links li .arrow {
    color: var(--color-dark);
}

.sticky .sidebar_menu .links li .arrow {
    color: var(--color-white) !important;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: var(--color-dark);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.navbar .logo img {
    width: 60%;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

header.sticky .navbar .logo img {
    width: 50%;
    transition: all 0.3s ease;
    filter: unset;
}

.sidebar-logo img {
    width: 80%;
    filter: brightness(0) invert(1);
}

.sidebar_menu ul.links {
    text-align: left;
}

.sidebar_menu .links li a {
    font-size: 18px !important;
    color: var(--color-white) !important;
}

.sidebar_menu .links li a.active {
    color: var(--primary-color) !important;
}

.sidebar_menu .links li ul {
    background: #282e34 !important;
    text-align: left;
}

.sidebar_menu .links li ul li a {
    font-size: 16px !important;
}

.navbar li a {
    margin-bottom: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

ul a:link,
ul a:visited,
ul a:hover,
ul a:active {
    color: var(--primary-color);
}

/*===========================================================
3. Section

3.1 Hero Header
===========================================================*/

.hero_video_header {
    position: relative;
    height: 85vh;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 85vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    transition: 0.5s;
    z-index: 2;
}

.showcase.active {
    right: 300px;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg-color);
    mix-blend-mode: overlay;
}

.text {
    position: relative;
    z-index: 10;
}

.text h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: capitalize;
}

.text h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: capitalize;
}

.text p {
    font-size: 1.1rem;
    color: var(--color-white);
    margin: 20px 0;
    font-weight: 400;
    max-width: 700px;
}

.video_content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.social {
    position: unset;
    z-index: 10;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

.social li {
    list-style: none;
}

.social li a {
    display: inline-block;
    color: var(--color-white);
    transform: scale(0.5);
    transition: 0.5s;
}

.social li a:hover {
    transform: scale(0.5) translateY(-15px);
}

.social li a svg {
    width: 55px;
    height: 55px;
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu ul {
    position: relative;
}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    font-size: 24px;
    color: #111;
}

.menu ul li a:hover {
    color: #03a9f4;
}

/*===========================================================
3. Section

3.1 About Info
===========================================================*/

.about .about_content h2,
.about_page .about_content h2 {
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    color: #0b0b0a;
    margin-top: 7px;
}

.about .about_content p {
    color: var(--color-dark);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    /* width: 80%; */
    margin-top: 7px;
}

/* short info */

.short_info h2 {
    font-size: 36px !important;
    line-height: unset !important;
    font-weight: 500 !important;
}

/* activities */

.activities {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/wildlife.webp) no-repeat center center;
    background-size: cover;
}

.activities h3 {
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    color: var(--color-white);
}

.activities .icon-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    ;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.activities .icon-wrapper:hover .icon-warp {
    background-color: var(--primary-color-hover);
    transition: all 0.4s ease;
}

.activities .icon-wrapper:hover a {
    color: var(--color-white);
}

/* .activities .icon-wrapper:hover img {
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
} */
.activities .icon-wrapper .icon-warp {
    border-radius: 50%;
    padding: 10px;
    background-color: #efefef;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.activities .icon-wrapper a {
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-color);
}

.activities .icon-wrapper img {
    max-width: 80%;
    position: relative;
    top: 7px;
    transition: all 0.4s ease;
}


/* Tours */
.about .about_content h3,
.tours h3,
.testimonial h3,
.contact_form h3,
.features h3 {
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
}

.tours .content,
.testimonial .content {
    border-radius: .3rem;
    -webkit-box-shadow: 0 0 10px 0 #e6e8ee;
    box-shadow: 0 0 10px 0 #e6e8ee;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #e6e8ee;
    padding: 0 1.5rem 2rem 1.5rem;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--box-shadow-color) !important;
    border-radius: 15px !important;
    transition: all 0.4s ease-in-out;
}

.tours figure {
    margin: 0 -3rem;
}

.tours .content:hover {
    background: #c6f5bc;
    transition: all 0.4s ease-in-out;
}

.tours .content:hover h4 a {
    color: var(--color-dark);
}

.tours .content h4 {
    display: inline-block;
    font-size: 22px;
    line-height: 28px;
    color: #0b0b0a;
    font-weight: 600;
    transition: 0.5s;
    margin-top: 15px;
}

.tours .content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--color-dark);
    font-weight: 400;
    padding: 15px 0 0 0;
}

.rb-left {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 10px;
}

.portfolio_list {
    max-height: 370px;
    overflow: hidden;
}

.gap-r-30 {
    row-gap: 30px;
}

.gap-c-40 {
    column-gap: 40px;
}

.gap-r-40 {
    row-gap: 40px;
}

.fs-29 {
    font-size: 29px;
}

.img_wrapper img {
    border-radius: 15px;
}

/* footer section */
footer {
    background: var(--color-dark) url(../img/pattern.png) no-repeat center center;
    background-size: cover;
}

footer ul {
    padding: 0;
}

footer ul li {
    display: block;
    text-align: left;
}


.footer a {
    color: var(--color-white);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.footer h4 {
    margin-bottom: 10px;
}

/* Footer grid */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column {
    padding: 10px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

footer img.footer-logo {
    filter: brightness(0) invert(1);
}

footer p {
    color: var(--color-white);
}

footer h4 {
    color: var(--color-white);
}

/* Middle section */
.footer-middle .certificates {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.certificates img {
    width: 60px;
    height: 60px;
}

/* Bottom section */
.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #444;
    margin-top: 20px;
    font-size: 0.9em;
}

footer ul li a {
    display: inline-block;
    color: var(--color-white) !important;
    line-height: 45px;
    transition: 0.5s;
    text-decoration: none !important;
    font-weight: 400;
}

footer ul li a:hover,
footer ul li a:focus {
    color: var(--primary-color) !important;
}

footer .th-widget-contact {
    max-width: 260px;
    margin-bottom: -0.4em;
}

.info-box_text:not(:last-child) {
    margin-bottom: 18px;
}

.info-box_text {
    line-height: 1.75em;
    margin-top: 0;
    display: flex;
    gap: 16px;
}

.info-box_text .icon {
    color: var(--body-color);
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 40px;
    height: 40px;
    line-height: 37px;
    background-color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.info-box_text .icon i {
    font-size: 20px;
    padding-top: 10px;
    color: var(--primary-color);
}

.info-box_text .details {
    margin-top: -0.3em;
}

.info-box_text .details p {
    margin-bottom: 0;
}

/* Inner Page */

.page_header {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/bg_header.webp) no-repeat center center;
    padding: 250px 0 156px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: -120px;
}

.page_header h1 {
    font-size: 50px;
    line-height: 50px;
    color: #f8f4ef;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: capitalize;
}

/* Team Page */
.team .image-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    -webkit-transition: all 0.5s ease;
    gap: 20px;
    -webkit-box-shadow: 0 0 10px 0 #e6e8ee;
    box-shadow: 0 0 10px 0 #e6e8ee;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #e6e8ee;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 0 20px var(--box-shadow-color) !important;
    border-radius: 15px !important;
    transition: all 0.5s ease;

}

.team img {
    border-radius: 50%;
    width: 85%;
}

.team h4,
.team h5 {
    margin-bottom: 0;
}

.team .image-wrapper:hover,
.team .image-wrapper.active {
    background-color: var(--primary-color);
    transition: all 0.5s ease;
}

.team .image-wrapper:hover h4,
.team .image-wrapper:hover p,
.team .image-wrapper.active h4,
.team .image-wrapper.active p {
    color: var(--color-white);
    transition: all 0.5s ease;
}

.team h3 {
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    color: var(--color-dark);
}

.team h4 {
    font-size: 20px;
}

.team p {
    font-size: 16px;
    font-style: italic;
}

/* tourist guides we have */
.tourist h3 {
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    color: var(--color-dark);
}

.tourist p {
    font-size: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    min-width: 600px;
    /* Ensures table is scrollable on small screens */
}

.table-container {
    width: 100%;
    overflow-x: auto;
    /* Enables horizontal scrolling */
    margin-bottom: 0px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: var(--primary-color);
    font-weight: 700;
    color: var(--color-white);
    font-family: 'Outfit';
}

caption {
    text-align: left;
    font-weight: bold;
    margin: 10px 0;
    color: var(--color-dark);
    font-family: 'Outfit';
    font-size: 22px;
    padding-bottom: 15px;
}

.inner_page.day_tours h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.inner_page.day_tours img {
    margin-bottom: 15px;
}

.inner_page .fs-16>span {
    font-size: 16px;
}

.inner_page .fs-17>span {
    font-size: 17px;
}

.inner_page .fs-18>span {
    font-size: 18px;
}

.rafting_info .wrapper {
    background-color: #c6f5bc;
}

.rafting_info .wrapper div.details {
    padding: 0 15px;
}

.rafting_info h3 {
    background: green;
    color: var(--color-white);
    padding: 5px 10px;
}

/* Inner Page */


.page_treking_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/header_treking.webp) no-repeat center center;
}

.page_day_tours_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/day-tours.webp) no-repeat center center;
}

.page_heli_tours_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/heli-tours.webp) no-repeat center center;
    background-position: top;
}

.page_rafting_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/rafting3.webp) no-repeat center center;
    background-position: top;
}

.page_entertainment_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/entertainment_bg.webp) no-repeat center center;
}

.page_adventure_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/adventure.webp) no-repeat center center;
}

.page_annapurna_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/annapurna.webp) no-repeat center center;
}

.page_everest_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/everest_bg.webp) no-repeat center center;
}

.page_kanchangunja_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/kanchanjunga_bg.webp) no-repeat center center;
    background-position: top;
}

.page_pokhara_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/pokhara_bg.webp) no-repeat center center;
}

.page_lumbini_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/lumbini_bg.webp) no-repeat center center;
    background-position: center;
}

.page_nature_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/activities/nature.webp) no-repeat center center;
}

.page_resturant_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/thamel.webp) no-repeat center center;
    background-position: top;
}

.page_mice_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/mice.webp) no-repeat center center;
}

.page_festival_bg {
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/festival.webp) no-repeat center center;
    background-position: bottom;
}


.inner_page .page_content p {
    margin-bottom: 15px;
}

.inner_page .photos {
    display: flex;
    margin-bottom: 20px;
}

.photos img {
    height: auto;
}

.tours .meta span,
.with_meta span {
    font-size: 16px;
    font-family: 'Outfit';
    font-weight: 600;
}

.tours_toggle_description {
    height: unset !important;
}

.tours_toggle_description p.show-more-height {
    height: 160px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.tours_toggle_description .show-more {
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
    color: var(--color-white);
    font-weight: 500;
    font-family: 'Outfit';
    border-radius: 10px;
    background-color: #32a419;
    padding: 10px 25px;
    transition: 0.5s;
    position: relative;
}

.tours_toggle_description .show-more:hover {
    background-color: var(--primary-color);
}

.tours .meta i,
.with_meta i {
    background: #32a419;
    padding: 4px;
    border-radius: 50%;
    color: var(--color-white);
}

.tabs {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.tab-menu {
    display: flex;
    background-color: var(--primary-color-hover);
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-menu li {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tab-menu li:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.tab-menu li.active {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.tab-content {
    padding: 20px;
    display: block;
    background-color: var(--color-white);
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}

.tabs .tab-content p {
    margin-bottom: 15px;
}

.tabs .tab-content ul {
    text-align: left;
}

.tabs .tab-content ul li {
    display: block;
    margin-bottom: 15px;
}

.all-icon-detail {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.all-icon-detail .content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 25%;
}

.all-icon-detail .content i {
    font-size: 1.5rem;
    width: 30px;
    margin-right: 10px;
    color: var(--primary-color);
}

.pack-details .content .cont1 .labelTitle {
    font-size: 18px;
    font-weight: 600;
}

.pack-details .content .cont1 span {
    font-size: 15px;
}

.sidebar .sidebar_widget {
    background: #c6f5bc;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar ul {
    text-align: left;
}

.sidebar ul li {
    margin-bottom: 15px;
    display: block;
}

.sidebar ul li a {
    color: var(--color-dark)
}

.sidebar ul li a.active {
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 5px;
    font-weight: 600;
    color: var(--color-dark)
}

.list_item a {
    color: var(--primary-color) !important;
}

.list_item a:hover,
.list_item a.focus {
    color: var(--color-dark) !important;
    text-decoration: underline;
}

#gototop {
    display: inline-block;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 10px;
    right: 15px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#gototop i {
    font-size: 2em;
    line-height: 50px;
    color: var(--color-white);
}

#gototop:hover {
    cursor: pointer;
    background-color: var(--color-dark);
}

#gototop:hover i {
    color: var(--color-white);
}

#gototop.show {
    opacity: 1;
    visibility: visible;
}

.testimonial .content {
    background-color: var(--color-white);
    padding-top: 2rem;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.testimonial .content>p {
    font-size: 17px;
    font-style: italic;
}

.testimonial figure {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color-hover);
}

.testimonial .user_details span {
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    display: block;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-size: 16px;
    font-family: Inter;
    outline: 0;
}

label {
    cursor: pointer;
    font-family: 'Outfit';
    font-weight: 500;
}

form {
    border: 2px solid var(--primary-color);
    padding: 20px 30px;
}

.bg_cta_image .row {
    padding: 100px 0px;
    background: linear-gradient(0deg, rgb(32 31 31 / 85%) 0%, rgb(0 0 0 / 85%) 100%), url(../img/people.webp) no-repeat center center;
    background-size: cover;
    border-radius: 40px;
}

.bg_cta_image h3 {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-white);
}

.bg_cta_image p {
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    padding-bottom: 20px;
}


/* Why Choose Us  */
.features {
    background: var(--color-dark) url(../img/pattern_1.png) no-repeat center center;
    background-size: contain;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}


.features .features_content {
    background: linear-gradient(135deg, #f5f7fa, #e1e8f0);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.features .features_content:hover {
    background: var(--primary-color-hover);
}

.features .features_content .icon {
    font-size: 40px;
    color: #27ae60;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #32a419;
    border-radius: 50%;
}

.features .features_content .icon i {
    vertical-align: middle;
    color: var(--color-white);
    padding-top: 15px;
}

.features .features_content h4 {
    display: inline-block;
    font-size: 22px;
    line-height: 28px;
    color: #0b0b0a;
    font-weight: 600;
    transition: 0.5s;
    margin-bottom: 0;
}

.features .features_content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--color-dark);
    font-weight: 400;
}

/* CTA Button */
.features .cta-button {
    margin-top: 40px;
}

.features .cta-button a {
    padding: 15px 30px;
    font-size: 1.2em;
    color: var(--color-white);
    background: #27ae60;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.features .cta-button a:hover {
    background: #1e8449;
}