@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap');

:root {
    --title-font: "Crimson Text", serif;
    --heading-font: "Jost", sans-serif;
    --body-font: "Crimson Text", serif;

    --primary-color: #0b2725;
    --secondary-color: #ac712a;
    --text-color: #ffffff;
    --light-color: #f8f5ef;
    --gradient: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    margin: 0;
}

p,
a,
li,
button,
input,
textarea {
    font-family: var(--title-font);
}

/*==========================================
RY Header
==========================================*/

.ry-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    background: transparent;
    transition: all .4s ease;
}

.ry-navbar {
    padding: 0;
}

.ry-logo img {
    height: 70px;
    transition: .4s;
}

.ry-menu {
    gap: 2px;
}

.ry-menu .nav-link {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    padding: 10px 16px !important;
    transition: .3s;
}

.ry-menu .nav-link:hover,
.ry-menu .nav-link.active {
    color: var(--secondary-color) !important;
}

.ry-menu .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.ry-menu .dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    animation: menuFade .35s;
}

.ry-menu .dropdown-item {
    padding: 10px 24px;
    font-size: 15px;
    font-family: var(--heading-font);
    transition: .3s;
}

.ry-menu .dropdown-item:hover {
    background: var(--secondary-color);
    color: #fff;
}

.ry-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ry-help {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.ry-help i {
    font-size: 40px;
    color: var(--secondary-color);
}

.ry-help span {
    display: block;
    font-size: 13px;
    font-family: var(--heading-font);
    opacity: .8;
}

.ry-help h6 {
    margin: 2px 0 0;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.ry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.ry-btn:hover {
    background: #fff;
    color: #0b2725;
}

.ry-toggler {
    font-size: 30px;
    color: #fff;
}

.ry-toggler:focus {
    box-shadow: none;
}
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background-color: #ac712a !important;
    color: #fff !important;
}
/*==========================================
Sticky Header
==========================================*/

/*==========================================
Sticky Header
==========================================*/

.ry-header.sticky {
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .10);
}

.ry-header.sticky .navbar {
    background: transparent;
}

/* Logo */
.ry-header.sticky .ry-logo img {
    height: 60px;
}

/* Menu */
.ry-header.sticky .ry-menu .nav-link {
    color: #222 !important;
}

.ry-header.sticky .ry-menu .nav-link:hover,
.ry-header.sticky .ry-menu .nav-link.active {
    color: var(--secondary-color) !important;
}

/* Dropdown Arrow */
.ry-header.sticky .dropdown-toggle::after {
    color: #222;
}

/* Help Section */
.ry-header.sticky .ry-help {
    color: #222;
}

.ry-header.sticky .ry-help span {
    color: #555;
}

.ry-header.sticky .ry-help h6 {
    color: #222;
}

.ry-header.sticky .ry-help i {
    color: var(--secondary-color);
}

/* Button */
.ry-header.sticky .ry-btn {
    background: var(--secondary-color);
    color: #fff;
}

.ry-header.sticky .ry-btn:hover {
    background: #0b2725;
    color: #fff;
}

/*==========================================
Tablet
==========================================*/

@media(max-width:991px) {

    .ry-header {
        background: #fff;
        padding: 15px 0;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
    }

    .ry-logo img {
        height: 55px;
    }

    .ry-toggler {
        color: #222;
    }

    .ry-menu {
        gap: 0;
        padding-top: 15px;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .ry-menu .nav-link {
        color: #222 !important;
        padding: 12px 0 !important;
    }

    .ry-menu .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 15px;
        margin-top: 5px;
    }

    .ry-right {
        display: none !important;
    }

}

/*==========================================
Animation
==========================================*/

@keyframes menuFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*==========================================
Hero Section
==========================================*/

.ry-hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .45);
}

.ry-hero .container-fluid {
    position: relative;
    z-index: 2;
}

.ry-hero-content {
    max-width: 700px;
    margin-left: auto;
}

.ry-hero-title {
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    color: #fff;

}

.ry-hero-subtitle {
    font-family: "Allison", cursive;
    font-size: 78px;
    font-weight: 400;
    line-height: 1;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.ry-hero-text {
    font-family: var(--title-font);
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    max-width: 375px;
    margin-bottom: 35px;
}

.ry-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%) !important;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    transition: all .35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.ry-hero-btn:hover {
    background: #0b2725;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .30);
}

.ry-hero-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

/*==========================================
Responsive Hero mobile
==========================================*/

@media (max-width:767px) {

    .ry-hero {
        height: auto;
        min-height: 50vh;
        padding: 0px 0 80px;
        text-align: center;
        justify-content: center;
        background-image: url("../images/mobilebanner.png");
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .ry-hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ry-hero .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }



    .ry-hero-subtitle {
        font-size: 56px;
        margin-bottom: 10px;
    }

    .ry-hero-title {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .ry-hero-text {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .ry-hero-btn {
        padding: 12px 28px;
        font-size: 16px;
    }

}

/* tablets */

@media (min-width:768px) and (max-width:991px) {

    .ry-hero {
        min-height: 300px;
        text-align: center;
    }

    .ry-hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .ry-hero-subtitle {
        font-size: 64px;
    }

    .ry-hero-title {
        font-size: 42px;
    }

    .ry-hero-text {
        margin: 0 auto 30px;
        max-width: 500px;
    }
}

/*==========================================
Responsive Hero - Mobile
==========================================*/

@media (max-width:767px) {

    .ry-hero {
        height: 65vh;
        min-height: 600px;
        padding: 0;
        align-items: flex-end;
        justify-content: flex-start;
        background-image: url("../images/mobilebanner.png");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .ry-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, .15) 0%,
                rgba(0, 0, 0, .35) 45%,
                rgba(0, 0, 0, .75) 100%);
    }

    .ry-hero .container-fluid {
        padding: 0px 25px 90px;

    }

    .ry-hero-content {
        max-width: 100%;
        margin: 0;
        display: block;
        text-align: left;
    }

    .ry-hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 10px;
        margin-left: 2%;
    }

    .ry-hero-subtitle {
        font-size: 48px;
        line-height: .9;
        margin-bottom: 18px;
    }

    .ry-hero-text {
        font-size: 18px;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 0 25px;
    }

    .ry-hero-btn {
        padding: 14px 24px;
        font-size: 15px;
        border-radius: 50px;
    }

}

/* about */

.about-section {
    background: #f7f2e8;
    padding: 50px 0;
}

.section-title {
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-script {
    font-family: 'Allison', cursive;
    font-size: 56px;
    font-weight: 400;
    color: #232323;
    margin-bottom: 35px;
    line-height: 1;
}

.section-text {
    font-family: var(--title-font);
    font-size: 18px;
    line-height: 28px;
    color: #444;
}

.theme-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 38px;
    background: #ac712a;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
}

.theme-btn:hover {
    background: #0b2725;
    color: #fff;
}

@media(max-width:991px) {

    .about-section {
        padding: 90px 0;
    }

    .section-title {
        font-size: 42px;
    }

    .section-script {
        font-size: 56px;
    }

    .section-text {
        font-size: 17px;
        line-height: 30px;
    }

}

@media(max-width:767px) {

    .about-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-script {
        font-size: 42px;
    }

    .section-text {
        font-size: 16px;
        line-height: 28px;
    }

    .theme-btn {
        padding: 14px 30px;
    }

}

/*==================================
Feature Strip
==================================*/

.feature-strip {
    background: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 45px;
    height: 100%;
    transition: .35s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, .04);
}

.feature-item.border-end {
    border-right: 1px solid rgba(255, 255, 255, .15) !important;
}

.feature-icon {
    min-width: 60px;
    text-align: center;
}

.feature-icon i {
    font-size: 44px;
    color: var(--secondary-color);
    transition: .35s;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.15);
}

.feature-content h3 {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-content p {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 36px;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .feature-item {
        padding: 30px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .feature-item:last-child {
        border-bottom: none;
    }

}

@media(max-width:767px) {

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .feature-icon i {
        font-size: 38px;
    }

    .feature-content h3 {
        font-size: 26px;
    }

    .feature-content p {
        font-size: 17px;
        line-height: 30px;
    }

}

/*=================================
Traveler Section
=================================*/

.traveler-section {
    position: relative;
    padding: 50px 0;
    background: #0b2725;
    overflow: hidden;
}

.desktop-gallery {
    display: grid;
}

.traveler-gallery-mobile {
    display: none;
}

.traveler-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: start;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: .4s;
    animation: floatImage 5s ease-in-out infinite;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .6s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .18);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.item-one {
    margin-top: 110px;
    margin-left: 0%;
    width: 100%;
    height: 75% !important;
}

.item-two {
    margin-top: 20%;
    width: 100%;
    height: 100% !important;
    animation-delay: .5s;
}

.item-three {
    margin-top: -5%;
    width: 100%;
    height: 100%;
    animation-delay: 1s;
}

.item-four {
    margin-top: 20%;
    width: 100%;
    height: 48%;
    animation-delay: 1.5s;
}

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

.traveler-content {
    padding-left: 50px;
}

.traveler-content .section-title {
    font-family: var(--title-font);
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.traveler-content .section-script {
    font-family: "Allison", cursive;
    font-size: 48px;
    line-height: 1;
    color: #fff;
    margin-bottom: 30px;
}

.traveler-content p {
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 22px;
}

.traveler-content .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    background: #ac712a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.traveler-content .theme-btn:hover {
    background: #fff;
    color: #0b2725;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
}

/*=========================================
Tablet (991px)
=========================================*/

@media (max-width:991px) {

    .traveler-section {
        padding: 80px 0;
    }

    .desktop-gallery {
        display: none;
    }

    .traveler-gallery-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 50px;
    }

    .mobile-column {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .mobile-img {
        overflow: hidden;
        border-radius: 18px;
        position: relative;
    }

    .mobile-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: .5s;
    }

    .mobile-img:hover img {
        transform: scale(1.06);
    }

    .mobile-small {
        height: 190px;
    }

    .mobile-large {
        height: 300px;
        margin-top: 20px;
    }

    .mobile-tall {
        height: 350px;
    }

    .traveler-content {
        padding-left: 0;
        margin-top: 20px;
        text-align: left;
    }

    .traveler-content .section-title {
        font-size: 38px;
    }

    .traveler-content .section-script {
        font-size: 58px;
        margin-bottom: 20px;
    }

    .traveler-content p {
        font-size: 17px;
        line-height: 30px;
    }

}



/*=========================================
Mobile (767px)
=========================================*/

@media (max-width:767px) {

    .traveler-section {
        padding: 70px 0;
    }

    .desktop-gallery {
        display: none;
    }

    .traveler-gallery-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 35px;
    }

    .mobile-column {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .mobile-img {
        overflow: hidden;
        border-radius: 14px;
    }

    .mobile-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .mobile-small {
        height: 150px;
    }

    .mobile-large {
        height: 230px;
        margin-top: 12px;
    }

    .mobile-tall {
        height: 270px;
    }

    .traveler-content {
        padding-left: 0;
        margin-top: 0;
        text-align: left;
    }

    .traveler-content .section-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .traveler-content .section-script {
        font-size: 48px;
        line-height: .9;
        margin-bottom: 20px;
    }

    .traveler-content p {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 18px;
    }

    .traveler-content .theme-btn {
        padding: 13px 28px;
        font-size: 15px;
    }

}



/*=========================================
Small Mobile (480px)
=========================================*/

@media (max-width:480px) {

    .traveler-gallery-mobile {
        gap: 10px;
    }

    .mobile-column {
        gap: 10px;
    }

    .mobile-small {
        height: 120px;
    }

    .mobile-large {
        height: 190px;
        margin-top: 8px;
    }

    .mobile-tall {
        height: 220px;
    }

    .mobile-img {
        border-radius: 10px;
    }

    .traveler-content .section-title {
        font-size: 24px;
    }

    .traveler-content .section-script {
        font-size: 40px;
    }

    .traveler-content p {
        font-size: 14px;
        line-height: 26px;
    }

    .traveler-content .theme-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

}

/*================================
Travel CTA
================================*/

.travel-cta {
    position: relative;

    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.travel-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
}

.travel-cta .container {
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    padding: 12px 35px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-title {
    font-family: var(--title-font);
    font-size: 36px;
    color: #fff;
    line-height: 1.2;
}

.cta-script {
    font-family: 'Allison', cursive;
    font-size: 82px;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: .4s;
}

.cta-btn:hover {
    background: #fff;
    color: #0b2725;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .30);
}

/* Tablet */

@media(max-width:991px) {

    .travel-cta {
        padding: 120px 0;
    }

    .cta-title {
        font-size: 46px;
    }

    .cta-script {
        font-size: 62px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .travel-cta {
        padding: 90px 15px;
    }

    .cta-tag {
        font-size: 11px;
        padding: 10px 25px;
        letter-spacing: 2px;
    }

    .cta-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .cta-title br {
        display: none;
    }

    .cta-script {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .cta-btn {
        padding: 15px 32px;
        font-size: 15px;
    }

}

.cta-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .5s;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 0;
}


/*=================================
Tourist Section
=================================*/

.tourist-section {
    position: relative;
    padding: 50px 0;
    background: #f7f2e8;
    overflow: hidden;
}

.desktop-tourist-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.tourist-gallery-mobile {
    display: none;
}

.tourist-content {
    padding-right: 50px;
}

.tourist-content .section-title {
    font-family: var(--title-font);
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.2;
}

.tourist-content .section-script {
    font-family: "Allison", cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: .9;
    color: #111;
    margin-bottom: 30px;
}

.tourist-content p {
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 34px;
    color: #333;
    margin-bottom: 22px;
}

.tourist-content .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    background: #ac712a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.tourist-content .cta-btn:hover {
    background: #0b2725;
    color: #0b2725;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.tourist-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    transition: .4s;
}

.tourist-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .6s;
}

.tourist-image:hover img {
    transform: scale(1.08);
}

.tourist-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .15);
    opacity: 0;
    transition: .35s;
}

.tourist-image:hover::after {
    opacity: 1;
}

.image-left {
    width: 280px;
    height: 520px;
    margin-top: 20px;
    animation: floatLeft 5s ease-in-out infinite;
}

.image-right {
    width: 280px;
    height: 520px;
    margin-top: 70px;
    animation: floatRight 5s ease-in-out infinite;
    animation-delay: .5s;
}
 
/*=====================
Floating Animation
=====================*/

@keyframes floatLeft {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes floatRight {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }

    100% {
        transform: translateY(0);
    }

}


/*=================================
Tablet
=================================*/

@media (max-width:991px) {

    .tourist-section {
        padding: 90px 0;
    }

    .desktop-tourist-gallery {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .tourist-gallery-mobile {
        display: none;
    }

    .tourist-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .tourist-content .section-title {
        font-size: 38px;
    }

    .tourist-content .section-script {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .tourist-content p {
        font-size: 17px;
        line-height: 30px;
    }

    .image-left,
    .image-right {
        width: 240px;
        height: 420px;
        margin-top: 0;
    }

}


/*=================================
Mobile
=================================*/

@media (max-width:767px) {

    .tourist-section {
        padding: 70px 0;
    }

    /* Hide Desktop Gallery */

    .desktop-tourist-gallery {
        display: none;
    }

    /* Show Mobile Gallery */

    .tourist-gallery-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 35px;
    }

    .tourist-mobile-item {
        overflow: hidden;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
    }

    .tourist-mobile-item img {
        width: 100%;
        display: block;
        object-fit: cover;
        transition: .4s;
    }

    .tourist-mobile-item:hover img {
        transform: scale(1.06);
    }

    /* Different Heights */

    .left-image img {
        height: 240px;
    }

    .right-image {
        margin-top: 35px;
    }

    .right-image img {
        height: 280px;
    }

    /* Content */

    .tourist-content {
        padding-right: 0;
        margin-bottom: 0;
        text-align: left;
    }

    .tourist-content .section-title {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .tourist-content .section-script {
        font-size: 50px;
        line-height: .9;
        margin-bottom: 20px;
    }

    .tourist-content p {
        font-size: 16px;
        line-height: 31px;
        margin-bottom: 18px;
    }

    .tourist-content .cta-btn {
        display: inline-flex;
        padding: 14px 30px;
        margin-top: 10px;
    }

}


/*=================================
Small Mobile
=================================*/

@media (max-width:575px) {

    .tourist-section {
        padding: 50px 0;
    }

    .tourist-gallery-mobile {
        gap: 12px;
        margin-top: 30px;
    }

    .left-image img {
        height: 200px;
    }

    .right-image {
        margin-top: 28px;
    }

    .right-image img {
        height: 235px;
    }

    .tourist-content .section-title {
        font-size: 26px;
    }

    .tourist-content .section-script {
        font-size: 42px;
    }

    .tourist-content p {
        font-size: 15px;
        line-height: 29px;
    }

    .tourist-content .cta-btn {
        padding: 13px 28px;
        font-size: 15px;
    }

}

/*==================================
Journey Section
==================================*/
.section-heading .abouttext {

    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 12px;
}


.texthead {
    color: white;
}

.journey-section {
    padding: 50px 0;
    background: #0b2725;
    overflow: hidden;
    position: relative;
}

.journey-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: .4s ease;
}

.journey-card:hover {
    transform: translateY(-12px);
}

.journey-img {
    position: relative;
    height: 470px;
    overflow: hidden;
    border-radius: 18px;
}

.journey-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.journey-card:hover img {
    transform: scale(1.1);
}

.journey-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, .88), rgba(0, 0, 0, .15));
    transition: .4s;
}

.journey-card:hover .journey-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, .25));
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: var(--heading-font);
    color: #fff;
    margin-bottom: 15px;
}

.location i {
    color: var(--secondary-color);
}

.journey-overlay h4 {
    font-family: var(--title-font);
    font-size: 31px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 18px;
    transition: .4s;
}

.journey-card:hover h4 {
    color: var(--secondary-color);
}

.journey-overlay hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, .25);
    margin: 0 0 18px;
}

.journey-overlay p {
    font-family: var(--heading-font);
    font-size: 15px;
    line-height: 28px;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 42px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: .4s;
}

.explore-btn:hover {
    background: #fff;
    color: #0b2725;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .30);
}

.explore-btn i {
    transition: .3s;
}

.explore-btn:hover i {
    transform: translateX(6px);
}

/* Shine Effect */

/* .journey-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:60%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);
transform:skewX(-25deg);
z-index:5;
} */

.journey-card:hover::before {
    animation: shine 1s;
}

@keyframes shine {

    100% {
        left: 150%;
    }

}

/*=========================
Tablet
=========================*/

@media(max-width:991px) {

    .journey-section {
        padding: 90px 0;
    }

    .journey-img {
        height: 420px;
    }

    .journey-overlay h4 {
        font-size: 26px;
    }

}

/*=========================
Mobile
=========================*/

@media(max-width:767px) {

    .journey-section {
        padding: 70px 0;
    }

    .journey-img {
        height: 360px;
    }

    .journey-overlay {
        padding: 20px;
    }

    .journey-overlay h4 {
        font-size: 24px;
    }

    .journey-overlay p {
        font-size: 14px;
        line-height: 24px;
    }

    .explore-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

}

/*==================================
Middle Banner
===================================*/

.middle-banner {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background: url("../images/home-cta.webp") center center/cover no-repeat;
    z-index: 0;
    will-change: transform;
}

.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 20, 17, .55);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.middle-banner .container {
    position: relative;
    z-index: 2;
}

.banner-tag {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.banner-title {
    font-family: var(--title-font);
    font-size: 36px;
    line-height: 41px;
    color: #fff;
    margin-bottom: 15px;
}

.banner-title .highlight {
    font-family: 'Allison', cursive;
    font-size: 56px;
    color: var(--secondary-color);
    font-weight: 400;
    display: inline-block;
    margin: 0 5px;
}

.banner-text {
    max-width: 700px;
    margin: auto;
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 34px;
    color: rgba(255, 255, 255, .85);
}

/* Fade Effect */

.middle-banner {
    transition: .5s;
}

.middle-banner:hover .banner-title .highlight {
    transform: scale(1.05);
    transition: .4s;
}

/* Tablet */

@media(max-width:991px) {

    .middle-banner {
        padding: 90px 0;
    }

    .banner-title {
        font-size: 44px;
    }

    .banner-title .highlight {
        font-size: 58px;
    }

    .banner-text {
        font-size: 16px;
        line-height: 30px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .middle-banner {
        padding: 50px 15px;
    }

    .banner-tag {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 10px 20px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-title .highlight {
        display: block;
        font-size: 42px;
        margin-top: 10px;
    }

    .banner-text {
        font-size: 15px;
        line-height: 28px;
    }

}


/*=================================
FAQ Section
=================================*/

.faq-section {
    padding: 50px 0;
    background: #f7f2e8;
}

.faq-tag {
    display: inline-block;
    padding: 12px 35px;
    background: #dff9c8;
    color: #0b2725;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-title {
    font-family: var(--title-font);
    font-size: 56px;
    color: #222;
}

.faq-title span {
    font-family: 'Allison', cursive;
    font-size: 82px;
    font-weight: 400;
}

.custom-accordion {
    margin-top: 40px;
}

.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
    border-radius: 0;
}

.custom-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 28px 0;
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
    color: #374151;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #ac712a;
}

.custom-accordion .accordion-body {
    padding: 0 0 25px;
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 32px;
    color: #666;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 32px;
    font-weight: 300;
    width: auto;
    height: auto;
    transition: .4s;
    color: #222;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    transform: none;
    color: #ac712a;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button:hover {
    color: #ac712a;
    padding-left: 8px;
    transition: .3s;
}

/* Tablet */

@media(max-width:991px) {

    .faq-section {
        padding: 90px 0;
    }

    .faq-title {
        font-size: 46px;
    }

    .faq-title span {
        font-size: 62px;
    }

    .custom-accordion .accordion-button {
        font-size: 24px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-tag {
        font-size: 11px;
        padding: 10px 24px;
    }

    .faq-title {
        font-size: 34px;
    }

    .faq-title span {
        font-size: 46px;
    }

    .custom-accordion .accordion-button {
        font-size: 18px;
        padding: 22px 0;
    }

    .custom-accordion .accordion-body {
        font-size: 15px;
        line-height: 28px;
    }

    .custom-accordion .accordion-button::after {
        font-size: 26px;
    }

}


/*=================================
Blog Section
=================================*/

.blog-section {
    padding: 50px 0;
    background: #0b2725;
    overflow: hidden;
    position: relative;
}

.blog-tag {
    display: inline-block;
    padding: 12px 35px;
    background: #dff9c8;
    color: #0b2725;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 25px;
}

.blog-title {
    font-family: var(--title-font);
    font-size: 36px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 60px;
}

.blog-title span {
    font-family: 'Allison', cursive;
    font-size: 56px;
    font-weight: 400;
    color: #fff;
}

.blog-card {
    transition: .4s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .7s;
    display: block;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    font-size: 11px;
    font-family: var(--heading-font);
    font-weight: 600;
    border-radius: 5px;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-content {
    padding-top: 25px;
}

.blog-content h3 {
    font-family: var(--title-font);
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    margin-bottom: 20px;
    transition: .3s;
}

.blog-card:hover .blog-content h3 {
    color: var(--secondary-color);
}

.blog-content p {
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 34px;
    color: rgba(255, 255, 255, .80);
    margin-bottom: 25px;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.blog-read i {
    transition: .3s;
}

.blog-read:hover {
    color: #fff;
}

.blog-read:hover i {
    transform: translateX(6px);
}

/* Shine Effect */

.blog-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-25deg);
}

.blog-card:hover .blog-image::after {
    animation: blogShine 1s;
}

@keyframes blogShine {

    100% {
        left: 150%;
    }

}

/* Tablet */

@media(max-width:991px) {

    .blog-section {
        padding: 80px 0;
    }

    .blog-title {
        font-size: 46px;
        margin-bottom: 45px;
    }

    .blog-title span {
        font-size: 58px;
    }

    .blog-image img {
        height: 260px;
    }

    .blog-content h3 {
        font-size: 28px;
    }

    .blog-content p {
        font-size: 16px;
        line-height: 30px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .blog-section {
        padding: 70px 0;
    }

    .blog-tag {
        font-size: 11px;
        padding: 10px 22px;
        letter-spacing: 2px;
    }

    .blog-title {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .blog-title span {
        display: block;
        font-size: 46px;
        margin-top: 8px;
    }

    .blog-image img {
        height: 240px;
    }

    .blog-content {
        padding-top: 18px;
    }

    .blog-content h3 {
        font-size: 24px;
    }

    .blog-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .blog-read {
        font-size: 15px;
    }

}

/*=================================
Gallery Strip
==================================*/

.gallery-strip {
    overflow: hidden;
    background: #0b2725;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .7s;
    border-radius: 0px !important;
}

.gallery-item:hover img {
    transform: scale(1.12) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 39, 37, .65);
    opacity: 0;
    transition: .4s;
}

.gallery-overlay i {
    font-size: 42px;
    color: #fff;
    transform: scale(.5);
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Shine Effect */

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    z-index: 2;
}

.gallery-item:hover::before {
    animation: galleryShine 1s;
}

@keyframes galleryShine {

    100% {
        left: 150%;
    }

}

/* Tablet */

@media(max-width:991px) {

    .gallery-item {
        height: 180px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .gallery-item {
        height: 150px;
    }

    .gallery-overlay i {
        font-size: 28px;
    }

}

/*=================================
Footer
=================================*/

.footer {
    background: #f7f2e8;
    padding: 50px 0 0;
    overflow: hidden;
    position: relative;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo-box img {
    max-width: 280px;
}

.scroll-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    min-height: 230px;
}

.scroll-text span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--heading-font);
    font-size: 14px;
    letter-spacing: 2px;
    color: #333;
}

.scroll-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 90px;
    background: var(--secondary-color);
}

.footer-title {
    font-family: var(--title-font);
    font-size: 22px;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    color: var(--secondary-color);
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: var(--heading-font);
    font-size: 17px;
    color: #666;
    text-decoration: none;
    transition: .3s;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: .4s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 30px;
    color: #777;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: .4s;
}

.footer-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 80px;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.footer-bottom p {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    color: #777;
}

.footer-bottom a {
    margin-left: 35px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 16px;
    color: #777;
    transition: .3s;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/*==========================
Tablet
==========================*/

@media(max-width:991px) {

    .footer {
        padding: 80px 0 0;
        text-align: center;
    }

    .footer-logo-box {
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }

    .scroll-text {
        display: none;
    }

    .footer-logo-box img {
        max-width: 220px;
    }

    .footer-title {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }

    .footer-bottom a {
        margin: 0 12px;
    }

}

/*==========================
Mobile
==========================*/

@media(max-width:767px) {

    .footer {
        padding: 0px 0 0;
    }

    .footer-logo-box img {
        max-width: 180px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a,
    .footer-contact {
        font-size: 15px;
    }

    .footer-social {
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        margin-top: 50px;
        padding: 20px 0;
    }

    .footer-bottom p {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .footer-bottom a {
        display: inline-block;
        margin: 5px 10px;
        font-size: 14px;
    }

}


/* about css*/

/*==========================================
About Hero
==========================================*/

.ry-about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url("../images/banner/aboutbanner.jpg") center center/cover no-repeat;
    overflow: hidden;
    padding-left: 2%;
}

.ry-about-hero .container-fluid {
    position: relative;
    z-index: 2;
}

.ry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .65);
}

.ry-about-content {
    max-width: 620px;
    padding-top: 80px;
}

.ry-about-title {
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 10px;
}

.ry-about-subtitle {
    font-family: 'Allison', cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.ry-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.ry-divider span {
    display: block;
    width: 180px;
    height: 1px;
    background: rgba(192, 142, 76, .6);
}

.ry-divider i {
    font-size: 20px;
    color: var(--secondary-color);
}

.ry-about-text {
    font-family: var(--title-font);
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 10px;
}

.ry-about-content .ry-hero-btn {
    background: #083847;
    border: none;
    border-radius: 50px;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.ry-about-content .ry-hero-btn:hover {
    background: #062a35;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

/*==========================================
Tablet
==========================================*/

@media(max-width:991px) {

    .ry-about-hero {
        min-height: 720px;
        text-align: left;
    }

    .ry-about-content {
        margin: auto;
        padding-top: 100px;
    }

    .ry-about-title {
        font-size: 60px;
    }

    .ry-about-subtitle {
        font-size: 56px;
    }

    .ry-divider {
        justify-content: center;
    }

    .ry-divider span {
        width: 120px;
    }

    .ry-about-text {
        font-size: 19px;
        line-height: 34px;
    }

}

/*==========================================
Mobile
==========================================*/

@media(max-width:767px) {

    .ry-about-hero {
        min-height: 650px;
        padding: 100px 0 60px;
    }

    .ry-about-title {
        font-size: 42px;
    }

    .ry-about-subtitle {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .ry-divider {
        gap: 12px;
        margin-bottom: 25px;
    }

    .ry-divider span {
        width: 60px;
    }

    .ry-divider i {
        font-size: 16px;
    }

    .ry-about-text {
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .ry-about-content .ry-hero-btn {
        padding: 15px 32px;
        font-size: 15px;
    }

}

/*==================================
Our Story
==================================*/

.our-story {
    padding: 100px 0;
    background: #f8f5ef;
    overflow: hidden;
}

.story-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: .6s;
    display: block;
}

.story-image:hover img {
    transform: scale(1.08);
}

.story-content {
    padding-left: 20px;
}

.story-tag {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0b2725;
    margin-bottom: 18px;
}

.story-title {
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #202020;
    margin-bottom: 12px;
}

.story-subtitle {
    font-family: 'Allison', cursive;
    font-size: 62px;
    font-weight: 400;
    line-height: 1;
    color: #232323;
    margin-bottom: 08px;
}

.story-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.story-divider span {
    width: 110px;
    height: 1px;
    background: #d9c2a1;
}

.story-divider i {
    font-size: 18px;
    color: var(--secondary-color);
}

.story-text {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 28px;
    color: #555;
    margin-bottom: 10px;
}

.story-divider-center {
    justify-content: center;
    width: 100%;
    margin: 0 auto 10px;
}

/*==================================
Responsive
==================================*/

@media(max-width:991px) {

    .our-story {
        padding: 0px 0;
    }

    .story-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .story-image img {
        height: 500px;
    }

    .story-title {
        font-size: 36px;
    }

    .story-subtitle {
        font-size: 52px;
    }

    .story-text {
        font-size: 18px;
        line-height: 26px;
        font-family: var(--title-font);
    }

    .story-divider span {
        width: 80px;
    }

}

@media(max-width:767px) {

    .our-story {
        padding: 30px 0;
    }

    .story-image img {
        height: 360px;
    }

    .story-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .story-subtitle {
        font-size: 40px;
    }

    .story-text {
        font-size: 18px;
        line-height: 28px;
    }

    .story-divider {
        justify-content: center;
    }

    .story-divider span {
        width: 55px;
    }

    .story-content {
        text-align: center;
    }

}

/*==================================
Explorer Section
==================================*/

.explorer-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%);
    overflow: hidden;
    position: relative;
}

.section-heading {
    margin-bottom: 70px;
}

.section-tag {
    display: block;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.section-icon {
    font-size: 18px;
    color: var(--secondary-color);
}

/* Images */

.explorer-img {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.explorer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.explorer-img:hover img {
    transform: scale(1.08);
}

/* Middle */

.explorer-border {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.explorer-box {
    padding: 0 35px;
    position: relative;
}

.explorer-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.explorer-title i {
    font-size: 42px;
    color: var(--secondary-color);
}

.explorer-title h3 {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.explorer-box h4 {
    font-family: 'Allison', cursive;
    font-size: 32px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 35px;
}

.explorer-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 20px;
}

.explorer-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--title-font);
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 28px;
    transition: .35s;
}

.explorer-box ul li:last-child {
    margin-bottom: 0;
}

.explorer-box ul li i {
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 4px;
    min-width: 22px;
}

.explorer-box ul li:hover {
    transform: translateX(8px);
}

/* Center Logo */

.center-logo {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #0b2725;
    border: 2px solid rgba(172, 113, 42, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    z-index: 5;
}

.center-logo img {
    width: 38px;
}

/*==================================
Responsive
==================================*/

@media(max-width:991px) {

    .explorer-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .explorer-img {
        margin-bottom: 35px;
    }

    .explorer-img img {
        height: 100%;
    }

    .explorer-border {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .explorer-box {
        padding: 0;
    }

    .center-logo {
        display: none;
    }

}

@media(max-width:767px) {

    .explorer-section {
        padding: 80px 0;
    }

    .section-tag {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .explorer-img {
        
        border-radius: 0px;
        
        
    }

    .explorer-img img {
        height: 100%;
        width: 80%;
        display: block;
        margin: 0 auto;

    }
   .tourist-img{

    padding-top: 30px;
   }

    .explorer-title {
        justify-content: center;
    }

    .explorer-title h3 {
        font-size: 30px;
    }

    .explorer-box {
        text-align: center;
    }

    .explorer-box h4 {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .explorer-box ul li {
        font-size: 17px;
        line-height: 28px;
        justify-content: center;
        text-align: left;
    }

}

/*==================================
Mission & Vision
==================================*/

.mission-vision {
    padding: 0px 0;
    background: #f8f5ef;
    overflow: hidden;
}

.vision-box {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.vision-icon {
    width: 130px;
    height: 130px;
    min-width: 130px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
    transition: .4s;
}

.vision-icon i {
    font-size: 58px;
    color: var(--secondary-color);
    transition: .4s;
}

.vision-box:hover .vision-icon {
    transform: translateY(-8px);
}

.vision-box:hover .vision-icon i {
    transform: scale(1.1);
}

.vision-content span {
    display: block;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0b2725;
    margin-bottom: 18px;
}

.vision-content p {
    font-family: var(--title-font);
    font-size: 18px;
    line-height: 28px;
    color: #444;
    margin: 0;
}

/*==========================
Center Divider
==========================*/

.vision-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vision-divider span {
    width: 2px;
    height: 120px;
    background: #d8d0c3;
}

.vision-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(172, 113, 42, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.vision-logo img {
    width: 38px;
    height: auto;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .mission-vision {
        padding: 0px 0;
    }

    .vision-box {
        margin-bottom: 40px;
    }

    .vision-divider {
        display: none;
    }

}

@media(max-width:767px) {

    .mission-vision {
        padding: 30px 0;
    }

    .vision-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .vision-icon {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .vision-icon i {
        font-size: 42px;
    }

    .vision-content span {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .vision-content p {
        font-size: 17px;
        line-height: 28px;
    }

}


/*==================================
Why Travel With Ryout
==================================*/

.why-ryout {
    padding: 60px 0;
    background: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%);
    overflow: hidden;
}

.why-ryout .section-heading {
    margin-bottom: 70px;
}

.why-ryout .section-tag {
    display: block;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-divider span {
    width: 90px;
    height: 1px;
    background: rgba(255, 255, 255, .18);
}

.section-divider i {
    font-size: 18px;
    color: var(--secondary-color);
}

.why-box {
    padding: 10px 35px;
    text-align: center;
    height: 100%;
    transition: .4s;
}

.why-box.border-end {
    border-right: 1px solid rgba(255, 255, 255, .15) !important;
}

.why-icon {
    margin-bottom: 28px;
}

.why-icon i {
    font-size: 62px;
    color: var(--secondary-color);
    transition: .4s;
}

.why-box h3 {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.why-box p {
    font-family: var(--title-font);
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}

.why-box:hover {
    transform: translateY(-8px);
}

.why-box:hover .why-icon i {
    transform: scale(1.15) rotate(5deg);
    color: #d89b43;
}

/*==================================
Responsive
==================================*/

@media(max-width:991px) {

    .why-ryout {
        padding: 40px 0;
    }

    .why-box {
        padding: 35px 20px;
        margin-bottom: 35px;
    }

    .why-box.border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .15) !important;
    }

    .why-box h3 {
        font-size: 24px;
    }

    .why-icon i {
        font-size: 54px;
    }

}

@media(max-width:767px) {

    .why-ryout {
        padding: 30px 0;
    }

    .why-ryout .section-heading {
        margin-bottom: 50px;
    }

    .why-ryout .section-tag {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .section-divider span {
        width: 45px;
    }

    .why-box {
        padding: 30px 15px;
    }

    .why-icon {
        margin-bottom: 20px;
    }

    .why-icon i {
        font-size: 48px;
    }

    .why-box h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .why-box p {
        font-size: 17px;
        line-height: 28px;
    }

}


/*==================================
Journey CTA
==================================*/

.journey-cta {
    position: relative;
    padding: 90px 0;
  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 25, 28, .58);
}

.journey-cta .container {
    position: relative;
    z-index: 2;
}

.journey-content {
    max-width: 620px;
}

.journey-title {
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 10px;
}

.journey-subtitle {
    font-family: 'Allison', cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.journey-text {
    font-family: var(--title-font);
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 10px;
}

.journey-content .cta-btn {
    padding: 10px 22px;
    border-radius: 50px;
}

/* Optional Hover */

.journey-content .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

/*==================================
Responsive
==================================*/

@media(max-width:991px) {

    .journey-cta {
        padding: 50px 0;
        text-align: center;
    }

    .journey-cta {
        background-attachment: scroll;
        background-position: center;
    }

    .journey-content {
        margin: auto;
    }

    .journey-title {
        font-size: 48px;
    }

    .journey-subtitle {
        font-size: 52px;
    }

    .journey-text {
        font-size: 19px;
        line-height: 34px;
    }

}

@media(max-width:767px) {

    .journey-cta {
        padding: 70px 0;
    }

    .journey-title {
        font-size: 36px;
    }

    .journey-subtitle {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .journey-text {
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 28px;
    }

    .journey-content .cta-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

}



.travel-packages {
    background: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%);
    padding: 80px 0;
}

.section-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1f7a53;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    font-family: Georgia, serif;
    color: #fff;
    margin-bottom: 0;
}

.section-titledk {
    color: #222;
}

.package-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.package-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.package-card:hover .package-img img {
    transform: scale(1.08);
}

.days-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #0f6b48;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.package-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 60%;
}

.package-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.location {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.location i {
    color: #0f6b48;
    margin-right: 6px;
}

.desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 18px;
    min-height: 70px;
}

.price {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}

.price strong {
    font-size: 24px;
    font-weight: 700;
    color: #0f6b48;
}

.price span {
    color: #777;
    font-size: 14px;
}

.btn-view {
    display: block;
    width: 100%;
    background: #0f6b48;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .3s;
    margin-top: auto;
}

.btn-view:hover {
    background: #084b33;
    color: #fff;
}

@media(max-width:1399px) {
    .package-img {
        height: 180px;
    }
}

@media(max-width:1199px) {
    .section-title {
        font-size: 24px;
    }

    .package-img {
        height: 210px;
    }
}

@media(max-width:991px) {
    .travel-packages {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .package-img {
        height: 240px;
    }
}

@media(max-width:767px) {
    .travel-packages {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .package-img {
        height: 220px;
    }

    .package-content {
        padding: 18px;
    }

    .package-content h5 {
        font-size: 20px;
    }

    .price strong {
        font-size: 22px;
    }
}

@media(max-width:575px) {
    .section-subtitle {
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
    }

    .package-img {
        height: 210px;
    }

    .desc {
        min-height: auto;
    }
}


/*package details css*/


.package-details-section {
    background: #063d33;
    padding: 80px 0;
    overflow: hidden;
    padding-top: 12%;
}

.breadcrumb-wrap {
    margin-bottom: 30px;
    font-size: 20px;
    color: #cfdad5;
}

.breadcrumb-wrap a {
    color: #cfdad5;
    text-decoration: none;
}

.breadcrumb-wrap span {
    margin: 0 6px;
}

.main-image {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 35px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}

.gallery-arrow {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: #d28a3c;
    border-color: #d28a3c;
}

.thumb-images {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumb-images::-webkit-scrollbar {
    display: none;
}

.thumb {
    flex: 0 0 165px;
    height: 105px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: .3s;
}

.thumb.active {
    border-color: #d28a3c;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.thumb:hover img {
    transform: scale(1.08);
}

.package-info {
    color: #fff;
}

.days-tag {
    display: inline-block;
    background: #0c6b56;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-info h1 {
    font-size: 36px;
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.package-location {
    color: #ddd;
    margin-bottom: 20px;
}

.package-location i {
    color: #d28a3c;
    margin-right: 8px;
}

.package-description {
    line-height: 1.9;
    color: #d6d6d6;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: (var(--title-font));
}

.package-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.feature-box i {
    font-size: 24px;
    color: #d28a3c;
    margin-bottom: 12px;
}

.feature-box h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.feature-box span {
    font-size: 14px;
    color: #bfc8c3;
}

.package-info hr {
    border-color: rgba(255, 255, 255, .15);
    margin: 0px 0;
    margin-top: 10px;
}

.price-box p {
    font-size: 18px;
    margin-bottom: 8px;
    color: #d6d6d6;
}

.price-box h2 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 30px;
}

.price-box span {
    font-size: 28px;
    font-weight: 400;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.book-btn {
    background: #d28a3c;
    padding: 16px 42px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.book-btn:hover {
    background: #bb7428;
    color: #fff;
}

.wishlist-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.wishlist-btn:hover {
    background: #d28a3c;
    border-color: #d28a3c;
    color: #fff;
}

.highlight-card ul {
    list-style: none;
    padding-left: 0;
}

.highlight-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.highlight-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
}

@media(max-width:1199px) {
    .package-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-info h1 {
        font-size: 38px;
    }

    .price-box h2 {
        font-size: 46px;
    }
}

@media(max-width:991px) {
    .main-image img {
        height: 380px;
    }

    /* .package-info {
        margin-top: 40px;
    } */
}

@media (max-width:767px) {

    .package-details-section {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .main-image img {
        height: 280px;
    }

    .thumb {
        flex: 0 0 120px;
        height: 80px;
    }

    .gallery-arrow {
        width: 48px;
        height: 48px;
    }

    /* Two icons per row */
    .package-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        margin-bottom: 30px;
    }

    .feature-box {
        text-align: left;
    }

    .feature-box i {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .feature-box h6 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .feature-box span {
        font-size: 14px;
        line-height: 1.4;
    }

    .package-info h1 {
        font-size: 30px;
    }

    .price-box h2 {
        font-size: 34px;
    }

    .book-btn {
        width: 100%;
        text-align: center;
    }

}

/*
@media(max-width:575px){
.package-features{
grid-template-columns:1fr;
}
.action-buttons{
flex-wrap:wrap;
}
.wishlist-btn{
width:50px;
height:50px;
}
}*/

@media (max-width:575px) {

    .package-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px;
    }



    .wishlist-btn {
        width: 50px;
        height: 50px;
    }

}

.overview-section {
    padding: 80px 0;
    background: #fdfbf7;
}

.overview-content .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0b6b55;
    margin-bottom: 12px;
}

.overview-content h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: Georgia, serif;
    color: #1d1d1d;
    margin-bottom: 18px;
    line-height: 1.2;
}

.title-divider {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.title-divider::before {
    content: "";
    width: 65px;
    height: 2px;
    background: #d6d6d6;
}

.title-divider span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0b6b55;
    margin-left: 12px;
    position: relative;
}

.title-divider span::after {
    content: "✦";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: #fff;
}

.overview-content p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 18px;
    font-family: var(--title-font);
}

.overview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 40px;
}

.overview-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: #0b6b55;
}

.overview-feature h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #222;
}

.overview-feature p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.highlight-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.highlight-card h5 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0b6b55;
    margin-bottom: 28px;
}

.highlight-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.highlight-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.6;
}

.highlight-card li:last-child {
    margin-bottom: 0;
}

.highlight-card li i {
    color: #0b6b55;
    margin-top: 4px;
    font-size: 14px;
}

@media(max-width:1199px) {
    .overview-content h2 {
        font-size: 36px;
    }
}

@media(max-width:991px) {
    .overview-section {
        padding: 70px 0;
    }

    .highlight-card {
        margin-top: 10px;
    }
}

@media(max-width:767px) {
    .overview-section {
        padding: 30px 0;
    }

    .overview-content h2 {
        font-size: 30px;
    }

    .overview-features {
        flex-direction: column;
        gap: 22px;
    }

    .highlight-card {
        padding: 25px;
    }

    .highlight-card li {
        font-size: 15px;
    }

    .overview-content p {
        font-size: 15px;
    }
}

@media(max-width:575px) {
    .overview-content h2 {
        font-size: 26px;
    }

    .highlight-card {
        padding: 20px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 18px;
    }
}

/*contactuspage*/

.contact-info-section {
    padding: 80px 0;
    background: #fdfbf7;
}

.contact-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.contact-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0a5a4b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: .35s;
}

.contact-card:hover .contact-icon {
    background: #c8893a;
    transform: rotate(8deg);
}

.contact-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-card h3 {
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 700;
    color: #17342e;
    margin-bottom: 12px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #c8893a;
    border-radius: 30px;
    margin: 0 auto 25px;
}

.contact-card p {
    font-size: 19px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 0;
    font-weight: 800;
}

.contact-card p+p {
    margin-top: 4px;
}

.footer-contact-value {
    margin-left: 8px;
    font-size: 20px;
    font-weight: 400;
}

.footer-contact-value a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-value a:hover {
    color: inherit;
    text-decoration: none;
}

@media(max-width:1199px) {
    .contact-card {
        padding: 35px 20px;
    }

    .contact-card h3 {
        font-size: 28px;
    }
}

@media(max-width:991px) {
    .contact-info-section {
        padding: 70px 0;
    }

    .contact-card {
        margin-bottom: 10px;
    }
}

@media(max-width:767px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .contact-icon i {
        font-size: 24px;
    }

    .contact-card h3 {
        font-size: 24px;
    }

    .contact-card p {
        font-size: 20px;
        line-height: 1.8;
    }
}

@media(max-width:575px) {
    .contact-info-section {
        padding: 50px 0;
    }

    .contact-card {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 22px;
    }

    .contact-card h3 {
        font-size: 22px;
    }

    .title-line {
        width: 50px;
        margin-bottom: 20px;
    }
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #0b2725 0%, #103b37 50%, #0b2725 100%);

}

.contact-form-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    height: 100%;
}

.section-heading {
    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 22px;
    font-family: Georgia, serif;
    font-weight: 700;
    color: #17342e;
    margin-bottom: 15px;
}

.heading-line {
    width: 70px;
    height: 3px;
    background: #c8893a;
    margin: 0 auto 18px;
    border-radius: 30px;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.contact-form-card .form-control {
    height: 55px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 15px;
    box-shadow: none;
    transition: .3s;
}

.contact-form-card textarea.form-control {
    height: 160px;
    padding: 15px 18px;
    resize: none;
}

.contact-form-card .form-control:focus {
    border-color: #0a5a4b;
    box-shadow: 0 0 0 .15rem rgba(10, 90, 75, .15);
}

.contact-form-card .form-control::placeholder {
    color: #9a9a9a;
}

.send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 42px;
    background: #0a5a4b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.send-btn:hover {
    background: #c8893a;
    color: #fff;
}

.send-btn i {
    font-size: 15px;
}

.map-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    background: #fff;
    min-height: 620px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media(max-width:1199px) {
    .contact-form-card {
        padding: 35px;
    }

    .section-heading h2 {
        font-size: 22px;
    }
}

@media(max-width:991px) {
    .contact-form-section {
        padding: 70px 0;
    }

    .map-card {
        min-height: 450px;
        margin-top: 20px;
    }
}

@media(max-width:767px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 25px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .contact-form-card .form-control {
        height: 50px;
        font-size: 14px;
    }

    .contact-form-card textarea.form-control {
        height: 140px;
    }

    .send-btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    .map-card {
        min-height: 350px;
    }
}

@media(max-width:575px) {
    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form-card {
        padding: 20px;
        border-radius: 16px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .heading-line {
        width: 55px;
    }

    .map-card {
        border-radius: 16px;
        min-height: 300px;
    }
}


/*gallary*/

.gallery-section {
    padding: 90px 0;
    background: #fdfbf7;
}

.gallery-section .section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.gallery-section .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0b5c4b;
    margin-bottom: 10px;
}

.gallery-section .section-heading h2 {
    font-size: 36px;
    font-family: Georgia, serif;
    font-weight: 700;
    color: #18352e;
    margin-bottom: 18px;
}

.gallery-section .section-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: .35s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0b5c4b;
    color: #fff;
    border-color: #0b5c4b;
}

.gallery-item {
    transition: .4s;
}

.gallery-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
}

.gallery-link img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 53, 44, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .35s;
}

.gallery-overlay i {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    color: #0b5c4b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transform: scale(.7);
    transition: .35s;
}

.gallery-link:hover img {
    transform: scale(1.12);
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.gallery-link:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item.hide {
    display: none;
}

@media(max-width:1199px) {
    .gallery-link img {
        height: 240px;
    }

    .gallery-section .section-heading h2 {
        font-size: 40px;
    }
}

@media(max-width:991px) {
    .gallery-section {
        padding: 70px 0;
    }

    .gallery-link img {
        height: 230px;
    }

    .gallery-filter {
        gap: 12px;
    }
}

@media(max-width:767px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-section .section-heading h2 {
        font-size: 32px;
    }

    .gallery-section .section-heading p {
        font-size: 15px;
    }

    .filter-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .gallery-link img {
        height: 220px;
    }

    .gallery-overlay i {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

@media(max-width:575px) {
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-section .section-heading h2 {
        font-size: 28px;
    }

    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .gallery-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .gallery-link img {
        height: 200px;
        border-radius: 12px;
    }
}

.travel-blog-section {
    padding: 80px 0;
    background: #fdfbf7;
}

.travel-blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.travel-filter-btn {
    padding: 12px 24px;
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: .3s;
}

.travel-filter-btn.active,
.travel-filter-btn:hover {
    background: #0b5b4a;
    color: #fff;
    border-color: #0b5b4a;
}

.travel-blog-card {
    display: flex;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 30px;
    transition: .35s;
}

.travel-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.travel-blog-image {
    width: 290px;
    flex-shrink: 0;
    overflow: hidden;
}

.travel-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.travel-blog-card:hover .travel-blog-image img {
    transform: scale(1.08);
}

.travel-blog-content {
    padding: 28px;
    flex: 1;
}

.travel-blog-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0b5b4a;
    margin-bottom: 10px;
}

.travel-blog-content h3 {
    font-size: 30px;
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 15px;
}

.travel-blog-content h3 a {
    color: #17342e;
    text-decoration: none;
    transition: .3s;
}

.travel-blog-content h3 a:hover {
    color: #0b5b4a;
}

.travel-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.travel-blog-meta i {
    color: #0b5b4a;
    margin-right: 6px;
}

.travel-blog-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

.travel-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #0b5b4a;
    transition: .3s;
}

.travel-read-more:hover {
    color: #c88a39;
}

.travel-sidebar-search {
    margin-bottom: 30px;
}

.travel-sidebar-search form {
    display: flex;
}

.travel-sidebar-search input {
    width: 100%;
    height: 55px;
    border: 1px solid #e5e5e5;
    border-right: none;
    padding: 0 18px;
    border-radius: 10px 0 0 10px;
    outline: none;
}

.travel-sidebar-search input:focus {
    border-color: #0b5b4a;
}

.travel-sidebar-search button {
    width: 60px;
    border: none;
    background: #0b5b4a;
    color: #fff;
    border-radius: 0 10px 10px 0;
}

.travel-sidebar-widget {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 30px;
}

.travel-sidebar-widget h4 {
    font-size: 28px;
    font-family: Georgia, serif;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.travel-sidebar-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: #c88a39;
}

.travel-sidebar-widget p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.travel-popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.travel-popular-post:last-child {
    margin-bottom: 0;
}

.travel-popular-post img {
    width: 90px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.travel-popular-post h6 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.travel-popular-post h6 a {
    text-decoration: none;
    color: #17342e;
    transition: .3s;
}

.travel-popular-post h6 a:hover {
    color: #0b5b4a;
}

.travel-popular-post span {
    font-size: 13px;
    color: #888;
}

.travel-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.travel-category-list li {
    border-bottom: 1px solid #ececec;
    padding: 13px 0;
}

.travel-category-list li:last-child {
    border: none;
}

.travel-category-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    transition: .3s;
}

.travel-category-list a:hover {
    color: #0b5b4a;
    padding-left: 5px;
}

.travel-newsletter-form input {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 16px;
    margin: 18px 0;
    outline: none;
}

.travel-newsletter-form input:focus {
    border-color: #0b5b4a;
}

.travel-newsletter-form button {
    width: 100%;
    height: 52px;
    background: #0b5b4a;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.travel-newsletter-form button:hover {
    background: #c88a39;
}

.travel-blog-cta {
    background: #083d34;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    color: #fff;
}

.travel-blog-cta i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    border: 2px solid #c88a39;
    color: #c88a39;
    font-size: 30px;
    margin-bottom: 20px;
}

.travel-blog-cta h3 {
    font-size: 32px;
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.travel-blog-cta p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 25px;
}

.travel-blog-cta a {
    display: inline-block;
    padding: 14px 34px;
    background: #c88a39;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.travel-blog-cta a:hover {
    background: #fff;
    color: #0b5b4a;
}

.travel-blog-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.travel-blog-pagination a,
.travel-blog-pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: .3s;
}

.travel-blog-pagination a.active,
.travel-blog-pagination a:hover {
    background: #0b5b4a;
    color: #fff;
    border-color: #0b5b4a;
}

.travel-blog-pagination a:last-child {
    width: auto;
    padding: 0 18px;
}

@media(max-width:1199px) {
    .travel-blog-content h3 {
        font-size: 26px;
    }
}

@media(max-width:991px) {
    .travel-blog-card {
        flex-direction: column;
    }

    .travel-blog-image {
        width: 100%;
        height: 260px;
    }

    .travel-sidebar-search,
    .travel-sidebar-widget,
    .travel-blog-cta {
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .travel-blog-section {
        padding: 60px 0;
    }

    .travel-blog-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .travel-blog-filter::-webkit-scrollbar {
        display: none;
    }

    .travel-filter-btn {
        white-space: nowrap;
    }

    .travel-blog-content {
        padding: 22px;
    }

    .travel-blog-content h3 {
        font-size: 22px;
    }

    .travel-blog-meta {
        gap: 10px;
        font-size: 13px;
    }

    .travel-sidebar-widget {
        padding: 22px;
    }

    .travel-sidebar-widget h4 {
        font-size: 24px;
    }

    .travel-blog-cta {
        padding: 28px;
    }

    .travel-blog-cta h3 {
        font-size: 26px;
    }
}

@media(max-width:575px) {
    .travel-blog-image {
        height: 220px;
    }

    .travel-blog-content {
        padding: 20px;
    }

    .travel-blog-pagination {
        justify-content: center;
    }
}

/* popup*/

/*==========================
Travel Popup
===========================*/

.travel-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgb(180 180 180 / 44%);

    display: none;
    justify-content: center;
    align-items: center;

    padding: 20px;
    box-sizing: border-box;

    z-index: 99999;

    overflow-y: auto;
}

.travel-popup-overlay.active {
    display: flex;
}


/* ================================
   POPUP
================================ */
.travel-popup {
    width: 100%;
    max-width: 950px;

    max-height: 90vh;

    border-radius: 24px;
    overflow: hidden;

    position: relative;

    background:
        linear-gradient(rgba(7, 18, 25, 0.88),
            rgba(7, 18, 25, 0.88)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center / cover;

    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.65);

    animation: popupZoom 0.35s ease;
}


/* Popup animation */
@keyframes popupZoom {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ================================
   POPUP CONTENT
================================ */
.travel-popup-content {
    padding: 38px 45px 42px;
}


/* ================================
   CLOSE BUTTON
================================ */
.travel-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    cursor: pointer;

    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    transition: 0.3s ease;
}

.travel-popup-close:hover {
    background: #fff;
    color: #111;
    transform: rotate(90deg);
}


/* ================================
   POPUP TAG
================================ */
.popup-tag {
    display: flex;
    width: fit-content;

    gap: 8px;

    padding: 8px 15px;

    border: 1px solid #d9b45b;
    border-radius: 30px;

    color: #e6c16d;

    margin: 0 auto 18px;

    font-size: 13px;
}


/* ================================
   HEADING
================================ */
.travel-popup h2 {
    text-align: center;

    font-size: 46px;
    line-height: 1.1;
    color: white;
    margin: 0 0 12px;
}

.travel-popup h2 span {
    color: #41d9d3;
}

.travel-popup h2 strong {
    color: #efc055;
}


/* ================================
   SUBTITLE
================================ */
.subtitle {
    text-align: center;

    max-width: 620px;

    margin: 0 auto 28px;

    color: #ddd;

    font-size: 14px;
    line-height: 1.6;
}


/* ================================
   CARDS WRAPPER
================================ */
.travel-selection {
    display: flex;

    gap: 20px;

    width: 100%;
}


/* ================================
   TRAVEL CARD
================================ */
.travel-card {
    flex: 1;

    min-height: 390px;

    border-radius: 18px;

    overflow: hidden;

    text-decoration: none;
    color: #fff;

    position: relative;

    display: flex;
    align-items: flex-end;

    background-size: cover;
    background-position: center;

    transition: 0.35s ease;
}

.travel-card:hover {
    transform: translateY(-5px);
}


/* Traveler */
.traveler {
    background-image:
        linear-gradient(rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .85)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");

    border: 2px solid #39d9d3;
}


/* Tourist */
.tourist {
    background-image:
        linear-gradient(rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .85)),
        url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=80");

    border: 2px solid #efc055;
}


/* ================================
   ICON
================================ */
.travel-icon {
    position: absolute;

    top: 22px;
    left: 50%;

    transform: translateX(-50%);

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 25px;

    background: #18b8b4;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
}

.tourist .travel-icon {
    background: #d9a322;
}


/* ================================
   CARD CONTENT
================================ */
.card-content {
    padding: 25px;

    text-align: center;

    width: 100%;

    box-sizing: border-box;
}


.card-content h3 {
    font-size: 34px;

    margin: 0 0 5px;
}


.card-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #63efe7;

    font-size: 13px;
}

.tourist .card-subtitle {
    color: #ffd36d;
}


/* ================================
   FEATURES
================================ */
.card-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 7px;

    list-style: none;

    padding: 0;
    margin: 12px 0;
}

.card-features li {
    background: rgba(255, 255, 255, .09);

    padding: 8px;

    border-radius: 7px;

    font-size: 12px;
}

.travel-popup h2 {
    text-align: center;
    font-size: 46px;
    line-height: 1.15;
    margin: 0 0 12px;

    position: relative;
}


/* Traveler - cyan light wave */
.travel-popup h2 span {
    color: #41d9d3;

    background: linear-gradient(120deg,
            #41d9d3 20%,
            #ffffff 40%,
            #41d9d3 60%);

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    animation: textLightWave 3s linear infinite;
}


/* Tourist - gold light wave */
.travel-popup h2 strong {
    color: #efc055;

    background: linear-gradient(120deg,
            #efc055 20%,
            #fff8d6 40%,
            #efc055 60%);

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    animation: goldLightWave 3s linear infinite;
}


/* Cyan wave */
@keyframes textLightWave {

    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }

}


/* Gold wave */
@keyframes goldLightWave {

    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }

}


/* ================================
   BUTTON
================================ */

.travel-btn {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    padding: 11px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    background: linear-gradient(90deg, #0b5b4a, #0f7f69);
    animation: floatingButton 2.8s ease-in-out infinite;
    box-shadow:
        0 8px 20px rgba(15, 127, 105, 0.25);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tourist .travel-btn {
    background: linear-gradient(90deg, #b8830d, #efc055);

    color: #111;

    box-shadow:
        0 8px 20px rgba(239, 192, 85, 0.25);
}

@keyframes floatingButton {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


.travel-card:hover .travel-btn {
    animation-play-state: paused;

    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(255, 255, 255, 0.18);
}



/* ================================
   TABLET
================================ */
@media (max-width: 900px) {

    .travel-popup {
        max-width: 700px;
        max-height: 92vh;
    }

    .travel-popup-content {
        padding: 35px 30px;
    }

    .travel-popup h2 {
        font-size: 38px;
    }

    .travel-selection {
        gap: 15px;
    }

    .travel-card {
        min-height: 350px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 30px;
    }
}


/* ================================
   MOBILE
================================ */
@media (max-width: 600px) {

    .travel-popup-overlay {
        padding: 12px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .travel-popup {
        width: 100%;
        max-width: 100%;

        max-height: 94vh;

        border-radius: 18px;

        overflow-y: auto;
    }

    .travel-popup-content {
        padding: 28px 18px 25px;
    }


    /* Close */
    .travel-popup-close {
        top: 10px;
        right: 10px;

        width: 38px;
        height: 38px;

        font-size: 16px;
    }


    /* Tag */
    .popup-tag {
        font-size: 11px;

        padding: 7px 12px;

        margin-bottom: 14px;
    }


    /* Heading */
    .travel-popup h2 {
        font-size: 30px;

        line-height: 1.15;

        padding: 0 25px;

        margin-bottom: 10px;
    }


    /* Subtitle */
    .subtitle {
        font-size: 12px;

        line-height: 1.5;

        margin-bottom: 20px;

        padding: 0 8px;
    }


    /* Stack cards */
    .travel-selection {
        flex-direction: column;

        gap: 14px;
    }


    /* Smaller cards */
    .travel-card {
        min-height: 300px;

        flex: none;

        width: 100%;
    }


    /* Icon */
    .travel-icon {
        width: 52px;
        height: 52px;

        top: 18px;

        font-size: 20px;
    }


    /* Content */
    .card-content {
        padding: 18px 15px;
    }


    .card-content h3 {
        font-size: 27px;
    }


    .card-subtitle {
        font-size: 11px;

        margin-bottom: 9px;
    }


    /* Features */
    .card-features {
        gap: 5px;

        margin: 9px 0;
    }

    .card-features li {
        font-size: 10px;

        padding: 7px 4px;
    }


    /* Button */
    .travel-btn {
        padding: 9px 16px;

        font-size: 11px;

        margin-top: 7px;
    }
}


/* ================================
   VERY SMALL MOBILE
================================ */
@media (max-width: 380px) {

    .travel-popup-content {
        padding: 25px 14px 20px;
    }

    .travel-popup h2 {
        font-size: 26px;
    }

    .travel-card {
        min-height: 275px;
    }

    .card-content h3 {
        font-size: 24px;
    }
}


/* ==============================
   BLOG DETAIL CONTENT
================================ */

.blog-detail-content {
    width: 100%;
    background: #fff;
}

/* Featured Image */

.blog-detail-image {
    width: 100%;
    height: 420px;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 16px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* Category */

.blog-detail-category {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #076b5b;
}


/* Title */

.blog-detail-title {
    margin: 0 0 20px;

    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;

    color: #252525;
}


/* Meta */

.blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;

    margin-bottom: 24px;

    font-size: 13px;
    color: #555;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.blog-detail-meta i {
    font-size: 13px;
    color: #0b6b5b;
}


/* Share */

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 32px;
}

.share-title {
    margin-right: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.blog-detail-share a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    font-size: 14px;

    text-decoration: none;
    transition: 0.3s ease;
}

.blog-detail-share a:hover {
    transform: translateY(-3px);
}


/* Social Colors */

.blog-detail-share .facebook {
    background: #4267B2;
}

.blog-detail-share .twitter {
    background: #1DA1F2;
}

.blog-detail-share .linkedin {
    background: #0077B5;
}

.blog-detail-share .pinterest {
    background: #E60023;
}

.blog-detail-share .whatsapp {
    background: #25D366;
}


/* Blog Body */

.blog-detail-body {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.blog-detail-body p {
    margin-bottom: 16px;
}

.blog-detail-body h3 {
    margin: 22px 0 8px;

    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;

    color: #07594e;
}


/* Quote */

.blog-detail-quote {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    margin: 25px 0;
    padding: 15px 30px;

    background: #faf4e9;

    border-left: 4px solid #d89a32;
    border-radius: 0 8px 8px 0;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 55px;
    line-height: 1;
    color: #d89a32;
}

.blog-detail-quote p {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.blog-detail-quote span {
    font-size: 13px;
    color: #555;
}


/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .blog-detail-image {
        height: 350px;
    }

    .blog-detail-title {
        font-size: 32px;
    }

}


@media (max-width: 767px) {

    .blog-detail-image {
        height: 260px;
        border-radius: 12px;
    }

    .blog-detail-title {
        font-size: 27px;
    }

    .blog-detail-title br {
        display: none;
    }

    .blog-detail-meta {
        gap: 12px 18px;
    }

    .blog-detail-quote {
        padding: 20px;
    }

}


@media (max-width: 480px) {

    .blog-detail-image {
        height: 220px;
    }

    .blog-detail-title {
        font-size: 24px;
    }

    .blog-detail-share {
        flex-wrap: wrap;
    }

}

/* =========================================
   TRAVEL NEWS SECTION
========================================= */

.travel-news-section {
    padding: 70px 0 80px;
    background: #faf8f4;
}


/* =========================================
   NEWS FILTER BUTTONS
========================================= */

.travel-news-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 35px;
}

.news-filter-btn {
    padding: 11px 22px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: #ffffff;

    font-size: 13px;
    font-weight: 500;
    color: #555;

    cursor: pointer;
    transition: all 0.3s ease;
}

.news-filter-btn:hover,
.news-filter-btn.active {
    background: #07594e;
    border-color: #07594e;
    color: #ffffff;
}


/* =========================================
   NEWS ITEM
========================================= */

.news-item {
    display: flex;
}


/* =========================================
   NEWS CARD
========================================= */

.travel-news-card {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    transition: transform 0.35s ease,
        box-shadow 0.35s ease;
}

.travel-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* =========================================
   NEWS IMAGE
========================================= */

.travel-news-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.travel-news-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.travel-news-card:hover .travel-news-image img {
    transform: scale(1.07);
}


/* =========================================
   NEWS CONTENT
========================================= */

.travel-news-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 18px 18px 20px;
}


/* =========================================
   CATEGORY + DATE
========================================= */

.travel-news-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    margin-bottom: 13px;
}

.travel-news-category {
    display: inline-block;

    padding: 5px 9px;

    background: #dcefe9;
    border-radius: 5px;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    color: #076b5b;
    text-transform: uppercase;
    white-space: nowrap;
}

.travel-news-date {
    display: flex;
    align-items: center;
    gap: 5px;

    font-size: 10px;
    color: #777;
    white-space: nowrap;
}

.travel-news-date i {
    font-size: 10px;
    color: #07594e;
}


/* =========================================
   NEWS TITLE
========================================= */

.travel-news-content h3 {
    margin: 0 0 10px;

    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.travel-news-content h3 a {
    color: #222222;
    text-decoration: none;

    transition: color 0.3s ease;
}

.travel-news-content h3 a:hover {
    color: #07594e;
}


/* =========================================
   NEWS DESCRIPTION
========================================= */

.travel-news-content p {
    margin: 0 0 16px;

    font-size: 13px;
    line-height: 1.6;

    color: #666666;
}


/* =========================================
   READ MORE
========================================= */

.travel-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: fit-content;

    margin-top: auto;

    font-size: 13px;
    font-weight: 600;

    color: #07594e;
    text-decoration: none;

    transition: color 0.3s ease;
}

.travel-news-read-more i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.travel-news-read-more:hover {
    color: #c58b2d;
}

.travel-news-read-more:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .travel-news-section {
        padding: 60px 0;
    }

    .travel-news-filter {
        gap: 10px;
        margin-bottom: 30px;
    }

    .news-filter-btn {
        padding: 10px 18px;
    }

    .travel-news-image {
        height: 230px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .travel-news-section {
        padding: 50px 0;
    }

    .travel-news-filter {
        flex-wrap: nowrap;

        width: 100%;

        padding-bottom: 8px;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .travel-news-filter::-webkit-scrollbar {
        display: none;
    }

    .news-filter-btn {
        flex: 0 0 auto;

        padding: 9px 17px;

        font-size: 12px;
    }

    .travel-news-image {
        height: 240px;
    }

    .travel-news-content {
        padding: 18px;
    }

    .travel-news-content h3 {
        font-size: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .travel-news-section {
        padding: 40px 0;
    }

    .travel-news-image {
        height: 210px;
    }

    .travel-news-meta-top {
        gap: 5px;
    }

    .travel-news-category {
        font-size: 8px;
    }

    .travel-news-date {
        font-size: 9px;
    }

    .travel-news-content h3 {
        font-size: 19px;
    }

    .travel-news-content p {
        font-size: 13px;
    }

}



/*mobile banners */
@media (max-width: 767px) {

    .ry-about-hero.contact-banner {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
            url("../images/banner/contact-mobile.webp") !important;
        padding-top: 10px;
    }

    .ry-about-subtitle {
        font-size: 28px;
    }

}

.ry-about-hero{
    background-image: var(--desktop-banner);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {

    .ry-about-hero{
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
            var(--mobile-banner);

        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .ry-about-subtitle {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    .ry-about-hero.blog-banner {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
            url("../images/banner/blog-mobile.webp") !important;
        padding-top: 10px;
    }

    .ry-about-subtitle {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    

    .ry-about-subtitle {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    .ry-about-hero.touristpackage-banner {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
            url("../images/banner/travelpackagelist-mobile.webp") !important;
        padding-top: 10px;
    }

    .ry-about-subtitle {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    .ry-about-hero.news-banner {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
            url("../images/banner/news-mobile.webp") !important;
        padding-top: 0px;
    }

    .ry-about-subtitle {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    .ry-about-hero.gallery-banner {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
            url("../images/banner/gallery-mobile.webp") !important;
        padding-top: 0px;
    }

    .ry-about-subtitle {
        font-size: 28px;
    }

}

@media (max-width: 767px) {
    .ry-divider {
        justify-content: flex-start !important;

    }
}

@media (max-width: 480px) {

    .ry-divider {
        justify-content: flex-start !important;

    }
}

@media (max-width: 767px) {
    .story-dividers {
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}


@media (max-width: 767px) {

    .ry-about-hero.newsdetails-banner {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
            url("../images/banner/newsdtails-mobile.webp") !important;
        padding-top: 0px;
    }

    .ry-about-subtitle {
        font-size: 24px;

    }

    .ry-about-title {
        font-size: 36px;
    }

}


/* =========================================
   customized packages page
========================================= */

/*=========================================
How It Works Section
=========================================*/

.how-it-works-section {
    position: relative;
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

.how-work-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 25px;
}

.how-work-item {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

/* Connecting Line */

.how-work-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 62%;
    width: 76%;
    height: 2px;
    background: #ac712a;
    opacity: .35;
}

/* Small Gold Dot */

.how-work-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 36px;
    right: -14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ac712a;
    z-index: 2;
}

/* Icon */

.work-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #0b5b4a;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(11, 91, 74, .18);
    transition: .35s;
    position: relative;
    z-index: 3;
}

.work-icon i {
    font-size: 32px;
    color: #ffffff;
    transition: .35s;
}

/* Number */

.step-no {
    display: block;
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 700;
    color: #ac712a;
    font-family: var(--heading-font);
    line-height: 1;
}

/* Title */

.how-work-item h4 {
    font-size: 22px;
    font-family: var(--heading-font);
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Description */

.how-work-item p {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    font-family: var(--body-font);
    max-width: 220px;
    margin-inline: auto;
}

/* Hover */

.how-work-item:hover .work-icon {
    background: var(--secondary-color);
    transform: translateY(-8px);
}

.how-work-item:hover .work-icon i {
    color: #fff;
}

.how-work-item:hover .step-no {
    color: #0b5b4a;
}

/*=========================================
Tablet
=========================================*/

@media (max-width:991px) {

    .how-work-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px 30px;
    }

    .how-work-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .how-work-item::after,
    .how-work-item::before {
        display: none;
    }

}

/*=========================================
Mobile
=========================================*/

@media (max-width:767px) {

    .how-it-works-section {
        padding: 30px 0;
    }

    .how-work-wrapper {
        display: block;
    }

    .how-work-item {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .how-work-item:last-child {
        margin-bottom: 0;
    }

    .work-icon {
        width: 74px;
        height: 74px;
    }

    .work-icon i {
        font-size: 28px;
    }

    .step-no {
        font-size: 32px;
    }

    .how-work-item h4 {
        font-size: 20px;
    }

    .how-work-item p {
        max-width: 300px;
        font-size: 16px;
    }

}

/*=========================================
Custom Trip Form Section
=========================================*/

.custom-trip-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient);
    overflow: hidden;
}

/* Small Label */

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
}

/* White Title */

.section-titlelight {
    color: #fff;
}

/* White Paragraph */

.section-text-light {
    color: rgba(255, 255, 255, .75);
    max-width: 650px;
}

/* Divider Left */

.custom-trip-section .story-divider {
    justify-content: flex-start;
    margin: 25px 0;
}

/*=========================================
Form Box
=========================================*/

.trip-form-box {
    margin-top: 10px;
}

.trip-form-box label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    font-family: var(--heading-font);
    font-weight: 500;
}

/* Inputs */

.trip-form-box .form-control,
.trip-form-box .form-select {

    height: 58px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    color: #fff;
    font-family: var(--body-font);
    font-size: 17px;
    padding: 0 18px;
    box-shadow: none;
    transition: .35s;

}

.trip-form-box textarea.form-control {

    height: 140px;
    resize: none;
    padding-top: 16px;

}

.trip-form-box .form-control::placeholder {

    color: rgba(255, 255, 255, .45);

}

.trip-form-box .form-select {

    color: rgba(255, 255, 255, .70);

}

.trip-form-box input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 1;
    cursor: pointer;
}

/* Select Arrow */

.trip-form-box .form-select {
    background-color: transparent;
}

/* Focus */

.trip-form-box .form-control:focus,
.trip-form-box .form-select:focus {

    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(172, 113, 42, .18);
    background: rgba(255, 255, 255, .03);

}

/*=========================================
Button
=========================================*/

.custom-trip-section .cta-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 42px;
    margin-top: 10px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: .5px;
    transition: .35s;
    border: none;

}

.custom-trip-section .cta-btn:hover {

    transform: translateY(-4px);
    background: #c88732;
    box-shadow: 0 15px 30px rgba(172, 113, 42, .35);
    color: #333;

}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px) {

    .custom-trip-section {

        padding: 80px 0;

    }

    .section-text-light {

        max-width: 100%;

    }

    .trip-form-box {

        margin-top: 40px;

    }

}

@media(max-width:767px) {

    .custom-trip-section {

        padding: 30px 0;

    }

    .trip-form-box .form-control,
    .trip-form-box .form-select {

        height: 54px;
        font-size: 16px;

    }

    .trip-form-box textarea.form-control {

        height: 120px;

    }

    .custom-trip-section .cta-btn {

        width: 100%;

    }

}



/* ==========================================
   TRAVEL TESTIMONIALS
========================================== */

.travel-testimonials {
    position: relative;

    padding: 100px 0 90px;

    background: #f7f3eb;

    overflow: hidden;
}


/* Decorative background */
.travel-testimonials::before {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(172, 113, 42, 0.05);

    top: -180px;
    right: -180px;

    pointer-events: none;
}

.travel-testimonials::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(11, 39, 37, 0.04);

    bottom: -180px;
    left: -150px;

    pointer-events: none;
}


/* ==========================================
   HEADING
========================================== */

.testimonial-heading {
    position: relative;

    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;

    z-index: 2;
}


.testimonial-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 17px;

    border: 1px solid #c99543;

    border-radius: 30px;

    color: #ac712a;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

    margin-bottom: 16px;
}


.testimonial-tag i {
    font-size: 11px;
}


.testimonial-heading h2 {
    margin: 0 0 12px;

    font-family: "Crimson Text", serif;

    font-size: 46px;

    line-height: 1.15;

    color: #0b2725;

    font-weight: 700;
}


.testimonial-heading h2 span {
    display: block;

    font-family: "Allison", cursive;

    font-size: 55px;

    line-height: 1;

    color: #ac712a;

    font-weight: 400;
}


.testimonial-heading p {
    max-width: 600px;

    margin: 15px auto 0;

    color: #666;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================
   SLIDER
========================================== */

.testimonial-slider {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    min-height: 440px;
}


/* ==========================================
   SLIDE
========================================== */

.testimonial-slide {
    position: absolute;

    width: 100%;

    top: 0;
    left: 0;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: stretch;

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 20px 55px rgba(11, 39, 37, 0.10);

    opacity: 0;

    visibility: hidden;

    transform: translateX(35px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        visibility 0.6s ease;
}


.testimonial-slide.active {
    position: relative;

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/* ==========================================
   MEDIA
========================================== */

.testimonial-media {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    background: #0f6b48;
}


.testimonial-media img,
.testimonial-media video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}


.testimonial-slide:hover .testimonial-media img {
    transform: scale(1.04);
}


/* ==========================================
   VIDEO
========================================== */

.video-media video {
    cursor: pointer;
}


.video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 72px;
    height: 72px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 50%;

    background: rgba(11, 39, 37, 0.82);

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 20px;

    transition: all 0.3s ease;

    z-index: 3;
}


.video-play:hover {
    background: #ac712a;

    border-color: #ac712a;

    transform: translate(-50%, -50%) scale(1.1);
}


.video-play i {
    margin-left: 4px;
}


/* ==========================================
   MEDIA BADGE
========================================== */

.media-badge {
    position: absolute;

    left: 20px;
    bottom: 20px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    border-radius: 30px;

    background: rgba(11, 39, 37, 0.88);

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    backdrop-filter: blur(8px);
}


.media-badge i {
    color: #efc055;
}


/* ==========================================
   CONTENT
========================================== */

.testimonial-content {
    position: relative;

    padding: 55px 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* Quote */
.quote-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(172, 113, 42, 0.10);

    color: #ac712a;

    font-size: 18px;

    margin-bottom: 18px;
}


/* Stars */
.testimonial-stars {
    color: #d49b36;

    font-size: 14px;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


/* Quote */
.testimonial-content blockquote {
    margin: 0 0 30px;

    color: #263c3a;

    font-family: "Crimson Text", serif;

    font-size: 24px;

    line-height: 1.55;

    font-weight: 400;
}


/* ==========================================
   PERSON
========================================== */

.testimonial-person {
    display: flex;

    align-items: center;

    gap: 13px;
}


.person-avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0f6b48;

    color: #efc055;

    font-family: "Crimson Text", serif;

    font-size: 20px;

    font-weight: 700;
}


.testimonial-person h4 {
    margin: 0 0 3px;

    color: #0b2725;

    font-family: "Jost", sans-serif;

    font-size: 14px;

    font-weight: 600;
}


.testimonial-person span {
    color: #888;

    font-size: 11px;
}


/* ==========================================
   NAVIGATION
========================================== */

.testimonial-navigation {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 30px;
}


.testimonial-arrow {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    border: 1px solid #c9a45f;

    background: transparent;

    color: #0b2725;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}


.testimonial-arrow:hover {
    background: #0b2725;

    color: #efc055;

    border-color: #0b2725;

    transform: translateY(-2px);
}


/* ==========================================
   DOTS
========================================== */

.testimonial-dots {
    display: flex;

    align-items: center;

    gap: 7px;
}


.testimonial-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    border: none;

    padding: 0;

    background: #c8c8c8;

    cursor: pointer;

    transition: all 0.3s ease;
}


.testimonial-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #ac712a;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .travel-testimonials {
        padding: 80px 0;
    }

    .testimonial-slider {
        max-width: 850px;
    }

    .testimonial-content {
        padding: 40px 35px;
    }

    .testimonial-content blockquote {
        font-size: 21px;
    }

    .testimonial-heading h2 {
        font-size: 40px;
    }

    .testimonial-heading h2 span {
        font-size: 48px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .travel-testimonials {
        padding: 65px 15px;
    }


    .testimonial-heading {
        margin-bottom: 35px;
    }


    .testimonial-heading h2 {
        font-size: 34px;
    }


    .testimonial-heading h2 span {
        font-size: 43px;
    }


    .testimonial-heading p {
        font-size: 13px;

        padding: 0 10px;
    }


    .testimonial-slider {
        min-height: 0;
    }


    .testimonial-slide {
        grid-template-columns: 1fr;

        border-radius: 18px;
    }


    .testimonial-slide.active {
        position: relative;
    }


    .testimonial-media {
        min-height: 280px;

        height: 280px;
    }


    .testimonial-content {
        padding: 30px 25px 35px;
    }


    .quote-icon {
        width: 42px;
        height: 42px;

        font-size: 15px;

        margin-bottom: 14px;
    }


    .testimonial-stars {
        font-size: 12px;

        margin-bottom: 14px;
    }


    .testimonial-content blockquote {
        font-size: 19px;

        line-height: 1.5;

        margin-bottom: 25px;
    }


    .video-play {
        width: 60px;
        height: 60px;

        font-size: 17px;
    }


    .testimonial-navigation {
        margin-top: 25px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .testimonial-heading h2 {
        font-size: 30px;
    }

    .testimonial-heading h2 span {
        font-size: 38px;
    }

    .testimonial-media {
        min-height: 240px;

        height: 240px;
    }

    .testimonial-content {
        padding: 25px 20px 30px;
    }

    .testimonial-content blockquote {
        font-size: 18px;
    }

}











/* Blog Section */
.travel-blog-section {
    padding: 70px 0;
}

/* Blog Grid */
.travel-blog-section .row.g-4 {
    margin-top: 30px;
}

/* Blog Card */
.travel-blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.travel-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

/* Image */
.travel-blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.travel-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.travel-blog-card:hover .travel-blog-image img {
    transform: scale(1.05);
}

/* Content */
.travel-blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Category */
.travel-blog-category {
    font-size: 14px;
    font-weight: 600;
    color: #00765f;
    margin-bottom: 8px;
}

/* Title */
.travel-blog-content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 15px;
}

.travel-blog-content h3 a {
    color: #003d35;
    text-decoration: none;
}

/* Meta */
.travel-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 15px;
}

.travel-blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Description */
.travel-blog-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Read More */
.travel-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00765f;
    font-weight: 600;
    text-decoration: none;
}

/* Filter */
.travel-blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

/* Tablet */
@media (max-width: 991px) {

    .travel-blog-image {
        height: 230px;
    }

    .travel-blog-content h3 {
        font-size: 21px;
    }

}

 
@media (max-width: 767px) {

    .travel-blog-section {
        padding: 50px 0;
    }

    .travel-blog-image {
        height: 240px;
    }

    .travel-blog-content {
        padding: 20px;
    }

    .travel-blog-content h3 {
        font-size: 20px;
    }

}

 .blog-detail-title,.blog-detail-category,.blog-detail-meta{
    padding-left: 20px;
 }

.blog-detail-body {
    padding: 20px 40px 50px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

/* Paragraphs */
.blog-detail-body p {
    margin-bottom: 20px;
}

/* Headings from Editor */
.blog-detail-body h1,
.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4,
.blog-detail-body h5,
.blog-detail-body h6 {
    color: #003d35;
    margin-top: 30px;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Lists */
.blog-detail-body ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

/* List Item */
.blog-detail-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

/* Icon instead of bullet */
.blog-detail-body ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #00765f;
    font-size: 16px;
}

/* Ordered List */
.blog-detail-body ol {
    padding-left: 25px;
    margin: 20px 0;
}

.blog-detail-body ol li {
    margin-bottom: 12px;
}

/* Links */
.blog-detail-body a {
    color: #00765f;
    text-decoration: underline;
}

/* Images inserted from editor */
.blog-detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px 0;
}

/* Blockquote */
.blog-detail-body blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    border-left: 4px solid #00765f;
    background: #f7f7f7;
    font-style: italic;
}

/* Mobile */
@media (max-width: 767px) {

    .blog-detail-body {
        padding: 15px 20px 40px;
        font-size: 15px;
    }

    .blog-detail-body ul li {
        padding-left: 27px;
    }

}









/* ==========================================
   TOURIST / TRAVELER POPUP
========================================== */

.travel-type-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Show Popup */
.travel-type-popup.show {
    visibility: visible;
    opacity: 1;
}

/* Overlay */
.travel-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 31, 0.78);
    backdrop-filter: blur(5px);
}

/* Popup Box */
.travel-popup-box {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 650px;
    background: #f8f4e9;
    border-radius: 20px;
    padding: 55px 60px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s ease;
}

.travel-type-popup.show .travel-popup-box {
    transform: translateY(0) scale(1);
}

/* Close Button */
.travel-popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: #06433d;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.travel-popup-close:hover {
    color: #b86d22;
    transform: rotate(90deg);
}

/* Small Label */
.travel-popup-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #b86d22;
    margin-bottom: 12px;
}

/* Heading */
.travel-popup-content h2 {
    margin: 0;
    color: #063d38;
    font-size: 36px;
    line-height: 1.25;
    font-family: Georgia, serif;
}

/* Divider */
.travel-popup-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto;
}

.travel-popup-divider span {
    width: 55px;
    height: 1px;
    background: #b86d22;
}

.travel-popup-divider i {
    color: #b86d22;
    font-size: 14px;
}

/* Description */
.travel-popup-content p {
    max-width: 520px;
    margin: 0 auto 12px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.travel-popup-question {
    color: #063d38 !important;
    font-weight: 600;
    margin-top: 10px !important;
}

/* Buttons */
.travel-popup-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.travel-type-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 13px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Tourist */
.tourist-btn {
    background: #b86d22;
    color: #fff;
}

.tourist-btn:hover {
    background: #063d38;
    color: #fff;
    transform: translateY(-3px);
}

/* Traveler */
.traveler-btn {
    background: #063d38;
    color: #fff;
}

.traveler-btn:hover {
    background: #b86d22;
    color: #fff;
    transform: translateY(-3px);
}

.travel-btn-separator {
    color: #b86d22;
    font-size: 20px;
}
.page-travel{

    margin-top:-40px
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .travel-popup-box {
        width: 92%;
        padding: 45px 25px 35px;
    }

    .travel-popup-content h2 {
        font-size: 27px;
    }

    .travel-popup-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .travel-popup-buttons {
        gap: 8px;
    }

    .travel-type-btn {
        min-width: 105px;
        padding: 11px 18px;
        font-size: 14px;
    }

    .travel-popup-close {
        top: 10px;
        right: 12px;
    }

}