@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Variables */
    --primary-color: #488FA1;
    --secondary-color: #01405C;
    --text-color: #38424D;
    --bg-light: #F4FBFA;
    --text-white: #FFFFFF;


    /* Spacing Variables */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-xxl: 50px;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-xl: 50px;

    /* Box Shadow */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.heroSection {

    position: relative;
    width: 100%;
    height: 830px;

}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    background-image: url(../images/home/heroabove.png);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section {
    scroll-margin-top: 100px;
}

.hero-content {
    position: absolute;
    top: 10px;
    width: 100%;
    height: auto;
}

.navbar {
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 7px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.21);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: white;
    border-bottom: 3px solid white;
    transition:
        background-color 0.4s ease,
        box-shadow 0.4s ease,
        padding 0.3s ease,
        transform 0.3s ease;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled a {
    color: #38424D;
}

.logo {
    padding: 0 80px;
}

.logo-img {
    width: 162px;
    height: 70px;
}

.listItems {
    list-style: none;
    display: flex;
}

.listItems li {
    color: var(--text-white);
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.listItems li a {
    position: relative;
    color: inherit;
    text-decoration: none;
    padding-bottom: 34px;
    padding: 36px 20px;
    width: 100%;
}

.listItems li a:hover {
    color: #4a9dc4;
}

.listItems li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #4a9dc4;
    transition: width 0.3s ease;
}

.listItems li a:hover::after {
    width: 100%;
}

.listItems li a.active::after {
    width: 100%;
}

.listItems li a.active {
    color: #4a9dc4;
}

.section-highlight {
    animation: sectionFade 0.8s ease;
}

@keyframes sectionFade {
    0% {
        transform: scale(0.98);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #488FA1;
    transition: all 0.3s ease;
}


.heroBody {
    animation: slideIn 2s ease-out;
    opacity: 1;
    padding: 170px 0 145px 80px;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Initial state (hidden) */
.package-card {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible state (after animation trigger) */
.package-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.heroBody h1 {
    font-weight: 700;
    font-size: 62px;
    color: var(--text-white);
    width: 819px;
    line-height: 92px;
}

.heroBody h1 span {
    font-weight: 800;
    color: var(--bg-light);
}

.heroBody p {
    font-weight: 500;
    font-size: 26px;
    line-height: 48px;
    color: var(--text-white);
    width: 800px;
    margin: 32px 0;
}

.heroBody button {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 10px;
    cursor: pointer;
    width: 180px;
    height: 52px;
    border: none;
    font-size: 17px;
    font-weight: 600;
}

.heroBody button:hover {
    box-shadow: 0px 5px 15px #488FA1;
}

.herodots {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* section2 */
.hostAccount {
    width: 100%;
    height: 805px;
    background: var(--bg-light);
    margin-top: 10px;
}

.hostTop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 90px 0px 40px;
    text-align: center;
}

.guestbtn,
.hostbtn {
    font-family: 'Geist', sans-serif;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
    width: 150px;
    height: 26px;
    padding: 5px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background-color: #FFFFFF;
}


.hostbtn span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 9999px;
    display: flex;

}

.hostTop h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin: 15px 0px;
}

.guestbtn p,
.hostbtn p {
    font-size: 12px !important;
    font-weight: 400;
    color: var(--text-color);

}

.hostTop p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);

}

.hostBody {
    display: flex;
    gap: 140px;
    justify-content: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    padding-top: 20px;
}

.stepDiv {
    display: flex;
    gap: 20px;

}

.notifications h6 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 3px;
    text-transform: uppercase;
    font-family: 'Geist', sans-serif;

}

.notifications div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Geist', sans-serif;
}

.hostCarocel {
    width: 100%;
    height: 301px;
    /* padding: 20px; */
    max-width: 485px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carocel-para {
    font-family: 'Geist', sans-serif !important;
    font-size: 14px;
    font-weight: 400;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    padding: 33px;
    background: linear-gradient(to right, #488FA1, #488FA1, #1A343B);
    border-radius: 8px;
    font-family: 'Geist', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: none;
    flex-direction: column;
    color: white;
}

.carousel-slide.active {
    display: flex;
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: #2E7587;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide h3 {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 700;
    font-family: 'Geist', sans-serif;
}

.carousel-slide p {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding-right: 40px;
}

.get-started-btn {
    font-family: 'Geist', sans-serif;
    background-color: #2E7587;
    font-size: 14px;
    color: white;
    border: none;
    padding: 12px 24px;
    margin-top: 25px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.get-started-btn:hover {
    background-color: #3a7a8a;
}

.carousel-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding: 0 5px
}

.carousel-nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-prev,
.carousel-next {
    background: white;
    border: 1px solid #F3F4F6;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: #f5f5f5;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E5E7EB;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}



.carousel-progress-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Geist', sans-serif;
}

.carousel-progress-bar {
    flex: 1;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.carousel-progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 33.33%;
}

.progressText {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.hostImg {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    position: relative;
}

.Hostpopup {
    position: absolute;
    top: -8px;
    right: -65px;
    padding: 10px 20px;
    border-radius: 12px;
}

.Hostpopup {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #F3F4F6;
    gap: 5px;
}

.Hostpopup img {
    background-color: #488FA1;
    width: 24px;
    height: 24px;
    padding: 2px;
}

.Hostpopup p {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Geist', sans-serif;
}

.hostImg img {
    border-radius: 8px;
}

/* Guest Account Section - Same as Host but reversed layout */
.guestAccount {
    width: 100%;
    height: 805px;
    margin-top: 10px;
}

.guestTop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 90px 0px 0px;
    text-align: center;
}



.guestbtn span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 9999px;
    display: flex;
}

.guestTop h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin: 15px 0px;
}

.guestTop p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.guestBody {
    display: flex;
    justify-content: center;
    gap: 120px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.guestImg {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    position: relative;
}

.Guestpopup {
    position: absolute;
    top: -8px;
    left: -65px;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #F3F4F6;
    gap: 5px;
}

.Guestpopup img {
    background-color: #488FA1;
    width: 24px;
    height: 24px;
    padding: 2px;
    border-radius: 9999px;
}

.Guestpopup p {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Geist', sans-serif;
}

.Hostpopup img {
    border-radius: 15px;
}

.hostImage,
.guestImage img {
    border-radius: 8px;
}

.guestCarocel {
    width: 550px;
    height: 301px;
}

.carousel-container-guest {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides-guest {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide-guest {
    padding: 33px;
    background: linear-gradient(to right, #488FA1, #488FA1, #1A343B);
    border-radius: 8px;
    font-family: 'Geist', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: none;
    flex-direction: column;
    color: white;
}

.carousel-slide-guest.active {
    display: flex;
}

.carousel-slide-guest h3 {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 700;
    font-family: 'Geist', sans-serif;
}

.carousel-slide-guest p {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding-right: 40px;
}

.carousel-nav-guest {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.carousel-nav-controls-guest {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.carousel-prev-guest,
.carousel-next-guest {
    background: white;
    border: 1px solid #F3F4F6;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.carousel-prev-guest:hover,
.carousel-next-guest:hover {
    background-color: #f5f5f5;
}

.carousel-dots-guest {
    display: flex;
    gap: 12px;
}

.carousel-dots-guest .dot-guest {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E5E7EB;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots-guest .dot-guest.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.carousel-progress-label-guest {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Geist', sans-serif;
}

.carousel-progress-bar-guest {
    flex: 1;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.carousel-progress-fill-guest {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 33.33%;
}

.progressText-guest {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

/* About Us Section */
.aboutUs {
    width: 100%;
    padding: 100px 0;
    background: var(--bg-light);
}

.aboutContainer {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 50px;
}

.aboutContent {
    flex: 1;
}

.aboutContent h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);

}

.aboutContent p {
    font-size: 16.3px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 1%;
    color: #38424D;
    padding: 19px 0;
    padding-bottom: 40px;

}

.read-more-btn {
    background-color: var(--primary-color);
    width: 130px;
    border: none;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0px 5px 15px #488FA1;
    color: white;
    font-size: 16px;
    text-decoration: none;

}




/* Small delay for each card */
.statCard:nth-child(2) {
    animation-delay: 0.3s;
}

/* Fade-in upward animation */
@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.aboutStats {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.statCard {
    background: #FFFFFF;
    padding: 15px;
    border-top-right-radius: 22px;
    border-bottom-left-radius: 22px;
    text-align: center;
    min-width: 180px;
    border: #F5F5F5;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    transform: translateY(50px);
}

/* visible state */

.statCard.visible {
    transform: translateY(0);
    opacity: 1;
}

.statCard h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}

.statCard p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.aboutImage {
    flex: 1;
}

.aboutImage img {
    width: 600px;
    height: 530px;
    border-radius: 32px;
    object-fit: cover;
}

/* Why Choose Section */
.whyChoose {
    width: 100%;
    padding: 100px 0;
    background: #FFFFFF;
}

.whyChooseContainer {
    max-width: 100%;
    padding: 0 50px;

}

.whyChooseHeader {
    text-align: center;
}

.whyChooseHeader h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.whyChooseHeader p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.servicesCarousel {
    position: relative;
}

.services-container {
    overflow: hidden;
    padding: 80px 10px;
}

.services-slides {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.service-card {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
    box-shadow: 0px 3px 12px #86B7C3
}


.service-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.service-card {
    min-width: calc(32.666% - 20px);
    background: #FFFFFF;
    border: 1px solid #EBE9E9;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.service-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}


.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 25px;
    height: 25px;
}

.cardFlex {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.cardFlex h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 24px;
}

.service-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color);
    margin-top: 15px;
}

.services-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -20px;
    max-width: 360px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.services-prev,
.services-next {
    background: white;
    border: 1px solid #F3F4F6;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.services-prev:hover,
.services-next:hover {
    background-color: #f5f5f5;
}

.services-dots {
    display: flex;
    gap: 12px;
}

.services-dots .service-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-dots .service-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Explore Gallery Section */
.exploreGallery {
    width: 100%;
    padding: 100px 0;
    background: var(--bg-light);
}

.galleryContainer {
    padding: 0 20px;
}

.galleryHeader {
    text-align: center;
    margin-bottom: 60px;
}

.galleryHeader h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.galleryHeader p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin: 0 60px 50px 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item.large-left {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.gallery-item.large-right {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.gallery-item.small {
    grid-row: 2 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px;
    color: white;
}

.gallery-overlay h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.gallery-overlay p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: white;
    margin: 0;
}

.galleryFooter {
    text-align: center;
}

.more-destinations {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-destinations:hover {
    color: var(--secondary-color);
    gap: 15px;
}

.more-destinations span {
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    width: 100%;
    padding: 100px 0;
    background: #FFFFFF;
}


.testimonialsHeader {
    text-align: center;
}

.testimonialsHeader h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.testimonialsHeader p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.testimonialsCarousel {
    position: relative;
}

.testimonials-wrapper {
    overflow: hidden;
    padding: 60px 20px;
}

.testimonials-slides {
    display: flex;
    gap: 50px;
    transition: transform 0.5s ease;
    padding: 0 40px;
}

.testimonial-card {
    min-width: calc(50% - 15px);
    background: #FFFFFF;
    border: 1px solid #E6DFDF;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 30px;

    box-shadow: 7.78px 10.38px 54.48px 57.07px rgba(72, 143, 161, 0.03);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;

}

.testimonial-profile img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 4px 0;
}

.testimonial-info p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.quote-icon {
    width: 91px;
    height: 54px;
    flex-shrink: 0;
}

.quote-icon img {
    width: 100%;
    height: 100%;

}

.testimonial-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color);
    margin: 0;
    text-align: justify;
}

.testimonials-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-prev,
.testimonials-next {
    background: white;
    border: 1px solid #F3F4F6;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    color: var(--text-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background-color: #f5f5f5;
}

.testimonials-dots {
    display: flex;
    gap: 12px;
}

.testimonials-dots .testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .testimonial-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Packages Section */
.packages {
    width: 100%;
    padding: 100px 0;
    background: var(--bg-light);
}

.packagesContainer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

.packagesHeader {
    text-align: center;
    margin-bottom: 60px;
}

.packagesHeader h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.packagesHeader p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.packagesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
}

.package-card {
    overflow: hidden;
    box-shadow: 0 2px 8px #488FA1(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.package-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.book-now-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #FFFFFF;
    color: black;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 13px 0px #86B7C3;
    z-index: 999;
}



.package-card:hover {
    color: var(--primary-color);
}

.package-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
    position: relative;
}

.package-details h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.package-details p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

.package-arrow {
    width: 40px;
    height: 40px;
    background: #488FA1;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.package-arrow:hover {
    transform: scale(1.1);
}

.package-card:hover .package-info {
    background: var(--primary-color);
}

.package-card:hover .package-details h3 {
    color: white;
}

.package-card:hover .package-details p {
    color: white;
}

.package-card:hover {
    color: #488FA1;
}

.package-card:hover .package-arrow {
    background: white;
    color: #488FA1;
}

.package-arrow img {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.FaqsSection {
    padding: 80px;
    display: flex;
    justify-content: center;
}

.faqContainer {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.faqLeft h1 {
    font-size: 49px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    width: 313px;
    line-height: 1.2;
}

.faqLeft p {
    font-size: 16.47px;
    color: var(--text-color);
    line-height: 1.6;
    width: 384px;
}

.faqLeft img {
    width: 126px;
    height: 96px;
    margin-top: 30px;
}

.faqRight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    transition: all 0.3s ease;
    padding: 20px;
}

.faq-item.active {
    background: white;
    border-radius: 20.59px;
    border: 1px solid rgba(72, 143, 161, 0.15);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item.active:focus {
    outline: none;
}

.faq-item.active .faq-question span {
    color: var(--primary-color);
    -webkit-text-stroke: 0.4px #cbdce0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
    transition: color 0.3s ease;
}

.faq-toggle {
    background: transparent;
    border: none;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: white;
}

.faq-item:not(.active) .faq-toggle {
    border: .82px solid #488FA1;
    color: #488FA1;
}

.faq-toggle svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-size: 14px;
    font-weight: 300;
    color: #38424D;
    text-shadow: #000000;
    transition: all 0.3s ease;
    -webkit-text-stroke: 0.4px #cbdce0;
    padding-right: 50px;
}

/* Blog Cards Section */
.BlogSec {
    background-color: var(--bg-light);
    padding: 80px;
}

.blogHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogHeader h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 50px;
}

.blogHeader p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text-color);
}

.blogCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.blog1 img,
.blog2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 4px 4px 0 0;
}

.blog1,
.blog2 {
    background: white;
    overflow: hidden;
    border: 0.72px solid #E3DDDE;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    max-width: 100%;
}

.blog1:hover,
.blog2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog1:hover img,
.blog2:hover img {
    transform: scale(1.05);
}

.blog1 .date,
.blog2 .date {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.blogbody {
    margin: 15px 10px;
}

.blog1 h6,
.blog2 h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 36px;
    letter-spacing: -3%;
    padding: 5px 0;
}

.blog1 p,
.blog2 p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 30px;
    letter-spacing: -2%;
}

.blog3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category1 {
    background: #FFFFFF;
    display: flex;
    gap: 10px;
    padding: 6px;
    border-radius: 4px;
    border: .72px solid #F5F5F5;
    box-shadow: 0 8px 20px #488FA1(72, 143, 161, 0.03);
}

.catrgorydate {
    display: flex;
    gap: 10px;
}

.catrgorydate span {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.catrgorydate p {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.categoryhead p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--primary-color);
    padding-top: 5px;
}

.blog-btn {
    font-family: 'Geist', sans-serif;
    background-color: var(--primary-color);
    font-size: 16px;
    color: white;
    border: none;
    padding: 12px 24px;
    margin-top: 60px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s ease;
    box-shadow: 0px 5px 15px #488FA1;
}

.blog-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Contact Us */
.Contact-Us {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px;
    width: 100%;

}

.Contact-Us h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    color: var(--text-color);
}

.Contact-Us p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text-color);
}

.form {
    margin-top: 20px;
}

.formInput {
    display: flex;
    gap: 50px;
    margin-top: 2rem;
}

.custom-select select,
.formInput input {
    width: 421px;
    border: 1px solid #E2DDDE;
    border-radius: 55px;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 14px;
    appearance: none;
    outline: none;
}

.custom-select {
    position: relative;

}

/* Custom arrow */
.custom-select::after {
    content: "🞃";
    font-size: 14px;
    color: var(--text-color);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}


.formInput select:focus,
.formInput input:focus {
    border: 1px solid #3d8aab !important;
}


.formInput input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.formInput select option {
    padding: 10px;
}

.textarea {
    width: 900px;
    height: 254px;
    border: 1px solid #E2DDDE;
    border-radius: 16px;
    padding: 20px;
}

.textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.textarea:focus {
    border: 1px solid #3d8aab !important;
}

.form button {
    background-color: var(--primary-color);
    border-radius: 58px;
    padding: 10px 20px;
    border: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    float: inline-end;
    margin-top: 20px;
}

/* footer css  */
footer {
    background: #1E2833;
    color: white;
    padding: 30px 50px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr .6fr 2fr .5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 14px;
    padding-top: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons .facebook {
    background: #3b5998;
    color: white;
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icons .twitter {
    background: #1da1f2;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 14px;
}

.contact-info i {
    color: white;
    margin-top: 3px;
    font-size: 16px;
}

.subscribe-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 0;
    background: #FFFFFF;
    border-radius: 6px;

}

.subscribe-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
}

.subscribe-form button {
    background: #488FA1;
    border: none;
    padding: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 5px;
}

.subscribe-form button:hover {
    background: #3d8aab;
}

.subscribe-form button i {
    color: white;
    font-size: 18px;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(72, 143, 161, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    z-index: 1000;
    color: #1E2833;
}

.scroll-top:hover {
    transform: translateY(-3px);
}


.scroll-top i {
    color: #38424D;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 25px;
    text-align: center;
    color: #C3C3C3;
    font-size: 15px;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1200px) {

    .listItems {
        gap: 20px;
    }

    .hostAccount {
        height: auto;
        padding: 20px;
    }

    .hostBody {
        max-width: 100%;
        padding: 0 20px;
    }

    .hostImg {
        left: 0;
    }

    .guestAccount {
        height: auto;
        padding-bottom: 150px;
    }

    .guestBody {
        max-width: 100%;
        padding: 0 20px;
        gap: 50px;
    }

    .guestImg {
        right: 0;
    }

    .aboutUs {
        padding: 60px 0;
    }

    .aboutContainer {
        gap: 50px;
        padding: 0 20px;
    }

    .aboutContent h2 {
        font-size: 36px;
    }

    .aboutImage img {
        width: 500px;
        height: 450px;
    }

    .whyChoose {
        padding: 60px 0;
    }

    .whyChooseContainer {
        padding: 0 20px;
    }

    .whyChooseHeader h2 {
        font-size: 36px;
    }

    /* FAQ Section Responsive */
    .FaqsSection {
        padding: 60px 20px;
    }

    .faqContainer {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .faqLeft h1 {
        font-size: 36px;
        width: 100%;
    }

    .faqLeft p {
        font-size: 15px;
        width: 100%;
        margin: 0 auto;
    }

    .faqLeft img {
        width: 100px;
        height: 76px;
        margin-top: 20px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-toggle {
        width: 35px;
        height: 35px;
        margin-left: 15px;
    }

    .exploreGallery {
        padding: 60px 0;
    }

    .galleryContainer {
        padding: 0 20px;
    }

    .galleryHeader h2 {
        font-size: 32px;
    }

    .galleryGrid {
        grid-template-rows: repeat(2, 280px);
    }

    /* Hero Section Responsive */
    .heroSection {
        background-size: cover;
        background-position: center;
    }

    .logo {
        padding: 0 40px;
    }

    .heroBody {
        padding: 100px 40px 120px;
    }

    .heroBody h1 {
        font-size: 52px;
        width: 100%;
        max-width: 700px;
        line-height: 78px;
    }

    .heroBody p {
        font-size: 22px;
        width: 100%;
        max-width: 650px;
        line-height: 40px;
        margin: 24px 0;
    }

    .heroBody button {
        width: 160px;
        height: 48px;
        font-size: 16px;
    }

    /* Testimonials Responsive */
    .testimonials {
        padding: 60px 0;
    }



    .testimonialsHeader h2 {
        font-size: 32px;
    }

    .testimonial-card {
        min-width: 100%;
    }

    /* Packages Responsive */
    .packages {
        padding: 60px 0;
    }

    .packagesContainer {
        padding: 0 20px;
    }

    .packagesHeader h2 {
        font-size: 32px;
    }

    .packagesGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Blog Cards Responsive */
    .blogCards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .navbar {
        justify-content: space-between;
        padding: 0 20px;
    }

    .hostAccount {
        height: auto;
    }

    .hostTop {
        padding: 60px 20px 30px;
    }

    .hostTop h1 {
        font-size: 28px;
    }

    .hostTop p {
        font-size: 14px;
        padding: 0 20px;
    }

    .carousel-slides-guest,
    .carousel-slides {
        display: block;
    }

    .hostCarocel {
        max-width: 100%;
    }

    .hostBody {
        padding: 0 20px;
    }

    .hostCarocel {
        width: 100%;
        height: auto;
        padding-left: 0;
    }

    .carousel-slide {
        height: auto;
        padding: 30px 20px;
    }

    .hostImg {
        order: -1;
        margin-bottom: 20px;
        left: 0;
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }

    .hostImg img {
        max-width: 100%;
        height: auto;
    }

    .Hostpopup {
        top: 10px;
        right: 10px;
    }

    .guestAccount {
        height: auto;
    }

    .guestTop {
        padding: 60px 20px 30px;
    }

    .guestTop h1 {
        font-size: 28px;
    }

    .guestTop p {
        font-size: 14px;
        padding: 0 20px;
    }

    .guestBody {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .guestCarocel {
        width: 100%;
        height: auto;
        padding-right: 0;
    }

    .guestImg {
        right: 0;
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }

    .guestImg img {
        max-width: 100%;
        height: auto;
    }

    .Guestpopup {
        top: 10px;
        left: 10px;
    }

    .aboutUs {
        padding: 50px 0;
    }

    .aboutContainer {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .aboutContent h2 {
        font-size: 32px;
    }

    .aboutContent p {
        font-size: 15px;
        line-height: 26px;
    }

    .aboutStats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .statCard {
        flex: 1;
        min-width: 150px;
    }

    .aboutImage img {
        width: 450px;
        height: 400px;
    }

    .whyChoose {
        padding: 50px 0;
    }

    .whyChooseHeader {
        margin-bottom: 40px;
    }

    .whyChooseHeader h2 {
        font-size: 32px;
    }

    .whyChooseHeader p {
        font-size: 14px;
    }

    .service-card {
        min-width: 100%;
        padding: 30px 10px;
    }

    .services-nav {
        margin-top: 40px;
    }

        .services-slides{
            gap: 30px;
        }

    /* FAQ Section Responsive */
    .FaqsSection {
        padding: 50px 15px;
    }

    .faqLeft h1 {
        font-size: 32px;
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .faqLeft p {
        font-size: 14px;
        padding: 0 20px;
    }

    .faqLeft img {
        display: none;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
        margin-left: 12px;
    }

    .exploreGallery {
        padding: 50px 0;
    }

    .galleryHeader {
        margin-bottom: 40px;
    }

    .galleryHeader h2 {
        font-size: 28px;
    }

    .galleryGrid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        margin: 0;
    }

    .gallery-item.large-left,
    .gallery-item.large-right,
    .gallery-item.small {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 250px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-overlay h3 {
        font-size: 20px;
    }

    .gallery-overlay p {
        font-size: 13px;
        line-height: 20px;
    }

    .more-destinations {
        font-size: 16px;
        margin-top: 20px;
    }

    /* Hero Section Responsive */
    .logo {
        padding: 0 30px;
    }

    .heroBody {
        padding: 80px 30px 100px;
    }

    .heroBody h1 {
        font-size: 42px;
        line-height: 62px;
    }

    .heroBody p {
        font-size: 20px;
        line-height: 36px;
        margin: 20px 0;
    }

    .heroBody button {
        width: 150px;
        height: 46px;
        font-size: 15px;
    }

    /* Testimonials Responsive */
    .testimonials {
        padding: 50px 0;
    }

    .testimonialsHeader {
        margin-bottom: 40px;
    }

    .testimonialsHeader h2 {
        font-size: 28px;
    }

    .testimonial-profile img {
        width: 50px;
        height: 50px;
    }

    .testimonial-info h3 {
        font-size: 16px;
    }

    .testimonial-info p {
        font-size: 13px;
    }

    .quote-icon {
        width: 35px;
        height: 35px;
    }

    /* Packages Responsive */
    .packages {
        padding: 50px 0;
    }

    .packagesHeader {
        margin-bottom: 40px;
    }

    .packagesHeader h2 {
        font-size: 28px;
    }

    .packagesGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-image {
        height: 250px;
    }

    .package-info {
        padding: 20px;
    }

    .package-details h3 {
        font-size: 18px;
    }

    .package-details p {
        font-size: 13px;
    }

    .package-arrow {
        width: 36px;
        height: 36px;
    }

    .package-arrow img {
        width: 18px;
        height: 18px;
    }

    /* Blog Cards Responsive */
    .BlogSec {
        padding: 60px 40px;
    }

    .blogCards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog1 img,
    .blog2 img {
        width: 100%;
        height: auto;
    }

    .blogHeader h1 {
        font-size: 34px;
        line-height: 42px;
        text-align: center;
    }

    .blogHeader p {
        text-align: center;
    }

    /* contact-us responsive  */

    .formInput {
        gap: 10px;
    }

    .formInput select,
    .formInput input {
        width: 300px;
    }

    .textarea {
        width: 100%;
        ;
    }
}

@media (max-width: 768px) {
    .read-more-btn a {
        font-size: 14px;
    }

    .heroSection {
        height: 550px;
    }

    .testimonials-wrapper {
        overflow: hidden;
        padding: 30px 0;
    }

    .testimonials-slides {
        padding: 0 20px;
    }

    .hostTop {
        padding: 40px 15px 20px;
    }

    .hostTop h1 {
        font-size: 24px;
    }

    .hostbtn {
        width: 180px;
        height: 36px;
        font-size: 11px;
    }

    .carousel-slide {
        padding: 25px 15px;
    }

    .carousel-slide h3 {
        font-size: 18px;
    }

    .carousel-slide p {
        font-size: 13px;
        padding-right: 0;
    }

    .step-number {
        font-size: 32px;
    }

    .carousel-slides-guest,
    .carousel-slides {
        display: block;
    }

    .carousel-container {
        padding-left: 0;
    }

    .carousel-nav-controls {
        gap: 15px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        padding: 10px;

    }

    .carousel-progress-label {
        font-size: 12px;
    }

    .guestTop {
        padding: 40px 15px 20px;
    }

    .guestTop h1 {
        font-size: 24px;
    }

    .guestbtn {
        width: 180px;
        height: 36px;
        font-size: 11px;
    }

    .carousel-slide-guest {
        padding: 25px 15px;
    }

    .carousel-slide-guest h3 {
        font-size: 18px;
    }

    .carousel-slide-guest p {
        font-size: 13px;
        padding-right: 0;
    }

    .carousel-prev-guest,
    .carousel-next-guest {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .carousel-progress-label-guest {
        font-size: 12px;
    }

    .aboutContent h2 {
        font-size: 28px;
    }

    .aboutContent p {
        font-size: 14px;
        line-height: 24px;
    }

    .read-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .statCard {
        padding: 25px 30px;
    }

    .statCard h3 {
        font-size: 32px;
    }

    .statCard p {
        font-size: 13px;
    }

    .aboutImage img {
        width: 400px;
        height: 350px;
    }

    .whyChooseHeader h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 22px;
    }

    .services-prev,
    .services-next {
        width: 40px;
        height: 40px;
    }

    /* FAQ Section Responsive */
    .FaqsSection {
        padding: 40px 10px;
    }

    .faqLeft h1 {
        font-size: 28px;
    }

    .faqLeft p {
        font-size: 13px;
    }

    .faqLeft img {
        display: none;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faqRight {
        margin: 0 20px;
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
        margin-left: 10px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0;
        padding-right: 25px;
    }

    .galleryHeader h2 {
        font-size: 24px;
    }

    .galleryHeader p {
        font-size: 14px;
    }

    .gallery-item.large-left,
    .gallery-item.large-right,
    .gallery-item.small {
        height: 220px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-overlay h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .gallery-overlay p {
        font-size: 12px;
        line-height: 18px;
    }

    /* Hero Section Responsive */
    .logo {
        padding: 0 20px;
    }

    .services-container {
        padding: 20px;
    }

    .heroBody {
        justify-content: center;
        padding: 145px 4px 66px;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* margin: 0 40px; */
        text-align: center;
    }

    .heroBody h1 {
        font-size: 36px;
        line-height: 52px;
    }

    .heroBody p {
        font-size: 18px;
        line-height: 32px;
        margin: 18px 0;
    }

    .heroBody button {
        width: 140px;
        height: 44px;
        font-size: 14px;
    }

    /* Testimonials Responsive */
    .testimonialsHeader h2 {
        font-size: 24px;
    }

    .testimonialsHeader p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-profile img {
        width: 45px;
        height: 45px;
    }

    .testimonial-info h3 {
        font-size: 15px;
    }

    .testimonial-info p {
        font-size: 12px;
    }

    .quote-icon {
        width: 30px;
        height: 30px;
    }

    .testimonial-text p {
        font-size: 13px;
        line-height: 22px;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Packages Responsive */
    .packagesHeader h2 {
        font-size: 24px;
    }

    .packagesHeader p {
        font-size: 14px;
    }

    .package-image {
        height: 220px;
    }

    .book-now-badge {
        padding: 6px 16px;
        font-size: 13px;
    }

    .package-info {
        padding: 18px;
    }

    .package-details h3 {
        font-size: 17px;
    }

    .package-details p {
        font-size: 12px;
    }

    /* contact-us responsive  */

    .formInput {
        flex-direction: column;
        gap: 10px;
    }

    .formInput select,
    .formInput input {
        width: 400px;
    }

    .textarea {
        width: 100%;
        ;
    }

    /* blog  */

    .BlogSec {
        padding: 40px 20px;
    }

    .blogCards {
        grid-template-columns: 1fr;
    }

    .blog1,
    .blog2 {
        width: 100%;
    }

    .blog3 {
        gap: 15px;
    }

    .category1 {
        flex-direction: row;
        align-items: center;
    }

    .category1 img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 4px;
    }

    .blogHeader h1 {
        font-size: 28px;
    }

    .blogHeader p {
        font-size: 14px;
        line-height: 24px;
    }

    .blog-btn {
        font-size: 14px;
        padding: 10px 20px;
        margin-top: 40px;
    }
}


/* Responsive Styles */
@media (max-width: 992px) {
    .logo-img {
        width: 120px;
    }

    .carousel-nav,
    .carousel-nav-guest {
        padding-bottom: 40px;
    }

    .listItems {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: 10vh;
        gap: 10px;
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s ease;
        padding: 160px 34px;
        padding-top: 148px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .listItems li a {
        font-size: 14px;
        padding-bottom: 5px;
        color: #38424D;
        padding: 3px 0px;

    }

    .listItems li a:hover {
        font-size: 14px;
        padding-bottom: 5px;
        color: #488FA1;

    }

    .listItems.active {
        right: 0;
    }

    .menu-btn {
        display: flex;
    }

    .menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .guestTop p,
    .hostTop p {
        font-size: 14px;
        padding: 0;
    }

    .formInput {
        gap: 20px;
        margin-top: 1.5rem;
    }

    .Hostpopup {
        top: -10px;
        right: -50px;
    }

    .subscribe-form {
        margin-bottom: 50px;
    }

    footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-top {
        bottom: 10px;
        right: 30px;
    }


}

@media (max-width: 576px) {


    .BlogSec {
        padding: 30px 15px;
    }

    .blogHeader h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .blogHeader p {
        font-size: 13px;
        line-height: 22px;
    }

    .category1 img {
        width: 60px;
        height: 60px;
    }

    .catrgorydate span,
    .catrgorydate p {
        font-size: 14px;
        line-height: 24px;
    }

    .blog-btn {
        font-size: 13px;
        padding: 8px 18px;
    }



    .logo-img {
        width: 100px;
    }

    .listItems {
        width: 100%;
    }

    /* FAQ Section Responsive */
    .FaqsSection {
        padding: 30px 8px;
    }

    .faqLeft h1 {
        font-size: 24px;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .faqLeft p {
        font-size: 12px;

    }

    .faq-item {
        padding: 10px;
    }

    .faq-question {
        padding-bottom: 10px;
    }

    .faq-question span {
        font-size: 13px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        margin-left: 0;
        align-self: flex-end;
    }

    .faq-answer p {
        font-size: 12px;
        padding-left: 0;
    }

    .hostbtn {
        width: 160px;
        height: 32px;
        font-size: 10px;
        gap: 8px;
    }



    .hostbtn span {
        width: 6px;
        height: 6px;
    }

    .hostBody {
        padding: 0 10px;
        gap: 20px;
    }

    .carousel-slide {
        padding: 20px 12px;
    }

    .carousel-slide h3 {
        font-size: 16px;
        margin: 8px 0;
    }

    .carousel-slide p {
        font-size: 12px;
        line-height: 18px;
    }

    .get-started-btn {
        font-size: 12px;
        padding: 10px 20px;
        margin-top: 15px;
    }

    .step-number {
        font-size: 28px;
        padding: 8px 12px;
    }

    .notifications h6 {
        font-size: 10px;
    }

    .notifications div {
        font-size: 10px;
    }

    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
        padding: 8px;
        font-size: 14px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dots .dot.active {
        width: 24px;
    }

    .carousel-progress-label {
        font-size: 10px;
    }

    .progressText {
        padding-top: 8px;
    }

    .Hostpopup {
        padding: 8px 15px;
        top: px;
        right: px;
    }

    .Hostpopup img {
        width: 20px;
        height: 20px;
    }

    .Hostpopup p {
        font-size: 10px;
    }

    .guestAccount {
        padding: 15px;
    }

    .guestTop {
        padding: 30px 10px 20px;
    }

    .guestTop h1 {
        font-size: 20px;
        margin: 10px 0;
    }

    .guestTop p {
        font-size: 13px;
    }

    .guestbtn {
        width: 160px;
        height: 32px;
        font-size: 10px;
        gap: 8px;
    }

    .guestbtn span {
        width: 6px;
        height: 6px;
    }

    .guestBody {
        padding: 0 10px;
        gap: 20px;
    }

    .carousel-slide-guest {
        padding: 20px 12px;
    }

    .carousel-slide-guest h3 {
        font-size: 16px;
        margin: 8px 0;
    }

    .carousel-slide-guest p {
        font-size: 12px;
        line-height: 18px;
    }

    .carousel-prev-guest,
    .carousel-next-guest {
        width: 36px;
        height: 36px;
        padding: 8px;
        font-size: 14px;
    }

    .carousel-dots-guest .dot-guest {
        width: 8px;
        height: 8px;
    }

    .carousel-dots-guest .dot-guest.active {
        width: 24px;
    }

    .carousel-progress-label-guest {
        font-size: 10px;
    }

    .progressText-guest {
        padding-top: 8px;
    }

    .Guestpopup {
        padding: 8px 15px;
        top: 8px;
        left: 8px;
    }

    .Guestpopup img {
        width: 20px;
        height: 20px;
    }

    .Guestpopup p {
        font-size: 10px;
    }

    .aboutContent h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .aboutContent p {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .read-more-btn {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 30px;
    }

    .aboutStats {
        flex-direction: column;
        gap: 15px;
    }

    .statCard {
        padding: 20px 25px;
        min-width: 100%;
    }

    .statCard h3 {
        font-size: 28px;
    }

    .statCard p {
        font-size: 12px;
    }

    .aboutImage img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .exploreGallery {
        padding: 40px 0;
    }

    .galleryContainer {
        padding: 0 15px;
    }

    .galleryHeader {
        margin-bottom: 30px;
    }

    .galleryHeader h2 {
        font-size: 20px;
    }

    .galleryHeader p {
        font-size: 13px;
    }

    .galleryGrid {
        gap: 12px;
        margin-bottom: 40px;
    }

    .gallery-item.large-left,
    .gallery-item.large-right,
    .gallery-item.small {
        height: 200px;
    }

    .gallery-overlay {
        padding: 12px;
    }

    .gallery-overlay h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .gallery-overlay p {
        font-size: 11px;
        line-height: 16px;
    }

    .more-destinations {
        font-size: 14px;
    }

    .more-destinations span {
        font-size: 14px;
    }

    /* Hero Section Responsive */
    .logo {
        padding: 0 15px;
    }

    .heroBody {
        padding: 150px 15px 70px;
    }

    .heroBody h1 {
        font-size: 28px;
        line-height: 42px;
    }

    .heroBody p {
        font-size: 16px;
        line-height: 28px;
        margin: 16px 0;
    }

    .heroBody button {
        width: 130px;
        height: 42px;
        font-size: 14px;
    }

    /* Testimonials Responsive */
    .testimonials {
        padding: 40px 0;
    }



    .testimonialsHeader {
        margin-bottom: 30px;
    }

    .testimonialsHeader h2 {
        font-size: 20px;
    }

    .testimonialsHeader p {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-header {
        margin-bottom: 15px;
    }

    .testimonial-profile {
        gap: 12px;
    }

    .testimonial-profile img {
        width: 40px;
        height: 40px;
    }

    .testimonial-info h3 {
        font-size: 14px;
    }

    .testimonial-info p {
        font-size: 11px;
    }

    .quote-icon {
        width: 25px;
        height: 25px;
    }

    .testimonial-text p {
        font-size: 12px;
        line-height: 20px;
    }

    .testimonials-nav {
        gap: 20px;
        padding: 20px;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .testimonials-dots .testimonial-dot {
        width: 8px;
        height: 8px;
    }

    .testimonials-dots .testimonial-dot.active {
        width: 24px;
    }

    /* Packages Responsive */
    .packages {
        padding: 40px 0;
    }

    .packagesContainer {
        padding: 0 15px;
    }

    .packagesHeader {
        margin-bottom: 30px;
    }

    .packagesHeader h2 {
        font-size: 20px;
    }

    .packagesHeader p {
        font-size: 13px;
    }

    .packagesGrid {
        gap: 15px;
    }

    .package-image {
        height: 200px;
    }

    .book-now-badge {
        right: 15px;
        padding: 6px 14px;
        font-size: 12px;
    }

    .package-info {
        padding: 15px;
    }

    .package-details h3 {
        font-size: 16px;
    }

    .package-details p {
        font-size: 11px;
    }

    .package-arrow {
        width: 32px;
        height: 32px;
    }

    .package-arrow img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 460px) {
    .subscribe-form {
        margin-bottom: 20px;
    }

    .Contact-Us {
        padding: 30px;
    }

    .formInput {
        gap: 15px;
        margin-top: 1rem;
    }

    .formInput select,
    .formInput input {
        width: 300px;
    }
}