/* ===========================
        HEADER SECTION
=========================== */
        
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    background-color: var(--white);
    /*backdrop-filter: blur(18px);*/
    /*-webkit-backdrop-filter: blur(18px);*/
    /*background: rgba(255,255,255,0.12);*/
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}
.header.scrolled {
    background: rgba(10, 61, 98, 0.8);
    padding: 10px 0;
}
.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 150px;
}
/*.logo-mark {*/
/*    width: 38px;*/
/*    height: 38px;*/
/*    border-radius: 50%;*/
/*    background: linear-gradient(135deg, #0dbf6d, #0a3d62);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    color: white;*/
/*    font-weight: 700;*/
/*    font-size: 18px;*/
/*    letter-spacing: 1px;*/
/*    box-shadow: 0 0 12px rgba(13,191,109,0.4);*/
/*}*/
/*.logo-text {*/
/*    font-weight: 700;*/
/*    font-size: 20px;*/
/*    color: #fff;*/
/*    letter-spacing: 0.5px;*/
/*}*/
.menu {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.menu li a{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
}
.menu li a:hover {
    color: var(--blue);
}
.menu-toggle, .menu-close, .mobile-title{
    display: none;
}
.nav {
    display: flex;
    gap: 35px;
}
.nav-item {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    padding-bottom: 6px;
    transition: 0.3s;
}
.nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0px;
    height: 2px;
    background: #0dbf6d;
    transition: 0.3s ease;
}
.nav-item:hover,
.nav-item.active {
    color: #0dbf6d;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
    left: 0;
}
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}



/* ===========================
        HERO SECTION
=========================== */

.hero-section {
    position: relative;
    background: var(--bg-gradient);
    overflow: hidden;
    padding: 150px 0 70px 0;
}
.hero-bg-wave {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(13,191,109,0.25), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(0,180,110,0.15), transparent 60%);
    filter: blur(60px);
    animation: waveMove 8s infinite alternate ease-in-out;
}
@keyframes waveMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-25px); }
}
.hero-floating-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(13,191,109,0.15);
    filter: blur(30px);
    animation: floatBubble 6s infinite ease-in-out alternate;
}
.shape1 { top: 10%; left: -60px; }
.shape2 { bottom: 10%; right: -60px; animation-delay: 2s; }

@keyframes floatBubble {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(25px) scale(1.1); }
}

/* RIGHT FLOATING CARDS */
.hero-right {
    position: relative;
    height: 450px;
}
.hero-card {
    position: absolute;
    width: 200px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: floatingCards 6s infinite ease-in-out alternate;
}
.hero-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.hero-card-info {
    padding: 12px;
    color: #fff;
}
@keyframes floatingCards {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
.hero-card-1 { top: 0px; left: 0px; animation-delay: 0s; }
.hero-card-2 { top: 100px; left: 140px; animation-delay: 1s; }
.hero-card-3 { top: 220px; left: 60px; animation-delay: 2s; }

/* RESPONSIVE */
@media(max-width: 992px) {
.hero-right { display: none; }
}


/* ===========================
        DESTINATIONS
=========================== */

.destination-section {
}
.destination-card {
    position: relative;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: .4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.65));
    transition: .4s ease;
}
.destination-content {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: #fff;
}
.destination-card:hover img {
    transform: scale(1.1);
}
.destination-card:hover {
    border: 1px solid rgba(13,191,109,0.35);
    box-shadow: 0 0 18px rgba(13,191,109,0.4);
}
.destination-card:hover .dest-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.8));
}

/* ===========================
         PACKAGES
=========================== */

.package-section {
}
.package-card {
    background: #052636;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: .35s ease;
}
.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13,191,109,0.4);
    box-shadow: 0 0 18px rgba(13,191,109,0.35);
}
.package-image {
    position: relative;
    height: 190px;
}
.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.package-duration {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: var(--green);
    color: #000;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}
.package-content {
    padding: 18px;
}
.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 300;
    color: var(--blue);
    margin-bottom: 20px;
    border-top: solid 1px rgb(238 238 238 / 13%);
    border-bottom: solid 1px rgb(238 238 238 / 13%);
    padding: 5px 0;
}

.filter-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.filter-select {
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #c8c8c8;
    min-width: 230px;
    background: #fff;
    cursor: pointer;
}

.filter-select:focus {
    border-color: #007bff;
}

.reset-btn {
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #007bff;
    color: #007bff;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.reset-btn:hover {
    background: #007bff;
    color: #fff;
}


/* =========================
      ABOUT SECTION 2026
========================= */

.about-section {
}
.about-image-wrap {
    position: relative;
    width: 100%;
    height: auto;
}
.about-main-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(13, 191, 109, 0.2);
    box-shadow: 0 0 30px rgba(13, 191, 109, 0.15);
    animation: floatimg 4s ease-in-out infinite;
}
/* FLOAT ANIMATION */
@keyframes floatimg {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
/* DECOR SHAPES */
.shape-dot {
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: 40%;
    animation: pulseDot 2.5s infinite ease-in-out;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.6); opacity: 1; }
}
.shape-ring {
    position: absolute;
    right: -25px;
    bottom: 10%;
    width: 60px;
    height: 60px;
    border: 2px solid var(--green);
    border-radius: 50%;
    opacity: .4;
    animation: rotateRing 6s linear infinite;
}
@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================
   WHY CHOOSE US / FEATURE
=========================== */
.feature-section {
}
.feature-card {
    position: relative;
    padding: 30px 25px 25px 25px;
    background: var(--bg-blue);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(14px);
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: 0.35s ease-in-out;
    box-shadow: 0 0 0 rgba(78,163,255,0);
    height: 100%;
}
.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #4ea3ff;
    transition: 0.3s ease;
    border: 1px solid rgba(78,163,255,0.3);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(78,163,255,0.25);
    border-color: rgba(78,163,255,0.5);
}
.feature-card:hover .feature-icon {
    background: #4ea3ff;
    color: #fff;
    border-color: #4ea3ff;
    box-shadow: 0 0 20px rgba(78,163,255,0.6);
}

/* ===============================
        CATEGORIES
=============================== */

.category-section {
}
.category-wrapper {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.category-card {
    background: #0f214a;
    padding: 22px 18px;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.category-card:hover {
    transform: translateY(-6px);
    background: #102a5c;
    box-shadow: 0 6px 18px rgba(78, 163, 255, 0.18);
    border-color: rgba(78, 163, 255, 0.4);
}
.category-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(78, 163, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ea3ff;
    font-size: 22px;
    transition: 0.3s ease;
}
.category-card:hover .tc-icon {
    background: rgba(78, 163, 255, 0.2);
    color: #7bbbff;
    box-shadow: 0 0 10px rgba(78, 163, 255, 0.4);
}
.category-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #d8e6ff;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}
.category-card:hover .category-title {
    color: #ffffff;
}


/* ==========================
         CTA SECTION
========================== */

.cta-section {
    position: relative;
    background: url('https://images.pexels.com/photos/457882/pexels-photo-457882.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(3 21 31 / 81%), rgb(3 21 31));
    backdrop-filter: blur(2px);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
    animation: fadeUp 1.2s ease forwards;
}
.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}
.highlight-item i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 35px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}
.highlight-item:hover {
    transform: translateY(-8px) scale(1.05);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
      GALLERY SECTION
========================= */

.gallery-section {
    padding: 100px 0;
    background: #f4f8ff;
}

.gallery-grid {
    display: grid;
    gap: 18px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: zoom-in;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,70,160,0.10);
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.12);
}
.gallery-item:hover {
    border-color: #8ab6ff;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 40, 90, 0.45);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: 0.35s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
}


/* =============================
    INQUIRY / CONTACT SECTION
============================= */
.contact-section {
    position: relative;
    overflow: hidden;
}
.contact-section:before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0,255,150,0.25), transparent 70%);
    top: -120px;
    left: -100px;
    filter: blur(40px);
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: center;
}
.contact-info-item i {
    font-size: 26px;
    color: var(--blue);
}

/* MAP */
.contact-map {
    position: relative;
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,255,150,0.3);
}

.contact-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,20,10,0.2);
    pointer-events: none;
}

/* CONTACT FORM */
.contact-form {
    background: rgba(0,40,30,0.4);
    border: 1px solid rgba(0,255,150,0.25);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group.two {
    display: flex;
    gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,255,150,0.25);
    border-radius: 10px;
    color: #e7fff5;
    font-size: 14px;
    margin-bottom: 10px;
}
.contact-form option{
    color: var(--black);
}
.contact-form textarea {
    height: 120px;
    resize: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 10px rgba(0,255,150,0.3);
}

/* ===============================
   TESTIMONIAL SECTION 2026
=============================== */

.testimonial-section {
    position: relative;
}

.testimonial-section:before {
    content: "";
    position: absolute;
    top: 20%;
    right: -80px;
    width: 200px;
    height: 200px;
    background: #cfe3ff;
    opacity: 0.5;
    border-radius: 50%;
    filter: blur(80px);
}
.testimonial-card {
    background: var(--bg-deep);
    border-radius: 18px;
    padding: 30px 25px 20px;
    border: 1px solid #dfe8ff;
    box-shadow: 0 8px 24px rgba(0, 40, 100, 0.08);
    position: relative;
    overflow: hidden;
    transition: .3s ease;
    text-align: center;
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 40, 100, 0.12);
}
.testimonial-card:after {
    content: "";
    position: absolute;
    top: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    background: rgba(160, 190, 255, 0.5);
    border-radius: 50%;
    filter: blur(40px);
}
.testimonial-avatar {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #a6c7ff;
    box-shadow: 0 0 12px rgba(80, 120, 200, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-rating {
    margin-top: 10px;
    font-size: 16px;
    color: #ffb400;
    letter-spacing: 2px;
}
.testimonial-content{
    color: var(--white);
}



/* ===========================
   FOOTER 2026
=========================== */

.ft-footer {
    background: #0b1c3f;
    color: #c7d4f6;
    padding-top: 80px;
    position: relative;
}

/* TOP WAVE */
.footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: url('https://svgshare.com/i/vTm.svg') repeat-x;
    background-size: contain;
    opacity: 0.5;
}

/* GRID */
.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* LOGO */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #4ea3ff;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #c7d4f6;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #6cbaff;
    padding-left: 6px;
}

/* TITLES */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #4ea3ff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(78,163,255,0.7);
}

/* NEWSLETTER */
.newsletter {
    display: flex;
    margin-top: 12px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter input {
    border: none;
    padding: 10px 12px;
    background: transparent;
    color: #fff;
    width: 100%;
    font-size: 14px;
}

.newsletter input::placeholder { color: #9bb4d9; }

.newsletter button {
    background: #4ea3ff;
    padding: 0 18px;
    border: none;
    cursor: pointer;
    color: #fff;
}

.newsletter button:hover {
    background: #76baff;
}

/* CONTACT */
.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
    opacity: 0.9;
}

.footer-contact i {
    margin-right: 6px;
    color: #4ea3ff;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 45px;
    padding: 18px 0;
    background: rgba(255,255,255,0.05);
    font-size: 13px;
    color: #b8c8e5;
}
.footer-bottom .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}





































/* 👉 Core CSS  */
/**{*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/
/*html {*/
/*  scroll-behavior: smooth;*/
/*}*/
/*body{*/
/*    font-family: "Poppins", sans-serif !important;*/
/*}*/
/*img{*/
/*    width: 100%;*/
/*}*/
/*li{*/
/*    list-style: none !important;*/
/*}*/
/*a{*/
/*    text-decoration: none !important;*/
/*}*/
/*ul{*/
/*    padding-left: 0 !important;*/
/*}*/

/* 👉 Variables  */

/*:root {*/
/*    --primary: #001544;*/
/*    --purple: #4d4089;*/
/*    --white: #ffffff;*/
/*    --black: #000000*/
/*}*/

/* 👉 Global CSS  */


/*.sub-heading {*/
/*    color: var(--black);*/
/*    font-size: 40px;*/
/*    font-weight: 800;*/
/*    line-height: 50px;*/
/*    margin: 10px 0 0 0;*/
/*}*/
/*.mid-heading {*/
/*    color: var(--black);*/
/*    font-size: 24px;*/
/*    font-weight: 800;*/
/*    line-height: 50px;*/
/*    margin: 10px 0 0 0;*/
/*}*/
/*.sub-text {*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    line-height: 25px;*/
/*}*/
/*.mini-text {*/
/*    color: var(--black);*/
/*    font-weight: 400;*/
/*    text-transform: uppercase;*/
/*    font-size: 15px;*/
/*    line-height: 1;*/
/*    max-width: 100%;*/
/*    margin: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    font-style: italic;*/
/*}*/
/*.mini-text:before {*/
/*    display: inline-flex;*/
/*    content: "";*/
/*    flex-grow: 1;*/
/*    width: 20px;*/
/*    height: 2.5px;*/
/*    background-color: var(--primary);*/
/*    margin-right: 10px;*/
/*}*/


/*.paragraph, .paragraph a {*/
/*    color: var(--black);*/
/*    font-size: 15px;*/
/*    font-weight: 400;*/
/*    line-height: 25px;*/
/*}*/
/*.underline {*/
/*    width: 100px;*/
/*    height: 2px;*/
/*    margin: 10px 0;*/
/*    background-color: var(--black);*/
/*}*/
/*.section-head {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: flex-start;*/
/*    align-items: flex-start;*/
/*}*/
/*.mid-mg{*/
/*    margin-top: 50px;*/
/*}*/
/*.small-mg{*/
/*    margin-top: 30px;*/
/*}*/
/*.min-mg{*/
/*    margin-top: 20px;*/
/*}*/
/*.tiny-mg{*/
/*    margin-top: 20px;*/
/*}*/

/*.mg-bt{*/
/*    margin-bottom: 20px;*/
/*}*/
/*.breadcrumb-section {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    font-size: 12px;*/
/*    font-weight: 500;*/
/*    gap: 5px;*/
/*}*/
/*.breadcrumb-section p{*/
/*    margin: 0;*/
/*}*/
/*.hidden{*/
/*    display: none;*/
/*}*/
/*.book-now-btn a, .submit-btn, .inquiry-btn {*/
/*    font-size: 15px;*/
/*    font-weight: 500;*/
/*    background-color: var(--purple);*/
/*    padding: 10px 25px 8px 25px;*/
/*    border-radius: 30px;*/
/*    color: var(--white);*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 6px;*/
/*    transition: .3s ease-in-out;*/
/*    border: solid 1px var(--purple);*/
/*}*/
/*.book-now-btn a img{*/
/*    width: 15px;*/
/*}*/
/*.book-now-btn a:hover, .submit-btn:hover, .inquiry-btn:hover {*/
/*    transform: translateY(-8px);*/
/*    background-color: var(--black);*/
/*    border: solid 1px var(--white);*/
/*}*/
/*.whatsapp-btn {*/
/*    font-size: 24px;*/
/*    background-color: #128c7e;*/
/*    color: #fff;*/
/*    border-radius: 100px;*/
/*    padding: 10px;*/
/*    width: 38px;*/
/*    height: 38px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: fixed;*/
/*    bottom: 10px;*/
/*    right: 10px;*/
/*}*/


/*====================================================*/






/*.primary-btn{*/
/*    font-weight: 400;*/
/*    color: var(--white);*/
/*    background-color: var(--primary);*/
/*    border: solid 1px var(--primary);*/
/*    border-radius: 100px;*/
/*    font-size: 16px;*/
/*    padding: 10px 30px;*/
/*    transition: .3s ease-in-out;*/
/*}*/
/*.primary-btn:hover{*/
/*    color: var(--primary);*/
/*    background-color: var(--white);*/
/*    border: solid 1px var(--white);*/
/*    transform: translateY(-8px); */
/*}*/
/*.secondary-btn{*/
/*    font-weight: 400;*/
/*    color: var(--primary);*/
    /* background-color: var(--white); */
/*    border: solid 1px var(--primary);*/
/*    border-radius: 100px;*/
/*    font-size: 16px;*/
/*    padding: 10px 30px;*/
/*    transition: .3s ease-in-out;*/
/*}*/
/*.secondary-btn:hover{*/
/*    color: var(--white);*/
/*    background-color: var(--primary);*/
/*    border: solid 1px var(--primary);*/
/*    transform: translateY(-8px); */
/*}*/
/*.bounce-btn{*/
/*    display: inline-block;*/
/*    margin: 0 auto;*/
/*    font-weight: 500;*/
/*    color: var(--white);*/
/*    background-color: var(--primary);*/
/*    border: solid 1px var(--primary);*/
/*    border-radius: 100px;*/
/*    font-size: 18px;*/
/*    padding: 10px 30px;*/
/*    transition: .3s ease-in-out;*/
/*}*/
/*.bounce-btn:hover{*/
/*    animation: bounce 1s infinite;*/
/*}*/
/*@keyframes bounce {*/
/*	0% {*/
/*		transform: scale(1.0);*/
/*	}*/
/*	50% {*/
/*		transform: scale(1.1);*/
/*	}*/
/*    100% {*/
/*		transform: scale(1.0);*/
/*	}*/
/*}*/

/*body{*/

/*}*/
/*ul{*/
/*    margin: 0 !important;*/
/*    padding: 0 !important;*/
/*}*/

/* 👉 HEADER SECTION  */

/*.header-block {*/
/*    width: 100%;*/
/*    height: 90px;*/
/*    background-color: #fff;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*}*/
/*.logo {*/
/*    width: 120px;*/
/*    margin-top: 60px;*/
/*    position: relative;*/
/*    background-color: #fff;*/
/*    z-index: 9;*/
/*    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
/*    border-radius: 100%;*/
/*    padding: 2px;*/
/*}*/
/*.logo img {*/
/*    width: 100%;*/
/*}*/
/*.menu {*/
/*    display: flex;*/
/*    gap: 30px;*/
/*}*/
/*.menu li a{*/
/*    font-size: 13px;*/
/*    text-transform: uppercase;*/
/*    font-weight: 600;*/
/*    color: var(--black);*/
/*}*/
/*.menu li a:hover {*/
/*    color: var(--purple);*/
/*}*/
/*.header-contact{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: end;*/
/*    gap: 20px;*/
/*}*/
/*.header-call{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*}*/
/*.header-call img {*/
/*    width: 60px;*/
/*}*/
/*.header-call a {*/
/*    font-size: 15px;*/
/*    font-weight: 500;*/
/*    color: #4d4089;*/
/*}*/
/*.header-call span {*/
/*    font-size: 12px;*/
/*    color: #333;*/
/*    display: block;*/
/*}*/
/*.menu-toggle{*/
/*    display: none;*/
/*}*/
/*.menu-close {*/
/*    display: none;*/
/*}*/



/*👉 GENERAL SECTION BODY */

/*.feature-section, .packages-section, .about-section, .gallery-section, .info-fact-section, .food-section, .event-section, .contact-section, .testimonial-section{*/
/*    padding: 70px 0;*/
/*    position: relative;*/
/*}*/
/*.page-banner{*/
/*    padding: 70px 0 50px 0;*/
/*}*/


/* 👉 HERO SECTION  */

/*.banner-section{*/
/*    height: 500px;*/
/*    width: 100%;*/
/*    background-size: cover;*/
/*    position: relative;*/
/*    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 1)));*/
/*}*/
/*.heroSwiper.swiper {*/
/*    width: 100%;*/
/*    height: 500px;*/
/*    position: relative;*/
/*    }*/
/*.heroSwiper .swiper-slide {*/
/*    width: 100%;*/
/*    height: 550px;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    background: transparent;*/
/*    display: flex !important;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/
/*.banner-content{*/
/*    width: 100%;*/
/*    height: 500px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: flex-start;*/
/*    flex-direction: column;*/
/*}*/
/*.banner-heading {*/
/*    color: #FFFFFF;*/
/*    font-size: 60px;*/
/*    font-weight: 800;*/
/*    text-transform: uppercase;*/
/*    line-height: 60px;*/
/*    text-shadow: 2px 2px #000000;*/
/*    margin-top: 70px;*/
/*}*/
/*.banner-description {*/
/*    color: #ffffff;*/
/*    font-size: 20px;*/
/*    font-weight: 400;*/
/*    text-shadow: 1px 1px #000000;*/
/*}*/


/*.hero-image{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: end;*/
/*    height: 550px;*/
/*    position: relative;*/
/*}*/
/*.hero-image img{*/
/*    width: 250px;*/
/*    z-index: 1;*/
/*}*/
/*.backdrop-circle {*/
/*    background-color: #34cc19;*/
/*    width: 280px;*/
/*    height: 280px;*/
/*    position: absolute;*/
/*    right: 0px;*/
/*    bottom: 80px;*/
/*    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/
   
/*    background-image: linear-gradient(to right, red, yellow);*/
/*    border-radius: 100%;*/
/*}*/
/*.backdrop-box{*/
/*    background-color: #ffffff;*/
/*    width: 230px;*/
/*    height: 70px;*/
/*    position: absolute;*/
/*    bottom: 20px;*/
/*    right: 40px;*/
/*    z-index: 9;*/
/*    border-radius: 8px;*/
/*    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
/*}*/




/*👉 FEATURE SECTION */

/*.feature-item-image {*/
/*    margin-top: -250px;*/
/*    border-radius: 15px;*/
/*    overflow: hidden;*/
/*}*/
/*.feature-item-box {*/
/*    -ms-flex-preferred-size: calc(33.33333% - 30px);*/
/*    flex-basis: calc(33.33333% - 30px);*/
/*    background-color: #fff;*/
/*    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*    transition: .5s ease-in-out;*/
/*}*/
/*.feature-item-box-bg {*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    padding: 50px 25px 25px 25px;*/
/*}*/
/*.feature-item-box .sub-heading {*/
/*    overflow: hidden;*/
/*    color: var(--purple);*/
/*    z-index: 2;*/
/*    position: relative;*/
/*}*/
/*.feature-item-box .paragraph {*/
/*    z-index: 2;*/
/*    position: relative;*/
/*}*/
/*.feature-item-box .underline{*/
/*    overflow: hidden;*/
/*    z-index: 2;*/
/*    position: relative;*/
/*    background-color: var(--black);*/
/*}*/
/*.feature-item-box-bg:hover,*/
/*.feature-item-box-bg:hover .sub-text,*/
/*.feature-item-box-bg:hover .paragraph,*/
/*.feature-item-box-bg:hover p{*/
/*    text-decoration: none;*/
/*    color: var(--white);*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/
/*.feature-item-box-bg:hover .underline{*/
/*    background-color: var(--white);*/
/*}*/
/*.feature-item-box-bg:hover .feature-item-box-overlays {*/
/*    -webkit-transform: scale(10);*/
/*    -ms-transform: scale(10);*/
/*    transform: scale(10);*/
/*}*/
/*.feature-item-box-overlays {*/
/*    height: 128px;*/
/*    width: 128px;*/
/*    background-color: #f9b234;*/
/*    z-index: 1;*/
/*    position: absolute;*/
/*    top: -75px;*/
/*    right: -75px;*/
/*    border-radius: 50%;*/
/*    transition: .5s ease-in-out;*/
/*}*/


/*👉 PACKAGE */

/*.packages-section .section-head{*/
/*    align-items: end;*/
/*}*/
/*.package-card {*/
/*    background-color: #fff;*/
/*    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
/*    border-radius: 10px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    height: 100%;*/
/*}*/
/*.package-thumbnail{*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*}*/
/*.package-thumbnail img{*/
/*    height: 200px;*/
/*    object-fit: cover;*/
/*}*/
/*.package-content{*/
/*    padding: 25px 25px 25px 25px;*/
/*    border-radius: 10px;*/
/*    position: relative;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*}*/
/*.package-content .sub-heading {*/
/*    font-weight: 600;*/
/*    color: var(--purple);*/
/*}*/
/*.button-group{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*}*/
/*.package-price {*/
/*    font-size: 12px;*/
/*    margin-bottom: 0;*/
/*    font-weight: 300;*/
/*    color: #fff;*/
/*    background-color: var(--purple);*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    padding: 6px 10px 6px 15px;*/
/*    border: solid 1px #fff;*/
/*    border-radius: 20px 0 0 0;*/
/*}*/


/*👉 ABOUT SECTION */

/*.about-image {*/
/*	display: inline-block;*/
/*	padding: 25px;*/
/*	border-width: 20px;*/
/*	border-style: solid;*/
/*	border-color: #2F2D2D #434040 #4F4C4C #434040;*/
/*	background: #f5f5f5;*/
/*	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#E5E4DF), to(#CDCDC6));*/
/*	background-image: -webkit-linear-gradient(#E5E4DF, #CDCDC6);*/
/*	background-image: -moz-linear-gradient(#E5E4DF, #CDCDC6);*/
/*	background-image: -o-linear-gradient(#E5E4DF, #CDCDC6);*/
/*	background-image: linear-gradient(#E5E4DF, #CDCDC6);*/
/*	box-shadow: inset 0 2px 5px rgba(0,0,0,.6),0 5px 2px rgba(0,0,0,.1), 0 10px 20px rgba(0,0,0,.8);*/
/*	position: relative;*/
/*	overflow: hidden;*/
/*}*/
/*.about-image::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: -175px;*/
/*	right: -20%;*/
/*	width: 400px;*/
/*	height: 400px;*/
/*	transform: rotateZ(-40deg);*/
/*	-webkit-transform: rotateZ(-40deg);*/
/*	-moz-transform: rotateZ(-40deg);*/
/*	-o-transform: rotateZ(-40deg);*/
/*	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255,255,255,.4)), to(rgba(255,255,255,0)));*/
/*	background-image: -webkit-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));*/
/*	background-image: -moz-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));*/
/*	background-image: -o-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));*/
/*	background-image: linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));*/
/*}*/
/*.about-image img {*/
/*	border-width: 2px;*/
/*	border-style: solid;*/
/*	border-color: #BBBAB4 #C7C7BF #E5E4DF #C7C7BF;*/
/*	box-shadow:  0 -1px 1px rgba(0,0,0,.1), 0 1px 1px 1px rgba(255,255,255,.7);*/
/*}*/
/*.about-content li {*/
/*    display: flex;*/
/*    align-items: flex-start;*/
/*    gap: 10px;*/
/*    margin: 3px 0;*/
/*    font-size: 15px;*/
/*}*/
/*.about-content li img{*/
/*    width: 20px;*/
/*}*/

/*👉 GALLERY SECTION*/

/*.gallery-section .section-head{*/
/*    align-items: end;*/
/*}*/
/*.lightboxpreview {*/
/*    transition: all .3s linear;*/
/*    padding-top:60%;*/
/*    cursor:pointer;*/
/*    background-size:cover;*/
/*}*/
/*.lightbox-content {*/
/*    max-height:75svh;*/
/*    height:75svh;*/
/*}*/
/*.lightbox-close { */
/*    cursor:pointer;*/
/*    margin-left: auto;*/
/*    position:absolute;*/
/*    right:-30px;*/
/*    top:-30px;*/
/*    color:white;*/
/*    font-size: 2rem;*/
/*    font-weight: 700;*/
/*    line-height: 1;*/
/*}*/
/*.modalscale {*/
/*    transform:scale(0);*/
/*    opacity:0;*/
/*}*/
/*.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-enabled{*/
/*    transition:all .4s ease-in-out;*/
/*}*/
/*.lightbox_img_wrap {*/
/*    padding-top:65%;*/
/*    position:relative;*/
/*    overflow:hidden;*/
/*    margin-bottom: 20px;*/
/*}*/
/*.lightbox-enabled:hover {*/
/*    transform:scale(1.1)*/
/*}*/
/*.lightbox-enabled {*/
/*    width:100%;*/
/*    height:100%;*/
/*    position:absolute;*/
/*    top:0;*/
/*    object-fit:cover;*/
/*    cursor:pointer;*/
/*}*/
/*.lightbox-container {*/
/*    width:100svw;*/
/*    height:100svh;*/
/*    position:fixed;*/
/*    top:0;*/
/*    left:0;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    background-color:rgba(0,0,0,.6);*/
/*    z-index:9999;*/
/*    opacity:0;*/
/*    pointer-events:none;*/
/*}*/
/*.lightbox-container.active {*/
/*    opacity:1;*/
/*    pointer-events:all;*/
/*}*/
/*.lightbox-image-wrapper {*/
/*    display:flex;*/
/*    transform:scale(0);*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    max-width:90vw;*/
/*    max-height:90vh;*/
/*    position:relative;*/
/*}*/
/*.lightbox-container.active .lightbox-image-wrapper {*/
/*    transform:scale(1);*/
/*}*/
/*.lightbox-btn, #close {*/
/*    color:white;*/
/*    z-index:9999999;*/
/*    cursor:pointer; */
/*    position:absolute;*/
/*    font-size:50px;*/
/*}*/
/*.left {*/
/*    left:50px;*/
/*}*/
/*.right {*/
/*    right:50px;*/
/*}*/
/*#close {*/
/*    top:50px;*/
/*    right:50px;*/
/*}*/
/*.lightbox-image {*/
/*    width:100%;*/
/*    max-height:95vh;*/
/*    object-fit:cover;*/
/*}*/

/*@keyframes slideleft {*/
/*  33% {transform:translateX(-300px);*/
/*  opacity:0;*/
/*  }*/
/*  66% {transform:translateX(300px);*/
/*  opacity:0;*/
/*  }*/
/*}*/
/*.slideleft {*/
/*     animation-name: slideleft;*/
/*    animation-duration: .5s; */
/*    animation-timing-function: ease; */
/*}*/
/*@keyframes slideright {*/
/*  33% {transform:translateX(300px);*/
/*  opacity:0;}*/
/*  66% {transform:translateX(-300px);*/
/*  opacity:0;}*/
/*}*/
/*.slideright{*/
/*    animation-name: slideright;*/
/*    animation-duration: .5s; */
/*    animation-timing-function: ease; */
/*}*/


/*👉 INFO FACT */

/*.info-fact-section .mini-text, .info-fact-section .sub-heading{*/
/*    color: var(--white);*/
/*}*/
/*.info-fact-section .mini-text:before{*/
/*    background-color: var(--white);*/
/*}*/
/*.info-list {*/
/*    width: 65%;*/
/*}*/
/*.info-list .sub-text, .info-list .paragraph {*/
/*    color: var(--white);*/
/*}*/
/*.fact-item {*/
/*    border: solid 1px #fff;*/
/*    border-radius: 5px;*/
/*    padding: 15px;*/
/*    margin: 10px 0;*/
/*    border-left: solid 10px #4d4089;*/
/*    transition: .3s ease-in-out;*/
/*}*/
/*.fact-item .underline{*/
/*    background-color: var(--white);*/
/*}*/
/*.fact-item .paragraph{*/
/*    margin-bottom: 0;*/
/*}*/
/*.fact-item:hover{*/
/*    background-color: var(--purple);*/
/*    border: solid 1px #fff;*/
/*}*/

/*👉 FOOD SECTION */

/*.food-box{*/
/*    background-color: #fff;*/
/*    height: 230px !important;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: flex-start;*/
/*    align-items: center;*/
/*}*/
/*.food-box img{*/
/*    width: 100%;*/
/*    transition: .3s ease-in-out;*/
/*}*/
/*.food-box:hover img{*/
/*    transform: scale(1.5);*/
/*    transform: rotate(45deg);*/
/*}*/
/*.food-box:hover .sub-heading{*/
/*    color: var(--purple);*/
/*}*/
/*.food-slide .sub-text{*/
/*    text-align: center;*/
/*}*/


/*👉 EVENT SECTION */

/*.event-card {*/
/*    background-color: #fff;*/
/*    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
/*    border-radius: 10px;*/
/*    position: relative;*/
/*    padding: 20px;*/
/*    height: 100%;*/
/*}*/
/*.event-card .paragraph{*/
/*    margin: 0;*/
/*}*/
/*.meta-box {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 5px;*/
/*    justify-content: flex-start;*/
/*}*/
/*.meta-box h6{*/
/*    font-size: 12px;*/
/*    margin: 0;*/
/*}*/

/*👉 TESTIMONIAL SECTION */


/*.testimonial-card {*/
/*    margin-top: 30px;*/
/*    padding: 40px 30px 30px 30px;*/
/*    background-color: #E7E7E7;*/
/*    border-radius: 10px;*/
/*    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;*/
/*    position: relative;*/
/*}*/
/*.quote {*/
/*    position: absolute;*/
/*    top: -30px;*/
/*    width: 60px;*/
/*}*/
/*.testimonial-user {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: 10px;*/
/*}*/
/*.testimonial-user i {*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    background-color: #ccc;*/
/*    border-radius: 5px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 20px;*/
/*}*/
/*.testimonial-name {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*}*/
/*.testimonial-user .sub-text {*/
/*    margin: 0;*/
/*    font-size: 14px;*/
/*    font-weight: 400;*/
/*    line-height: 16px;*/
/*}*/
/*.testimonial-user .paragraph {*/
/*    margin: 0;*/
/*    font-size: 14px;*/
/*    font-weight: 300;*/
/*}*/

/* 👉  CONTACT SECTION  */

/*.contact-form{*/
/*    display:flex; */
/*    flex-direction:column; */
/*    gap:15px;*/
/*}*/
/*.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form select{*/
/*    padding:10px; */
/*    border:1px solid #ccc;*/
/*    height: 40px;*/
/*    border-radius: 5px;*/
/*    font-size: 14px;*/
/*}*/
/*.contact-form textarea{*/
/*    padding:10px; */
/*    border:1px solid #ccc;*/
/*    height: 120px;*/
/*    border-radius: 5px;*/
/*    font-size: 14px;*/
/*}*/

/*#inquiryModal.modal {*/
/*    position: fixed; top: 0; left: 0; width: 100%; height: 100%;*/
/*    background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;*/
/*}*/
/*#inquiryModal .modal-content {*/
/*    background: #fff; padding: 20px; width: 90%; max-width: 400px; border-radius: 8px;*/
/*    position: relative;*/
/*}*/
/*#inquiryModal .close-btn {*/
/*    position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 20px;*/
/*}*/

/* 👉  FOOTER SECTION */

/*.footer-section{*/
/*    padding: 50px 0 30px 0;*/
/*}*/
/*.social-list {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*    align-items: center;*/
/*}*/
/*.social-list a {*/
/*    font-size: 24px;*/
/*    color: #333;*/
/*}*/
/*.footer-menu li a {*/
/*    color: var(--black);*/
/*    font-size: 15px;*/
/*    font-weight: 400;*/
/*    line-height: 30px;*/
/*}*/
/*.footer-bottom{*/
/*    background-color: var(--purple);*/
/*    height: 60px;*/
/*}*/
/*.footer-bottom .container{*/
/*    height: 60px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*}*/
/*.copyright{*/
/*    color: var(--white);*/
/*    font-size: 14px;*/
/*    font-weight: 300;*/
/*    margin: 0;*/
/*}*/
/*.copyright a{*/
/*    color: var(--white);*/
/*}*/
/*.legal-menus{*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 20px;*/
/*}*/
/*.legal-menus li a {*/
/*    color: var(--white);*/
/*    font-size: 14px;*/
/*    font-weight: 300;*/
/*}*/


/* 👉  TRANSITION */

/*.page-transition {*/
/*  position: fixed;*/
/*  top:0; left:0;*/
/*  width:100%; height:100%;*/
/*  background:#111;*/
/*  z-index:9999;*/
/*  transform: translateY(100%);*/
/*  transition: transform 0.6s ease-in-out;*/
/*}*/
/*.page-transition.active {*/
/*  transform: translateY(0);*/
/*}*/

/* 👉  PAGE LOADER */

/*#page-loader {*/
/*  position: fixed;*/
/*  top:0; left:0;*/
/*  width:100%; height:100%;*/
  background:#0b3d2e; /* jungle green */
/*  display:flex;*/
/*  flex-direction:column;*/
/*  justify-content:center;*/
/*  align-items:center;*/
/*  z-index:99999;*/
/*  transition: opacity 0.8s ease, visibility 0.8s ease;*/
/*  color:#fff;*/
/*  font-family:'Poppins', sans-serif;*/
/*}*/

/*.boat-loader {*/
/*  position: relative;*/
/*  width: 120px;*/
/*  height: 100px;*/
/*}*/

/*.boat {*/
/*  width: 60px;*/
/*  height: 20px;*/
/*  background: #ffcc66;*/
/*  border-radius: 0 0 30px 30px;*/
/*  position: absolute;*/
/*  top: 40px;*/
/*  left: 30px;*/
/*  animation: float 2s ease-in-out infinite;*/
/*}*/

/*.boat::after {*/
/*  content:"";*/
/*  position:absolute;*/
/*  top:-40px;*/
/*  left:15px;*/
/*  width:5px;*/
/*  height:40px;*/
/*  background:#fff;*/
/*}*/

/*.boat::before {*/
/*  content:"";*/
/*  position:absolute;*/
/*  top:-40px;*/
/*  left:20px;*/
/*  width:25px;*/
/*  height:25px;*/
/*  background:#cc3333;*/
/*  clip-path: polygon(0 0, 100% 50%, 0 100%);*/
/*}*/

/* Water Waves */
/*.water {*/
/*  width:100%;*/
/*  height:20px;*/
/*  background: repeating-linear-gradient(*/
/*    -45deg,*/
/*    rgba(255,255,255,0.2) 0 10px,*/
/*    transparent 10px 20px*/
/*  );*/
/*  position:absolute;*/
/*  bottom:0;*/
/*  animation: wave 1s linear infinite;*/
/*  border-radius:50%;*/
/*}*/

/*.loading-text {*/
/*  margin-top:25px;*/
/*  font-size:18px;*/
/*  letter-spacing:1px;*/
/*  animation: blink 1.5s infinite;*/
/*}*/

/* Animations */
/*@keyframes float {*/
/*  0%,100% { transform: translateY(0); }*/
/*  50% { transform: translateY(-8px); }*/
/*}*/

/*@keyframes wave {*/
/*  0% { transform: translateX(0); }*/
/*  100% { transform: translateX(-40px); }*/
/*}*/

/*@keyframes blink {*/
/*  0%,100% { opacity:1; }*/
/*  50% { opacity:0.5; }*/
/*}*/

/* Hide Loader */
/*#page-loader.hidden {*/
/*  opacity:0;*/
/*  visibility:hidden;*/
/*}*/


/*====================================================*/

/* 👉  RESPONSIVE */

/*====================================================*/

@media (max-width: 768px) {

.min-mg {
    margin-top: 10px !important;
}  
.mid-mg {
    margin-top: 20px !important;
}
.feature-section, .packages-section, .about-section, .gallery-section, .info-fact-section, .food-section, .event-section, .contact-section, .testimonial-section {
    padding: 40px 0 !important;
}
/*.header-block {*/
/*    height: 75px;*/
/*}*/
.site-nav {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    width: 250px;
    background: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.menu {
    flex-direction: column;
}
.menu li a {
    font-size: 16px;
}
.menu-toggle {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: navajowhite;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.menu-close {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    margin-left: auto;
}
.header-action{
    display: none;
}
.site-nav.active {
    right: 0;
}
/*.logo {*/
/*    width: 45px;*/
/*    margin-top: 0;*/
/*}*/
/*.banner-heading{*/
/*    font-size: 30px !important;*/
/*    line-height: 35px !important;*/
/*    margin-top: 0 !important;*/
/*}   */
/*.banner-section, .heroSwiper.swiper, .banner-content, .heroSwiper .swiper-slide {*/
/*    height: 240px !important;*/
/*}*/
/*.sub-heading {*/
/*    font-size: 25px;*/
/*    line-height: 30px;*/
/*} */
/*.feature-item-box {*/
/*    margin-bottom: 10px;*/
/*}*/
/*.feature-item-image {*/
/*    margin-top: 0 !important;*/
/*}*/
/*.package-card {*/
/*    margin-bottom: 10px !important;*/
/*    height: auto !important;*/
/*}*/
/*.about-image{*/
/*    margin-bottom: 20px;*/
/*}*/
/*.event-card {*/
/*    height: auto !important;*/
/*    margin-bottom: 10px !important;*/
/*}*/
/*.footer-bottom {*/
/*    height: auto !important; */
/*}*/
/*.footer-bottom .container {*/
/*    flex-direction: column;*/
/*    text-align: center;*/
/*    padding: 10px;*/
/*    justify-content: center !important;*/
/*    height: auto !important;*/
/*}*/
/*.package-image{*/
/*    margin-top: 20px;*/
/*}*/
/*.whatsapp-btn {*/
/*    font-size: 32px;*/
/*    width: 48px;*/
/*    height: 48px;*/
/*}*/
}

