@import url("https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Michroma&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Zen+Dots&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(255, 255, 255);
}

/* Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Animation for spinning */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* navbar styles */
.navlogo-text,
.gradiant-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background-image: linear-gradient(
        to bottom,
        #2100ff,
        #2900fc,
        #3302f7,
        #3602fe,
        #3300ff,
        #6e00ff,
        #f2f2f2,
        #f51a05,
        #f90202,
        #ff0500,
        #ff0036,
        #ff0000
    );
}

nav {
    height: 80px;
    position: sticky;
    top: 0px;
}

.logo-navbar {
    border-radius: 50%;
}

.nav-item .nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-item {
    margin-right: 14px;
    font-family: "Poppins", serif;
    font-weight: 400;
}

.nav-item .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 42%;
    height: 2px;
    background-color: #050505;
    transition: all 0.6s ease-in-out;
    transform: translateX(-50%);
}

.nav-item .nav-link:hover {
    color: #f00d0d;
}

.booknow-btn {
    width: 6.5em;
    height: 2.3em;
    /* margin: 0.5em; */
    background: darkblue;
    color: white;
    border: none;
    border-radius: 0.625em;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.booknow-btn button:hover {
    color: red;
}

.booknow-btn:after {
    content: "";
    background: red;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.booknow-btn:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.close-btn {
    width: 20px;
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.numbers {
    position: relative;
    bottom: 20px;
    margin-right: 20px;
}

.number {
    margin-bottom: 5px;
    font-size: 20px;
}

.number-line {
    left: 9px;
    width: 1px;
    height: 150px;
    position: relative;
    background-color: white;
}

.carousel-item {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.carousel-caption {
    position: absolute;
    left: 5%;
    bottom: 20%;
    text-align: left;
    color: white;
}

.caption-image {
    width: 400px;
    margin-left: -100px;
}

.text-mangforest {
    text-align: start;
    font-family: "Audiowide", cursive;
    font-optical-sizing: auto;
    font-style: normal;
}

.buttonAnsarrow .arrow-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.book-btn {
    background-color: white;
    font-family: "Zen Dots", serif;
    font-weight: 400;
    font-size: 1rem;
    outline: none;
    border: none;
    transition: 0.3s;
}

.book-btn:hover {
    background-color: blue;
    color: white;
}

.buttonAnsarrow {
    display: flex;
    align-items: center;
}

.spacial-packagesec {
    margin-top: 50px;
}

.spacial-packagesec .main-heading,
.chooseRide-heading,
.safety-title,
.adventures-heading {
    font-size: 2rem;
    font-family: "Caveat", serif;
    font-optical-sizing: auto;
    font-weight: 700;
}

.sideText {
    font-family: "Zen Dots", serif;
    color: rgb(122, 122, 122);
}

.SpecialPackagecard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    gap: 20px;
}

.SpecialPackagecard {
    margin: 0px 60px;
    width: 320px;
    height: 400px !important;
    overflow: hidden;
    border-radius: 20px !important;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.card-big {
    width: 300px;
    height: 400px !important;
    margin: 0;
    position: absolute;
    box-shadow: 0px 0px 9px 1px #6c757d;
    z-index: 99;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.SpecialPackagecard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.SpecialPackagecard:hover {
    transform: scale(1.1);
    z-index: 100;
}

.SpecialPackagecard:not(:hover) {
    transform: scale(0.9);
}

.card-big .text {
    position: absolute;
    bottom: 15px;
    left: 10px;
    color: white;
    font-size: 18px;
    padding: 5px;
}

.ThirdrdCard-text {
    position: absolute;
    bottom: 15px;
    left: 40px;
    font-family: "Caveat", serif;
    color: white;
    font-size: 18px;
    transition: 0.3s;
    padding: 5px;
}

.SpecialPackagecard:hover .ThirdrdCard-text {
    left: 15px;
}

.SpecialPackagecard .text,
.bigCard-text {
    font-family: "Caveat", serif;
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 18px;
    padding: 5px;
}

.bigCard-btn button {
    position: absolute;
    font-family: "Zen Dots", serif;
    bottom: 10px;
    left: 130px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 30px;
    font-size: 1rem;
    padding: 6px 12px;
    transition: 0.3s;
}

.bigCard-btn button:hover {
    background-color: white;
    color: black;
}

.ThirdrdCard-btn button {
    position: absolute;
    bottom: 10px;
    left: 150px;
    color: white;
    background-color: transparent;
    font-family: "Zen Dots", serif;
    border: 1px solid white;
    border-radius: 30px;
    font-size: 1rem;
    padding: 6px 12px;
    transition: 0.3s;
}

.ThirdrdCard-btn button:hover {
    background-color: red;
}

.card-btn button {
    position: absolute;
    bottom: 10px;
    left: 130px;
    font-family: "Zen Dots", serif;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 30px;
    font-size: 1rem;
    padding: 6px 12px;
    transition: 0.3s;
}

.card-btn button span {
    margin: auto;
}

.card-btn button:hover {
    background-color: darkblue;
}

.SpecialPackagecard:hover .card-btn button {
    position: absolute;
    bottom: 10px;
    left: 150px;
}

.chooseRide-Time {
    margin-top: -50px;
}

.chooseYourRide .card {
    border-radius: 15px;
    /* height: 400px; */
    padding: 10px 10px;
    box-shadow: 0px 4px 10px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    transition: 0.3s;
}

.chooseYourRide .card img {
    height: 180px;
    padding: 10px;
    border-radius: 30px;
    object-fit: cover;
}

.chooseYourRide .card-body {
    padding: 10px;
}

.chooseYourRide .card:hover img {
    transform: scale(1.1);
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.chooseYourRide .btn-primary {
    background-color: darkblue;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
}

.chooseYourRide .heart-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: red;
    cursor: pointer;
    font-size: 1.2rem;
}

.boatImage-container {
    margin-top: 50px;
}

.boat-background img {
    width: 100%;
    position: relative;
    top: -80px;
}

.boatImage-container .text {
    font-size: 3.9rem;
    opacity: 0.2;
    font-family: "Zen Dots", serif;
}

.sailSafty-Container {
    width: 100%;
    margin-top: -266px;
    top: -180px;
}

.boatPng {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50px;
    margin-bottom: 20px;
}

.boatPng img {
    width: 100%;
}

.bacimge {
    position: relative;
    top: 400px;
}

.endimage {
    position: relative;
}

.safety-subtitle {
    font-size: 16px;
    color: gray;
    font-family: "Zen Dots", serif;
    font-weight: 300;
    margin-bottom: 30px;
}

.safety-equipment {
    display: flex;
    width: 80%;
    justify-content: space-evenly;
    margin-top: 50px;
}

.equipment-item {
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
}

.safety-equipment-text p {
    margin-top: 10px;
    font-weight: bold;
    text-align: start;
}

.safety-text {
    text-align: start;
    margin-left: 80px;
}

.blue {
    background-color: #1f4f99;
}

.orange {
    background-color: #e76f51;
}

.green {
    background-color: #00ff00;
}

.insurance-box {
    background: white;
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 20px;
    font-family: "Zen Dots", serif;
    width: 400px;
}

.insurance-box-container {
    margin-left: 100px;
    position: absolute;
}

.quote-style {
    color: blue;
    font-size: 2rem;
}

.insurance-box blockquote {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 400;
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: transparent;
    width: 40%;
    flex-wrap: wrap;
    margin-top: 30px;
}

.image-container img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 50px;
}

.container-text {
    width: 60%;
}

.flex-container {
    position: relative;
    margin-top: 200px;
    background-color: #f1f5f5;
    border-radius: 198px 150px 10px 10px;
    height: 300px;
    display: flex;

    padding: 10px;
    justify-content: space-between;
}

.sideimage-container {
    position: relative;
    display: inline-block;
}

.sideimage-container .base-image {
    border: 5px solid white;
    display: block;
}

.base-imageContainer .base-image {
    width: 100%;
    height: 100%;
    border-radius: 51% 48% 49% 51% / 36% 36% 30% 33%;
}

.base-imageContainer {
    width: 50%;
    height: 350px;
    animation: moveImages 4s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}

.sideimage-container .overlay-image {
    width: 50%;
    height: 360px;
    left: 150px;
    border-radius: 51% 48% 49% 51% / 36% 36% 30% 33%;
    animation: secondmoveImages 4s cubic-bezier(0.42, 0, 0.58, 1) infinite
        alternate;
}

@keyframes moveImages {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes secondmoveImages {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
    }
}

.sideimage-container .overlay-image {
    position: absolute;
    top: -40%;
    right: 150px;
    border: 5px solid white;
}

/* footer */
footer {
    margin-top: 200px;
    position: relative;
    background-color: #f1f5f5;
    padding: 40px 10%;
    z-index: 999;
    text-align: left;
}

footer .about h6 {
    width: 350px;
    font-family: "Zen Dots", serif;
    font-weight: 300;
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

footer .about {
    margin-top: -60px;
    position: relative;
}

footer .about p {
    font-size: 14px;
    line-height: 1.5;
}

footer .pages h3 {
    margin-left: 30px;
}

footer h3 {
    position: relative;
}

.wave-container {
    z-index: 0;
    position: absolute;
    top: -180px;
    left: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-top: 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h2,
.footer-section h3 {
    color: #1c61a7;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-section p {
    color: #333;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #003366;
}

.footer-section ul li a:hover {
    color: #0073e6;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #003366;
    text-decoration: none;
}

footer .contact p {
    font-size: 14px;
}

.social-icons a:hover {
    color: #0073e6;
}

.logo {
    width: 50px;
}

.Contact_container {
    display: flex;
    margin-top: 30px;
    gap: 10px;
    justify-content: space-around;
}

.Contact_container .leftContainer {
    width: 300px;
}

.cenetrContainer {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    background-color: #222e38fa;
    color: white;
}

.cenetrContainer ul li {
    margin-top: 25px;
    font-size: 13px;
}

.Contact_container .RightContainer {
    width: 500px;
}

.panorama-container img {
    width: 100%;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container .input-group,
.inputgrouptwo {
    display: flex;
    justify-content: space-between;
}

.form-container .input-group .input-field {
    width: 48%;
}

.form-container .input-field {
    margin-bottom: 15px;
}

.form-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-container textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s;
    border-bottom: 2px solid #bebed2;
}

.form-container .send-button {
    width: 100%;
    background-color: #3f51b5;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.form-container .send-button:hover {
    background-color: #303f9f;
}

.form-container input {
    width: 100%;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s;
    border-bottom: 2px solid #bebed2;
}

.form-container input:focus {
    border-bottom: 2px solid #78788c;
}

.aboutcontainerone .section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.aboutcontainerone .section-text {
    font-size: 16px;
    color: #555;
}

.aboutcontainerone ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

.gallery .overlay-img {
    position: relative;
    top: -120px;
    width: 230px;
    height: 200px;
    right: 40px;
}

.gallery .overlay-img {
    border-radius: 8px;
    border: 5px white solid;
}

.gallery img {
    width: 100%;
    margin-bottom: 20px;
    height: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-footer {
    margin-top: -280px;
}

.info-box {
    background-color: #3f51b5;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    font-size: 20px;
    position: relative;
    top: -250px;
    left: 100px;
    font-weight: bold;
}

:root {
    --primary-color: #05334b;
    --secondary-color: #1e475d;
}

#Section {
    padding: 0 5%;
}

#Normal_Package {
    display: flex;
    margin-top: 2%;
}

#packageimg {
    width: 450px;
    margin: 20px;
    object-fit: cover;
    border-radius: 10px;
}

.SecondBox h6,
.ThirdBox h6 {
    opacity: 0.3;
    font-weight: 600;
    margin-top: 10px;
}

.SecondBox p,
.ThirdBox p {
    font-size: 18px;
    font-weight: bold;
    color: rgb(64, 109, 98);
}

#PackageContent h5 {
    cursor: default;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

#ridecardcontent {
    opacity: 0.3;
    font-family: "Zen Dots", serif;
    font-size: 12px !important;
}

#ridecardtitle {
    display: flex;
    justify-content: space-between;
}

#ridecardtitle h3 {
    font-family: "Caveat", serif;
}

#ridecardtitle h5 {
    background-color: #00c2ff38;
    font-weight: 600;
    border-radius: 5px;
    padding: 8px;
    color: #0dadf0;
}

.middleImg img {
    width: 600px;
}

.booklastContent {
    display: flex;
    gap: 10px;
}

.SecondBox,
.ThirdBox {
    display: flex;
    border: 1px solid gray;
    border-radius: 10px;
    justify-content: center;
    width: 150px;
    height: 80px;
    align-items: center;
}

.lastBox #ridebookbtn {
    border: 1px solid red;
    padding: 10px;
    width: 300px;
    color: red;
    font-weight: 500;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.total-amt {
    color: blue;
    font-weight: 500;
}

#pricecalculator .heading {
    font-weight: 600;
}

#ridebookbtn a {
    text-decoration: none;
}

#ridebookbtn-BR {
    cursor: pointer;
    text-decoration: none;
    padding: 10px;
    background-color: darkblue;
    width: 300px;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
}

.lastBox {
    margin-top: -10px;
}

.fadetitle {
    opacity: 0.2;
    font-size: 2.5rem;
    font-family: "Zen Dots", serif;
}

.section-pack {
    width: 90%;
}

#spctitle {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 400;
    margin-top: 20px;
}

#spcfeature img {
    width: 20px;
    height: 20px;
}

#spcfeature h5 {
    margin: 0;
}

#PaymentForm {
    width: 60%;
    margin: 5%;
}

#paymentcardtitle h5 {
    font-size: 14px;
    background-color: white;
    padding: 2px 10px;
    height: fit-content;
    font-weight: 400;
}

#paymentcardtitle h6 {
    font-size: 14px;
    padding: 5px 10px;
    color: white;
    font-weight: 300;
}

#paymentitems h5 {
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

#paymentitems input {
    font-size: 14px;
    font-weight: 400;
    border: none;
    width: 95%;
    color: var(--primary-color) !important;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 10px;
    padding: 10px;
    outline: none;
}

.number-input {
    display: flex;
    align-items: center;
}

.modal-footer {
    display: flex !important;
    justify-content: space-between !important;
}

#availabilityStatus {
    font-size: 14px;
    font-weight: 300;
}

.number-input input {
    width: 60px;
    text-align: center;
    padding: 5px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 5px;
}

.number-input button {
    /* background-color: var(--primary-color); */
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
}

.number-input button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-input {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    z-index: 1000;
}

.dropdown-item {
    padding: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.hidden {
    display: none;
}

#pricecalculator {
    padding: 10px 20px;
    height: 180px;
    margin-right: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

#pricecalculator h4 {
    font-size: 20px;
    font-weight: 400;
}

#pricecalculator div {
    display: flex;
    justify-content: space-between;
}

.LAP {
    display: none;
}

.PH {
    display: none !important;
}

#RecCard {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

#pricecalculator div h6 {
    font-size: 14px;
    font-weight: 400;
}

#modelbtn {
    background-color: var(--primary-color);
    font-size: 14px !important;
    color: white;
}

#modelbtn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.anm {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

.pop {
    animation: pop linear;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

#Spccards {
    cursor: pointer;
}

/* Responsive Design */
/* mobile responsive */
@media (max-width: 425px) {
    nav .navlogo-text {
        display: none;
    }

    .nav-item .booknow-btn {
        position: relative;
        width: 150px !important;
    }

    .nav-item {
        margin-top: -100px;
    }

    .carousel-container .numbers {
        display: none;
    }

    #paymentmain {
        display: flex;
        flex-direction: column;
    }

    #pricecalculator {
        width: 300px !important;
        /* margin: auto !important; */
        margin-left: -70px;
        height: 200px !important;
        margin-bottom: 20px !important;
    }

    .m-ridebookbtn {
        /* width: 350px !important; */
    }

    .mobile-viewe {
        text-align: center;
        margin-top: 20px;
    }

    #PaymentForm {
        width: 100% !important;
    }

    .carousel-item {
        height: 300px !important;
    }

    .SpecialPackagecard {
        margin: 0px 0px;
    }

    .card-big,
    .SpecialPackagecard {
        width: 250px;
        height: 300px !important;
    }

    .ThirdrdCard-btn button {
        display: inline;
    }

    .bigCard-text,
    .SpecialPackagecard .text {
        bottom: 5px;
        color: white;
        font-size: 16px;
    }

    .bigCard-btn button,
    .ThirdrdCard-btn button {
        padding: 4px 10px;
        font-size: 0.5rem;
    }

    .sideimage-container {
        display: none;
    }

    .SpecialPackagecard:hover .ThirdrdCard-text {
        left: 40px !important;
    }

    footer .pages {
        margin-left: -30px;
    }

    footer .about h6 {
        margin-left: -0px !important;
    }

    .safety-text {
        text-align: start;
        margin-left: 0px;
    }

    .lastBox {
        margin-left: 30px;
    }

    .boatImage-container .text {
        font-size: 2.2rem;
        opacity: 0.2;
        margin-bottom: 10px;
        font-family: "Zen Dots", serif;
    }

    .sailSafty-Container {
        margin-top: -118px !important;
    }

    .boatPng {
        display: none;
    }

    .insurance-box {
        background: white;
        border-radius: 15px;
        padding: 10px 30px;
        width: 350px;
    }

    .adventures-container {
        margin-top: 100px;
    }

    .container-text,
    .safety-equipment {
        margin-left: 0px !important;
    }

    .container-text {
        width: 100%;
        text-align: start;
    }

    .bacimge-last {
        display: none;
    }

    .safety-equipment {
        display: flex;
        width: 100%;
    }

    .flex-container {
        flex-wrap: wrap;
        height: 400px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .logo {
        width: 50px;
        margin-left: -10px !important;
    }

    .social-icons a {
        font-size: 22px;
    }

    .wave-container {
        /* top: -93px !important; */
        display: none;
    }

    footer .about h6 {
        margin-left: -20px !important;
    }

    .info-box {
        width: 150px;
        top: -80px !important;
        left: 180px !important;
        margin-bottom: 30px;
    }

    .gallery .overlay-img {
        position: relative;
        top: 0px !important;
        width: 230px;
        height: 200px;
        right: 0px !important;
        margin: auto;
    }

    .imgage-contact {
        margin-left: 50px;
    }

    .cenetrContainer {
        margin-left: 30px;
    }

    #packageimg {
        display: none;
    }

    #PackageContent {
        width: 100%;
    }

    .booklastContent {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .middleImg {
        margin: auto;
        margin: 10px 0px;
        width: 370px !important;
    }

    .mobile-packageimg img {
        width: 90% !important;
        margin: 20px;
        height: 300px !important;
    }
}
.wave-container {
    top: -250px;
}
/* tab responsive */
@media (max-width: 768px) {
    .wave-container {
        top: -160px !important;
    }

    #packageimg {
        display: none;
    }

    .about-footer {
        margin-top: 100px !important;
    }

    #paymentmain {
        display: flex;
        flex-direction: column;
    }

    #PaymentForm {
        width: 90% !important;
    }

    .info-box {
        width: 150px;
        top: -200px !important;
        left: 100px !important;
        margin-bottom: 30px;
    }

    .mobile-packageimg {
        width: 100%;
        display: flex;
    }

    .mobile-packageimg img {
        width: 70%;
        height: 300px;
    }

    nav {
        width: 100%;
    }

    .nav-item .booknow-btn {
        position: relative;
        width: 500px;
    }

    #navbarNav .close-btn {
        margin-right: 50px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .SpecialPackagecard:hover .ThirdrdCard-text {
        left: 50px;
    }

    .SpecialPackagecard:hover .ThirdrdCard-text {
        text-align: center;
    }

    .SpecialPackagecard .card-btn button,
    .ThirdrdCard-btn button {
        display: none;
    }

    .SpecialPackagecard .text,
    .ThirdrdCard-text {
        text-align: center;
    }

    .sailSafty-Container {
        margin-top: -150px;
    }

    .sideimage-container .overlay-image {
        width: 40%;
        height: 260px;
    }

    .sideimage-container .overlay-image {
        position: absolute;
        top: -40%;
        left: 200px;
        border: 5px solid white;
    }

    .container-text,
    .safety-equipment {
        margin-left: 20px;
    }

    .insurance-box-container {
        margin-left: 10px;
    }

    .base-imageContainer {
        width: 40%;
        margin-left: 150px;
        height: 250px;
        animation: moveImages 4s cubic-bezier(0.42, 0, 0.58, 1) infinite
            alternate;
    }

    .flex-container {
        margin-top: 0px;
        border-radius: 30px;
    }

    .logo {
        width: 50px;
        margin-left: 75px;
        margin-bottom: 0px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .social-icons a {
        font-size: 22px;
    }

    .wave-container {
        top: -150px;
    }

    footer .about h6 {
        margin-left: 170px;
    }

    #pricecalculator {
        /* text-align: center; */
        height: 200px !important;
    }
}

@media (max-width: 375px) {
    .insurance-box {
        width: 280px;
    }

    .flex-container {
        height: 500px;
    }

    .safety-text {
        text-align: center;
    }

    footer .about p {
        font-size: 11px;
    }

    footer .about h6 {
        font-size: 1rem;
        margin-left: 0;
    }

    .wave-container {
        display: none;
    }

    .sideText {
        font-size: 12px;
    }

    .footer-section .about {
        width: 40% !important;
    }

    .cenetrContainer {
        width: auto;
        margin-left: -80px;
    }

    footer .about h6 {
        width: auto;
    }

    .middleImg {
        width: 300px !important;
    }

    .lastBox {
        margin-left: 0px;
    }

    .footer-content {
        flex-wrap: nowrap;
    }

    #pricecalculator {
        margin: auto;
        height: 243px !important;
        width: 280px !important;
    }

    .m-ridebookbtn {
        width: auto !important;
    }

    #amountsection {
        width: 100% !important;
    }

    .wave-container {
        top: -80px !important;
    }

    .cenetrContainer {
        margin-left: 8px;
    }
}

@media (max-width: 991px) {
    .nav-item .nav-link:hover::after {
        display: none;
    }
}

@media (max-width: 1440px) {
    .wave-container {
        top: -250px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0px;
        width: 100%;
        background: white;
        display: flex;
        justify-content: center;
        flex-direction: column;
        z-index: 1050;
        transition: all 0.3s ease-in-out;
    }

    .navbar-collapse.show {
        display: flex !important;
    }

    .nav-item {
        margin: 10px auto;
    }
}

@media (max-width: 1440px) {
    .wave-container {
        top: -196px;
    }

    .packageimg img {
        width: 1000px !important;
    }
}
.qniq-gallery {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 16px 0;
}

.qniq-track {
    display: flex;
    gap: 18px;
    align-items: center;
    /* animation duration = how fast the whole strip moves */
    animation: qniq-scroll 22s linear infinite;
    will-change: transform;
}

/* Video style (unique class qniq-video) */
.qniq-video {
    display: block;
    width: 320px; /* change to desired card width */
    height: 200px; /* change to desired card height */
    min-width: 220px;
    object-fit: cover; /* fills the box while keeping aspect */
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.6);
    /* background: #000; */
}

/* Make responsive on smaller screens */
@media (max-width: 900px) {
    .qniq-video {
        width: 260px;
        height: 170px;
    }
    .qniq-track {
        gap: 12px;
        animation-duration: 18s;
    }
}
@media (max-width: 520px) {
    .qniq-video {
        width: 200px;
        height: 140px;
    }
    .qniq-track {
        gap: 10px;
        animation-duration: 16s;
    }
}

/* Keyframes: move the track left by 50% (we duplicated items so -50% scrolls one full set) */
@keyframes qniq-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Optional: pause animation when user interacts (hover/focus) */
.qniq-gallery:hover .qniq-track,
.qniq-gallery:focus-within .qniq-track {
    animation-play-state: paused;
}
.wave-container {
    top: -250px;
}
