
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    position: relative;
    border: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2e8bcb, #00f2fe);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover (Desktop) */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Tap/Click (Mobile + Desktop) */
.btn:active {
    transform: scale(0.96);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

/* Soft shine effect */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn:hover::before,
.btn:active::before {
    left: 120%;
}


.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Image smooth zoom */
.feature .feature-item img {
    transition: transform 0.5s ease;
}

/* Keep content fixed at bottom */
.feature .feature-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*background: rgba(0, 0, 0, 0.6);*/
    /*transition: background 0.4s ease;*/
    text-align: center;
    padding:  8px 8px 0;
}

/* Smooth card animation */
.feature .feature-item {
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature .feature-item img {
    transition: transform 0.5s ease;
}

/* Hover effect */
.feature .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature .feature-item:hover img {
    transform: scale(1.08);
}

/* 👇 Change overlay background color on hover */
.feature .feature-item:hover .feature-content {
    background: linear-gradient(135deg, #2e8bcb, #00c6ff);
}

/* Tap effect */
.feature .feature-item:active {
    transform: scale(0.97);
}

/* Keep text above overlay */
.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}

/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(135deg, #2e8bcb, #00f2fe);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: #ffffff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: #000000;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


/* Background with dots */
.voyage-section{
    /*min-height:100vh;*/
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* Card */
.voyage-card{
    width:100%;
    max-width:500px;
    background:#f4f4f4;
    border-radius:40px;
    padding:40px 30px;
    transition:all .4s ease;
    border: 1px solid #00f2fe;
}

/* Hover lift */
.voyage-card:hover{
    transform:translateY(-10px);
}
/* Title */
.title{
    text-align:center;
    letter-spacing:3px;
    margin-bottom:30px;
    opacity:.7;
}
/* Price */
.price-box{
    text-align:center;
    margin-top:40px;
}
.price-box p{
    letter-spacing:2px;
    opacity:.6;
}
.voyage-card h4{
    text-align: right;
}

/* Responsive */
@media(max-width:600px){
    .voyage-card{
        border-radius:25px;
        padding:25px;
    }
}

/* MAIN CONTAINER */
.sailing-container{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}
.sailing-container h2{
    margin-bottom: 30px !important;
}
.grid{
    border-radius:40px;
    padding:40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}


/* TIMELINE */
.timeline{
    border-left:3px solid #ddd;
    padding-left:20px;
}

.item{
    margin-bottom:30px;
    position:relative;
}

.item::before{
    content:"";
    width:14px;
    height:14px;
    background:#fff;
    border:3px solid #999;
    border-radius:50%;
    position:absolute;
    left:-28px;
    top:5px;
}

.time{
    font-size:16px;
    color:#888;
}

/* INCLUSION CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.card{
    display: inline-block;
    background:#fff;
    padding:15px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* LOGISTICS BOX */
.logistics{
    margin-top:30px;
    background:#fff;
    padding:20px;
    border-radius:25px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}
.sailingbtn{
    text-align: center; 
    margin-top: 20px;
}
.sailingbtn a{
    padding: 18px 40px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .sailing-container h2{
        margin-bottom: 10px !important;
    }
    .grid{
        grid-template-columns:1fr;
    }

    .cards{
        grid-template-columns:1fr;
    }
.sailingbtn{ 
    margin-top: 10px;
}
}

.services{
  padding:80px 20px;
  text-align:center;
  background:#ffffff;
  color:#000000;
}
.services h5{
  color:#aaa;
  margin-bottom:10px;
}
.services h2{
  font-size:42px;
  background:linear-gradient(90deg,#b66dff,#ff6ec7);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:50px;
  font-family:'Playfair Display', serif;
}
.service-cards{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}
.service-card{
  width:320px;
  padding:18px;
  border-radius:22px;
  background:#e5e5e575;
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  transition:.4s;
  position:relative;
}

/* HOVER BORDER ANIMATION */
.service-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:22px;
  padding:1px;
  background:linear-gradient(135deg, #2e8bcb, #00f2fe);
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:0;
  transition:.4s;
}
.service-card:hover::before{opacity:1;}
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px #2e8bcb;
}
.service-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:15px;
  transition:transform .5s ease;
}
.service-card:hover img{
  transform:scale(1.1);
}
.service-card h3{margin-bottom:8px;font-size:20px;color: #000000}
.service-card p{font-size:13px;color:#000000;margin-bottom:12px;line-height:1.5}

.abt-card{
    padding: 18px; 
    height:280px;
    border-radius: 22px;
    background: #e5e5e575;
    transition:.4s;
}
.abt-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px #2e8bcb;
}

.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 6;   /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 150px; /* keeps cards same height */
    text-align: left;
}

.team-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.read-more {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}