/********** Template CSS **********/

:root {
    --primary: #02b0fa;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
    
}

.btn.btn-primary,   
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
/* responcive  */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping */
    text-align: center;
    max-width: 100%;
  }
  
  .navbar-brand img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }
  
  .navbar-brand h1 {
    font-size: 1.5rem;
    color: #000080;
    white-space: nowrap; /* Prevents breaking on larger screens */
  }
  
  /* Adjustments for tablets */
  @media (max-width: 768px) {
    .navbar-brand {
      flex-direction: row; /* Stack logo and text */
      text-align: center;
    }
  
    .navbar-brand img {
      width: 60px;
      height: 60px;
      margin-bottom: 5px;
    }
  
    .navbar-brand h1 {
      font-size: 1.2rem;
      white-space: normal; /* Allows text wrapping */
    }
  }
  
  /* Adjustments for mobile screens */
  @media (max-width: 480px) {
    .navbar-brand {
      flex-direction: column; /* Stack logo and text */
      text-align: center;
    }
  
    .navbar-brand img {
      width: 60px;
      height: 60px;
      margin-bottom: 5px;
    }
  
    .navbar-brand h1 {
      font-size: 0.8rem;
      white-space: normal; /* Allows text wrapping */
      max-width: 100px; /* Prevents long text from stretching */
    }
  }
  
  
/* end */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 10px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
    padding: 5px 0px; 
    max-width: 100vw;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 0px 0;
    max-width: 100vw;
    color: #000080 !important; 
}

.navbar-light .navbar-nav .nav-link:hover
.navbar-light .navbar-nav .nav-link.active {
    color: #000080 !important; 
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
        max-width: 100vw;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        
        margin-left: 0;
        color: #000080 !important; 
        max-width: 100vw;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
        max-width: 100vw;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
        max-width: 100vw;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #000080 !important; 
        transition: .5s;
        max-width: 100vw;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
   
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 100%);
        left: 1px;
        max-width: 100vw;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
        max-width: 100vw;
        
    }
}



/*** Hero Header ***/
.hero-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

/* Background Image Slideshow */
@keyframes bgSlide {
    0%, 15% { background-image: url('../img/bg-hero.jpg'); }
    16%, 30% { background-image: url('../img/bg-hero1.jpg'); }
    31%, 45% { background-image: url('../img/bg-hero2.jpg'); }
    46%, 60% { background-image: url('../img/bg-hero3.jpg'); }
    61%, 75% { background-image: url('../img/bg-hero4.jpg'); }
    76%, 90% { background-image: url('../img/bg-hero5.jpg'); }
    91%, 100% { background-image: none; } /* Hide images before video */
}

.hero-header.animated-bg {
    animation: bgSlide 15s infinite ease-in-out;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none; /* Initially hidden */
}

.show-video .video-bg {
    display: block;
}

/* Overlay */
.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 31, 0.7);
    z-index: 1;
}

/* Content Above Background */
.container {
    position: relative;
    z-index: 2;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 3;
}

/* .nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
} */

.nav-btn.left {
    left: 10px;
}

.nav-btn.right {
    right: 10px;
}


/* Hero Section */
.hero-header {
    height: 10vh; /* Full height for large screens */
  }
  
  @media (max-width: 768px) {
    .hero-header {
      height: 10vh; /* Reduce height on mobile */
      padding-top: 80px; /* Adjust padding to make it look like a "box" */
      padding-bottom: 100px;
    }
  
    .display-4 {
      font-size: 1.5rem; /* Reduce font size for smaller screens */
    }
  
    .fs-4 {
      font-size: 1rem; /* Smaller description text */
    }
  
    .col-lg-6 {
      max-width: 100%; /* Allow full width for smaller devices */
    }
  
    .position-relative {
      width: 100%;
    }
  
    .breadcrumb {
      font-size: 0.9rem; /* Smaller breadcrumb text */
    }
  
    .btn-primary {
      padding: 10px 20px; /* Adjust button padding for smaller screens */
    }
  
    /* Hide navigation buttons on small screens */
    .nav-btn {
      display: none;
    }
  }
  @media (max-width: 1024px) {
    .hero-header {
      height: 20vh; /* Reduce height on mobile */
      padding-top: 80px; /* Adjust padding to make it look like a "box" */
      padding-bottom: 100px;
    }
  
    .display-4 {
      font-size: 2.5rem; /* Reduce font size for smaller screens */
    }
  
    .fs-4 {
      font-size: 2rem; /* Smaller description text */
    }
  
    .col-lg-6 {
      max-width: 100%; /* Allow full width for smaller devices */
    }
  
    .position-relative {
      width: 100%;
    }
  
    .breadcrumb {
      font-size: 1.9rem; /* Smaller breadcrumb text */
    }
  
    .btn-primary {
      padding: 20px 30px; /* Adjust button padding for smaller screens */
    }
  
    /* Hide navigation buttons on small screens */
    .nav-btn {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .hero-header {
      height: 5vh; /* Reduce further for very small screens */
    }
    
    .display-4 {
      font-size: 1.2rem; /* Even smaller font size */
    }
  
    .fs-4 {
      font-size: 0.9rem; /* Smaller description text */
    }
  }
  @media (max-width: 458px) {
    .hero-header {
      height: 3vh; /* Reduce height on mobile */
      padding-top: 40px; /* Adjust padding to make it look like a "box" */
      padding-bottom: 10px;
    }
  
    .display-4 {
      font-size: 1.5rem; /* Reduce font size for smaller screens */
    }
  
    .fs-4 {
      font-size: 0.9rem; /* Smaller description text */
    }
  
    .col-lg-6 {
      max-width: 100%; /* Allow full width for smaller devices */
    }
  
    .position-relative {
      width: 100%;
    }
  
    .breadcrumb {
      font-size: 0.8rem; /* Smaller breadcrumb text */
    }
  
    .btn-primary {
      padding: 5px 10px; /* Adjust button padding for smaller screens */
    }
  
    /* Hide navigation buttons on small screens */
    .nav-btn {
      display: none;
    }
  }
  
  
  
  

/* end */

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/

/*** newDestination ***/

/* end */

.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}
/* end */

/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #080808;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* pakage */
.packages-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.package-details {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
  text-align: center;
}

.header h1 {
  font-size: 2rem; /* Reduced font size */
  font-weight: bold;
  margin-bottom: 10px;
}

.header p {
  font-size: 1rem; /* Reduced font size */
  margin-bottom: 15px;
}

.description p {
  font-size: 0.9rem; /* Reduced font size */
  margin-bottom: 15px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 350px; /* Reduced image height */
  border-radius: 8px;
}

@media only screen and (max-width: 768px) {
 
 

  .hero-section {
    height: 300px; /* Adjust height for mobile */
    background-size: cover;
    background-position: center;
  }
  .package-card {
    width: 100%;
    margin-bottom: 20px; /* Stack cards vertically */
  }
  
  .image {
    max-width: 100%;
    height: auto; /* Ensure images scale properly */
  }
  .header h1 {
    font-size: 1.8rem; /* Reduced font size */
  }

  .header p {
    font-size: 0.9rem; /* Reduced font size */
  }

  .description p {
    font-size: 0.8rem; /* Reduced font size */
  }

  .image-gallery img {
    max-height: 150px; /* Reduced image height */
  }
}

@media only screen and (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem; /* Further reduced font size */
  }

  .header p {
    font-size: 0.8rem; /* Further reduced font size */
  }

  .description p {
    font-size: 0.7rem; /* Further reduced font size */
  }

  .image-gallery img {
    max-height: 150px; /* Further reduced image height */
  }
}

@media only screen and (max-width: 280px) {
  .header h1 {
    font-size: 0.5rem; /* Further reduced font size */
  }

  .header p {
    font-size: 0.3rem; /* Further reduced font size */
  }

  .description p {
    font-size: 0.5rem; /* Further reduced font size */
  }

  .image-gallery img {
    max-height: 50px; /* Further reduced image height */
  }
  .package-details {
    padding: 10px; /* Less padding to avoid content stretching */
  }
}

/* General Styles */
.fullscreen-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Responsive Image & Video */
  .fullscreen-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Content on top of media */
  .foreground-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
  }
  
  /* Headings */
  .foreground-content h1 {
    font-size: 3rem;
    color: #0b1bf8;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .foreground-content h4 {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  
  .foreground-content p {
    font-size: 1rem;
    max-width: 600px;
    margin: auto;
  }
  
  /* Ensure full-screen background for images & videos */
.fullscreen-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* Background Image & Video */
  .fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image/video covers full screen */
  }
  
  /* Foreground Content Styling */
  .foreground-content {
    position: relative;
    z-index: 10;
    max-width: 80%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .foreground-content h1 {
      font-size: 2.5rem;
    }
  
    .foreground-content h4 {
      font-size: 1.2rem;
    }
  
    .foreground-content p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 768px) {
    .foreground-content {
      max-width: 90%;
      padding: 15px;
    }
  
    .foreground-content h1 {
      font-size: 2rem;
    }
  
    .foreground-content h4 {
      font-size: 1rem;
    }
  
    .foreground-content p {
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 480px) {
    .foreground-content {
      max-width: 100%;
      padding: 10px;
    }
  
    .foreground-content h1 {
      font-size: 1.8rem;
    }
  
    .foreground-content h4 {
      font-size: 0.9rem;
    }
  
    .foreground-content p {
      font-size: 0.8rem;
    }
  }
  