@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
}

.top-header {
    background: #2e6f40;
    padding: 12px 0;
    color: #fff;
    font-size: 15px;
}
.top-left,
.top-right {
    display: flex;
    align-items: center;
}

.top-left {
    gap: 18px;
}

.top-right {
    justify-content: end;
    gap: 18px;
}

.top-item,
.email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-item i,
.email i {
    color: #ffb400;
    font-size: 16px;
}

.divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s;
}

/* Individual Colors */
.social-icons a:nth-child(1) {
    background: #3b5998;
}

.social-icons a:nth-child(2) {
    background: linear-gradient(
        45deg,
        #833ab4 0%,
        #c13584 25%,
        #e1306c 50%,
        #fd1d1d 75%,
        #fcaf45 100%
    );
}

.social-icons a:nth-child(3) {
    background: #0a66c2;
}

.social-icons a:nth-child(4) {
    background: #bd081c;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: #000;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .top-left,
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .top-right {
        margin-top: 12px;
    }

    .divider {
        display: none;
    }

    .top-header {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .top-left,
    .top-right {
        flex-direction: column;
    }

    .social-icons {
        justify-content: center;
    }
}
/* navbar */
.navbar {
    background: #fff;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffb703;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.logo-text {
    font-size: 38px;
    font-weight: 800;
    color: #0b2345;
}

.navbar-nav .nav-link {
    color: #0b2345;
    font-weight: 600;
    padding: 12px 15px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ff9800;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #ff9800;
    color: #fff;
}

.menu-grid {
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.3s;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #2e6f40;
}

.menu-grid:hover {
    background: #68ba7f;
    color: #000;
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 20px;
        padding: 20px;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 5px;
    }

    .logo-text {
        font-size: 30px;
    }
}
/* navbar end */

/* hero banner */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#bgVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero h1 {
    color: #fff;
    font-size: 65px;
    font-weight: 800;
}

.hero h1 span {
    color: #ffb400;
}
.hero .follow-text {
    position: relative;
    z-index: 1;
}
.hero p {
    color: #ddd;
    font-size: 18px;
    font-family: "Roboto Mono", monospace;
    color: #fff;
}

.small-title {
    color: #ffb400;
    letter-spacing: 2px;
    font-family: "Satisfy", cursive;
    font-weight: 400;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 480px;
    border-radius: 50%;
    border: 8px solid #fff;
}

.video-card {
    position: absolute;
    left: 20px;
    top: 30px;

    width: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.video-card img {
    width: 100%;
}

#playPause {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;

    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0d6efd;
    font-size: 28px;
    cursor: pointer;
}

.hero-right {
    position: relative;
    width: 100%;
    height: 650px;
}

/* White Ring */

.hero-right::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 2px solid #d9d9d9;
    border-radius: 50%;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}

/* Blue Circle */

.circle-bg {
    position: absolute;
    width: 430px;
    height: 430px;
    background: #c09921;
    border-radius: 50%;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
}

/* Main Image */

.girl-img {
    position: absolute;
    width: 374px;
    left: 45%;
    top: 47%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Floating Video */

.video-box {
    position: absolute;

    left: 40px;
    top: 80px;

    width: 190px;

    background: #fff;
    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    z-index: 10;
}

.video-box img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 65px;
    height: 65px;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: #0d6efd;

    font-size: 28px;
}

/* Airplane */

.plane-img {
    position: absolute;
    left: -27px;
    bottom: 220px;
    width: 183px;
    animation: plane 6s linear infinite;
}
@keyframes plane {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Social Icons */

.social-box {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 60px;
    padding: 14px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 18px;
}

.social-box a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2e6f40;
    transition: 0.3s;
    text-decoration: none;
}

.social-box a:hover {
    background: #2e6f40;
    color: #fff;
}
.explore-btn {
    background: #2e6f40;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
}
/* hero banner end */

/* distination */
.destination {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.destination::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 400px;
    background: url("../images/tower.png") no-repeat center;
    background-size: cover;
    opacity: 3.1;
    left: -2%;
    top: 15%;
}
.destination::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 400px;
    background: url("../images/tree.png") no-repeat center;
    background-size: cover;
    opacity: 5.1;
    right: 0%;
    top: 8%;
    z-index: -1;
}

.subtitle {
    font-family: "Satisfy", cursive;
    color: #2e6f40;
    font-size: 30px;
    margin-bottom: 15px;
}

.title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.location-btn {
    background: #d4e6d9 !important;
    color: #512bff;
    padding: 18px 35px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.location-btn:hover {
    background: #512bff;
    color: #fff;
}

.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 320px;
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.tour-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.1)
    );
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding-bottom: 40px;
    z-index: 1;
}

.badge-tour {
    background: #2e6f40;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.overlay h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.tour-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    z-index: 2;
}

/* distination end */

/* trip details */

.travel-section {
    padding: 90px 0;
    overflow: hidden;
    position: relative;
}
.travel-section::before {
    content: "";
    position: absolute;
    width: 236px;
    height: 516px;
    background: url("../images/plam-tree.png") no-repeat center;
    background-size: cover;
    opacity: 0.1;
    left: -2%;
    top: 15%;
}
.travel-section::after {
    content: "";
    position: absolute;
    width: 437px;
    height: 516px;
    background: url("../images/plam-tree-right.png") no-repeat center;
    background-size: cover;
    opacity: 0.1;
    right: -2%;
    top: -1%;
}

/* ===========================
   Left Content
=========================== */

.section-subtitle {
    font-family: "Satisfy", cursive;
    color: #2e6f40;
    font-size: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.section-text {
    font-size: 18px;
    line-height: 24px;
    color: #666;
    margin-bottom: 30px;
}

/* ===========================
   Features
=========================== */

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #2e6f40;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2e6f40;
    font-size: 30px;
    flex-shrink: 0;
    transition: 0.3s;
}

.feature-box:hover .feature-icon {
    background: #2e6f40;
    color: #fff;
}

.feature-box h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-box p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 26px;
}

/* ===========================
   Button
=========================== */

.book-btn {
    margin-top: 20px;
    background: #6c2bd9;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.book-btn:hover {
    background: #5121b5;
    color: #fff;
    transform: translateY(-3px);
}

/* ===========================
   Right Side Images
=========================== */

.travel-images {
    position: relative;
    min-height: 600px;
}

/* Main Image */

.main-img {
    width: 340px;
    height: 520px;
    object-fit: contain;
    border-radius: 25px;
    position: absolute;
    top: 72px;
    right: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
/* Small Image */

.small-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    left: 125px;
    bottom: 211px;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-position: left;
}

/* Compass */

.compass-img {
    position: absolute;
    top: -58px;
    left: 43px;
    width: 180px;
    opacity: 3.15;
    z-index: 3;
}

/* Vertical Text */

.travel-text {
    position: absolute;
    right: -80px;
    top: 60px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 95px;
    font-weight: 800;
    letter-spacing: 8px;
    color: transparent;
    -webkit-text-stroke: 2px #2e6f40;
    user-select: none;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 1199px) {
    .section-title {
        font-size: 40px;
    }

    .main-img {
        width: 450px;
        height: 450px;
        right: 20px;
    }

    .small-img {
        width: 200px;
        height: 200px;
        left: 0;
    }

    .travel-text {
        font-size: 80px;
        right: -60px;
    }
}

@media (max-width: 991px) {
    .travel-section {
        text-align: center;
    }

    .feature-box {
        justify-content: center;
        text-align: left;
    }

    .travel-images {
        min-height: 650px;
        margin-top: 40px;
    }

    .main-img {
        position: relative;
        width: 100%;
        height: 450px;
        right: 0;
        top: 0;
    }

    .small-img {
        width: 220px;
        height: 220px;
        left: 20px;
        bottom: 20px;
    }

    .travel-text {
        display: none;
    }

    .compass-img {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }

    .section-text {
        font-size: 14px;
    }

    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 15px;
    }

    .feature-box .ms-3 {
        margin-left: 0 !important;
    }

    .main-img {
        height: 350px;
    }

    .small-img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .travel-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .main-img {
        height: 280px;
    }

    @media (max-width: 576px) {
        .small-img {
            width: 130px;
            height: 130px;
            left: 144px;
            bottom: 57px;
        }
    }

    .book-btn {
        padding: 12px 25px;
    }
}
/* trip detail end */

/* our trip */
.trip {
    position: relative;
    overflow: hidden;
}
.trip::before {
    content: "";
    position: absolute;
    width: 178px;
    height: 198px;
    background: url("../images/baloon.png") no-repeat center;
    background-size: cover;
    opacity: 2.1;
    left: -1%;
    top: 15%;
}

.trip::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 400px;
    background: url(../images/tree.png) no-repeat center;
    background-size: cover;
    opacity: 5.1;
    right: 0%;
    top: 8%;
    z-index: -1;
}
.trip .trip-heading h3 {
    font-family: "Satisfy", cursive;
    color: #2e6f40;
    font-size: 30px;
    margin-bottom: 15px;
}
.trip .trip-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.package-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.package-box:hover {
    transform: translateY(-8px);
}

.package-image {
    position: relative;
    overflow: hidden;
}
.package-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        60deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.package-image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    transition: 0.4s;
}

.package-box:hover .package-image img {
    transform: scale(1.08);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

/*==========================
 Ribbon
==========================*/

.offer-label {
    position: absolute;
    left: 0;
    top: 12px;
    background: #00c939;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px 6px 10px;
    clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 100%, 0 100%);
}

/*==========================
 Content
==========================*/

.package-body {
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.package-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.package-meta p {
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
}

.package-meta i {
    margin-right: 8px;
    color: #666;
}

/*==========================
 Footer
==========================*/

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-price {
    background: #2e6f40;
    color: #fff;
    width: 120px;
    padding: 5px 11px;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.package-price span {
    font-size: 14px;
    font-weight: 700;
}

.package-price small {
    font-size: 13px;
    font-weight: 500;
}

.details-btn {
    color: #111;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 18px;
    transition: 0.3s;
}

.details-btn:hover {
    color: #2e6f40;
}
/* our trip end*/

/* design part */
/*=========================
 Section
=========================*/

.adventure-area {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.adventure-area::before {
    content: "";
    position: absolute;
    width: 297px;
    height: 500px;
    background: url(../images/map.png) no-repeat center;
    background-size: cover;
    left: -1%;
    top: -1%;
}
.adventure-area::after {
    content: "";
    position: absolute;
    width: 337px;
    height: 400px;
    background: url(../images/plam-tree-right.png) no-repeat center;
    background-size: cover;
    opacity: 0.1;
    right: -0%;
    top: 15%;
}
.travel-content {
    position: relative;
}

/*=========================
 Left Content
=========================*/

.travel-subtitle {
    font-family: "Satisfy", cursive;
    color: #2e6f40;
    font-size: 30px;
    margin-bottom: 15px;
}

.travel-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.travel-description {
    color: #5d6778;
    font-size: 17px;
    line-height: 30px;
    max-width: 520px;
    margin-bottom: 35px;
}

.explore-btn:hover {
    background: #0849b9;
    color: #fff;
    transform: translateY(-3px);
}

/*=========================
 Cards
=========================*/

.activity-card {
    height: 215px;
    border: 2px dashed #2e6f40;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    transition: 0.4s;
}

.activity-card:hover {
    border-color: #ffb400;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.activity-icon {
    width: 70px;
    margin-bottom: 25px;
}

.activity-icon img {
    width: 100%;
    filter: brightness(0) saturate(100%) invert(76%) sepia(66%) saturate(905%)
        hue-rotate(357deg) brightness(104%) contrast(102%);
}

.activity-card h4 {
    color: #08224b;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

/*=========================
 Decorations
=========================*/

.plane-path {
    position: absolute;
    left: 280px;
    bottom: 30px;
    width: 230px;
    opacity: 0.9;
}

.palm-tree {
    position: absolute;
    left: -20px;
    bottom: -10px;
    width: 170px;
    opacity: 0.08;
}

.camera-icon {
    position: absolute;
    right: 25px;
    top: 150px;
    width: 55px;
    opacity: 0.12;
}

/*=========================
 Responsive
=========================*/

@media (max-width: 1200px) {
    .travel-title {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .travel-content {
        text-align: center;
    }

    .travel-description {
        margin: auto;
        margin-bottom: 30px;
    }

    .plane-path,
    .camera-icon,
    .palm-tree {
        display: none;
    }
}

@media (max-width: 767px) {
    .adventure-area {
        padding: 70px 0;
    }

    .travel-title {
        font-size: 36px;
    }

    .travel-description {
        font-size: 15px;
        line-height: 28px;
    }

    .activity-card {
        height: 180px;
    }

    .activity-card h4 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .travel-title {
        font-size: 30px;
    }

    .travel-subtitle {
        letter-spacing: 2px;
        font-size: 13px;
    }

    .activity-card {
        height: 170px;
        z-index: 1;
        position: relative;
    }

    .activity-icon {
        width: 55px;
    }

    .activity-card h4 {
        font-size: 24px;
    }
}

/* client feedback*/
.client-feedback-section {
    position: relative;
    overflow: hidden;
}
.client-feedback-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: url("../images/tree.png") no-repeat center;
    background-size: cover;
    opacity: 2.1;
    left: 0%;
    top: 8%;
    z-index: -1;
}
.client-feedback-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 400px;
    background: url("../images/tower.png") no-repeat center;
    background-size: cover;
    opacity: 1.1;
    right: -5%;
    top: 22%;
    z-index: -1;
}
.client-feedback .owl-nav {
    display: none;
}
.client-feedback .client-content {
    text-align: center;
}
.client-feedback-section .client-title {
    font-family: "Satisfy", cursive;
    color: #2e6f40;
    font-size: 30px;
    margin-bottom: 15px;
}
.client-feedback-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.client-feedback h4 {
    font-family: "Satisfy", cursive;
    color: #2e6f40;
    font-size: 30px;
    margin-bottom: 15px;
}
.client-feedback h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}
.client-feedback p {
    color: #5d6778;
    font-size: 17px;
    line-height: 30px;

    margin-bottom: 35px;
}
.client-review-card {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 22px;
    transition: 0.35s;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    height: 250px;
}

.client-review-card:hover {
    transform: translateY(-0px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Header */

.client-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    object-position: center;
}

.client-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.client-details span {
    font-size: 15px;
    color: #777;
}

/* Quote */

.quote-mark i {
    font-size: 46px;
    color: #e5e5e5;
}

/* Text */

.client-review-text {
    margin: 22px 0 18px;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

/* Rating */

.client-rating {
    display: flex;
    gap: 4px;
}

.client-rating i {
    color: #ff9d00;
    font-size: 15px;
}

/*==========================
 Footer
==========================*/

.travel-footer {
    background: #10351a;
    padding: 90px 0 70px;
    color: #fff;
    font-family: "Inter", sans-serif;
}

.footer-logo {
    width: 150px;
    margin-bottom: 25px;
}

.footer-about p {
    color: #b7b7c5;
    line-height: 28px;
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 290px;
}

/*==========================
 Newsletter
==========================*/

.footer-newsletter {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
}

.footer-newsletter input {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: 15px;
    border-radius: 5px 0 0 5px;
}

.footer-newsletter button {
    width: 60px;
    border: none;
    background: #91df82;
    color: #fff;
    font-size: 22px;
    border-radius: 0 5px 5px 0;
    transition: 0.4s;
}

.footer-newsletter button:hover {
    background: #4e18d5;
}

/*==========================
 Social
==========================*/

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    /* background: #5a9572; */
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    border: 1px solid #fff;
}

.footer-social a:hover {
    background: #2e6f40;
    transform: translateY(-5px);
    color: #fff;
}

/*==========================
 Headings
==========================*/

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

/*==========================
 Links
==========================*/

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #b7b7c5;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

/*==========================
 Contact
==========================*/

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact li i {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact li span {
    color: #b7b7c5;
    line-height: 28px;
    font-size: 15px;
}

.footer-contact strong {
    color: #fff;
}

/*==========================
 Responsive
==========================*/

@media (max-width: 991px) {
    .travel-footer {
        text-align: center;
    }

    .footer-about p {
        margin: auto;
        margin-bottom: 25px;
    }

    .footer-newsletter {
        margin: 0 auto 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .travel-footer {
        padding: 70px 0 50px;
    }

    .footer-links,
    .footer-contact {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .footer-links h4,
    .footer-contact h4 {
        font-size: 22px;
    }

    .footer-newsletter {
        max-width: 100%;
    }
}

/* footer bg */
.foot-head-new {
    position: relative;
    overflow: hidden;
}
.foot-head-new::before {
    content: "";
    position: absolute;
    width: 178px;
    height: 198px;
    background: url(../images/baloon.png) no-repeat center;
    background-size: cover;
    opacity: 2.1;
    left: -1%;
    top: 15%;
}
.foot-head-new::after {
    content: "";
    position: absolute;
    width: 187px;
    height: 134px;
    background: url(../images/ship.png) no-repeat center;
    background-size: cover;
    opacity: 2.1;
    right: 2%;
    top: 32%;
}
.footer-head-bg {
    background: url(../images/footer-bg-new.jpg) no-repeat center;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 200px;
    border-radius: 25px;
    padding: 25px;
}
.footer-img {
    width: 200px;
    height: 160px;
    margin-top: 15px;
}
.footer-img img {
    width: 100%;
    height: 100%;
}

/* mobile friendly */
@media (max-width: 767px) {
    .hero .follow-text {
        padding: 20px 22px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .circle-bg {
        width: 350px;
        height: 350px;
    }
    .hero-right::before {
        width: 415px;
        height: 415px;
    }
    .girl-img {
        top: 36%;
    }
    .hero-right {
        height: 590px;
    }
}

/* destination banner */
.destination-banner {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../images/destination-banner.jpg") center center/cover no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.destination-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.destination-banner .container {
    position: relative;
    z-index: 2;
}

.destination-banner .subtitle {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #82b440;
    margin-bottom: 15px;
}
.destination-banner .des-image {
    width: 300px;
    height: 250px;
}
.destination-banner .des-image img {
    width: 100%;
    height: 100%;
}

.destination-banner .title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.destination-banner p {
    max-width: 650px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.location-btn {
    background: #82b440;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.location-btn:hover {
    background: #6d9935;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
    .destination-banner {
        min-height: 450px;
        text-align: center;
    }

    .destination-banner .title {
        font-size: 42px;
    }

    .destination-banner p {
        margin: auto;
    }
}

@media (max-width: 576px) {
    .destination-banner {
        min-height: 400px;
        padding: 70px 0;
    }

    .destination-banner .title {
        font-size: 32px;
    }

    .destination-banner p {
        font-size: 15px;
    }
}
.destination-section {
    background: #f6f5fb;
    position: relative;
    overflow: hidden;
}
.destination-section::before {
    content: "";
    position: absolute;
    width: 236px;
    height: 516px;
    background: url(../images/plam-tree.png) no-repeat center;
    background-size: cover;
    opacity: 0.1;
    left: -2%;
    top: 15%;
}
.destination-section::after {
    content: "";
    position: absolute;
    width: 336px;
    height: 516px;
    background: url(../images/plam-tree-right.png) no-repeat center;
    background-size: cover;
    opacity: 0.1;
    right: -2%;
    bottom: 0;
}

.destination-card {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 22px;
    padding: 18px;
    transition: 0.4s;
    overflow: hidden;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.destination-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.tour-badge {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: #6f2cff;
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

.destination-content {
    text-align: center;
    padding-top: 28px;
}

.destination-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}
/* blog part */

/* blog part end */
.blog-banner {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../images/blog-image.png") center center/cover no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
}

.blog-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.blog-banner .container {
    position: relative;
    z-index: 2;
}

.blog-banner .subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #82b440;
    margin-bottom: 15px;
}

.blog-banner .title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.blog-banner p {
    max-width: 650px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.blog-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-images img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-images img {
    transform: scale(1.08);
}

.blog-content {
    padding: 10px;
}

.blog-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-tags span {
    background: #edf3ff;
    color: #4c5c78;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 6px;
}

.blog-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: 0.3s;
}

.blog-card:hover h4 {
    color: #0d6efd;
}

.date {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 14px;
}

.blog-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .blog-card {
        margin-bottom: 30px;
    }

    .blog-content h4 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .blog-images {
        height: 140px;
    }

    .blog-images img {
        height: 140px;
    }

    .blog-content {
        padding: 16px;
    }

    .blog-content h4 {
        font-size: 20px;
    }
}
.blog-travel {
    position: relative;
    overflow: hidden;
}
.blog-travel::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 400px;
    background: url(../images/tower.png) no-repeat center;
    background-size: cover;
    opacity: 3.1;
    left: -2%;
    top: 5%;
    z-index: -1;
}
.blog-travel::after {
    content: "";
    position: absolute;
    width: 336px;
    height: 516px;
    background: url(../images/plam-tree-right.png) no-repeat center;
    background-size: cover;
    opacity: 0.1;
    right: -2%;
    bottom: 0;
}

.blog-travel h3 {
    padding: 15px 0;
    font-size: 20px;
    font-weight: 600;
}

/* pagination */
.pagination-area {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 60px 0;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f5f9;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: 0.3s;
}

.page-btn:hover {
    background: #0d6efd;
    color: #fff;
}

.page-btn.active {
    background: #0d6efd;
    color: #fff;
}
.featured-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 250px;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 173, 169, 0.88) 0%,
        rgba(18, 173, 169, 0.65) 35%,
        rgba(18, 173, 169, 0.18) 100%
    );
}
.featured-overlay-nxt {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #322153f2 0%,
        #322153b3 30%,
        #32215359 60%,
        #32215300 100%
    );
}

.featured-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: #fff;
    z-index: 2;
    max-width: 520px;
}

.story-tag {
    display: inline-block;
    background: #ffffff;
    color: #4f5f7c;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.featured-content h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.featured-content p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Hover */

.featured-card img {
    transition: 0.5s;
}

.featured-card:hover img {
    transform: scale(1.08);
}

/* Responsive */

@media (max-width: 991px) {
    .featured-card {
        height: 300px;
    }

    .featured-content {
        left: 30px;
        bottom: 30px;
    }

    .featured-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .featured-card {
        height: 260px;
    }

    .featured-content {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .featured-content h2 {
        font-size: 28px;
    }

    .featured-content p {
        font-size: 15px;
    }

    .story-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}
.blog-travel-caro h3 {
    padding: 15px 0;
    font-size: 20px;
    font-weight: 600;
}
.blog-travel-caro {
    position: relative;
    overflow: hidden;
}
.blog-travel-caro::before {
    content: "";
    position: absolute;
    width: 297px;
    height: 500px;
    background: url(../images/map.png) no-repeat center;
    background-size: cover;
    left: -1%;
    top: -1%;
}
.blog-carousel .owl-nav button.owl-prev {
    background: 0 0;
    background-color: #a9d8af !important;
    width: 32px;
    height: 32px;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    border-radius: 50%;
}
.blog-carousel .owl-nav button.owl-next {
    background: 0 0;
    background-color: #a9d8af !important;
    width: 32px;
    height: 32px;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    border-radius: 50%;
}
.blog-carousel .owl-nav {
    position: absolute;
    top: -64px;
    right: 0;
}

/* contact us */
.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.contact-section:before {
    content: "";
    position: absolute;
    width: 154px;
    height: 198px;
    background: url(../images/baloon.png) no-repeat center;
    background-size: cover;
    opacity: 2.1;
    left: -1%;
    top: 40%;
}

.contact-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 400px;
    background: url(../images/tree.png) no-repeat center;
    background-size: cover;
    opacity: 5.1;
    right: 0%;
    top: 8%;
    z-index: -1;
}
.contact-area {
    position: relative;
    overflow: hidden;
}
.contact-area::before {
    content: "";
    position: absolute;
    width: 297px;
    height: 500px;
    background: url(../images/map.png) no-repeat center;
    background-size: cover;
    left: -1%;
    top: -1%;
    z-index: -1;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    transition: 0.35s;
    height: 100%;
    box-shadow: 0px 0px 10px #e1e1e1;
    z-index: 1;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 62px;
    height: 62px;
    background: #eaf3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.icon-box i {
    color: #2e6f40;
    font-size: 28px;
}

.contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #05264d;
    margin-bottom: 22px;
}

.contact-card a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 17px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.contact-card a:hover {
    color: #0d6efd;
}

.contact-card p {
    font-size: 17px;
    color: #333;
    line-height: 30px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .contact-card {
        padding: 40px 20px;
    }

    .contact-card h4 {
        font-size: 24px;
    }
}
.contact-area {
    padding: 90px 0;
}

/* Left Side */

.sub-title {
    color: #2e6f40;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Satisfy", cursive;
}

.main-title {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #071c3c;
    line-height: 1.15;
    margin: 15px 0 20px;
}

.contact-text {
    color: #777;
    line-height: 28px;
    max-width: 470px;
}

.follow-title {
    font-size: 15px;
    font-weight: 600;
    color: #071c3c;
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:nth-child(1) {
    background: #1877f2;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

/* Form */

.contact-form {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 35px;
}

.contact-form h4 {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    color: #071c3c;
    margin-bottom: 25px;
}

.contact-form .form-control,
.contact-form .form-select {
    height: 52px;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-form textarea.form-control {
    height: 140px;
    resize: none;
}

.form-check-label {
    font-size: 14px;
    color: #666;
}

.btn-submit {
    background: #2e6f40;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #004ed8;
}

.btn-submit i {
    margin-left: 8px;
}

/* Responsive */

@media (max-width: 991px) {
    .main-title {
        font-size: 38px;
    }

    .contact-form {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}
