

/*** Spinner Start ***/
/*** Spinner ***/
body{
    overflow-x: hidden;
}

#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 {
    font-weight: 600;
    transition: .5s;
}

.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: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    /* padding: 25px 10px; */
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #00a0dc;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: all 0.3s ease;
    margin-right: 20px;
}

.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 ***/

  
    /* Marker styles */
    .marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.marker::before {
    content: "+";
    font-size: 18px;
    color: black;
    font-weight: bold;
}

    /* Hover image that appears on mouseover */
    .hover-image {
        position: absolute;
        pointer-events: none;
        z-index: 100;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        display: none;
        border: 2px solid white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    }

    /* Ensure images are sized appropriately and fit */
    .hover-image img {
        max-width: 200px;
        max-height: 200px;
        display: block;
    }
/*** 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/breadcrumg_bg.jpg');
    opacity: 0.8;
    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);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    bottom: 0; 
    left: 0;
    margin-top: 0;
    margin-right: 0; 
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 10px;
    z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}

.feature-item .feature-content .btn {
    position: relative;
    top:30vh;
    z-index: 5;
}
/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url('../img/testbg.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 ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('../img/top_attraction.jpg') center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

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

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

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

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

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

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

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

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

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/
/* review start */

/* /* Container for the review section */
.row.text-center {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding: 40px 20px;
   background-color: #f0f9ff; /* Light blue background */
   border-radius: 20px; /* More rounded corners */
   box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   margin-top: 20px;
}

.row.text-center:hover {
   transform: translateY(-8px);
   box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}

/* Text Styling */
.review-text {
   font-size: 20px;
   color: #333;
   font-family: 'Roboto', sans-serif;
   line-height: 1.8;
   font-weight: 600;
   text-align: center;
   max-width: 700px;
   margin: 0 auto;
   margin-bottom: 30px;
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Soft shadow for text */
}

/* Button Styling */
.review-button {
   background-color: #ff7a00; /* Vibrant orange */
   color: #fff; /* White text */
   font-size: 18px;
   font-weight: bold;
   padding: 15px 30px;
   text-decoration: none;
   border-radius: 50px;
   text-align: center;
   display: inline-block;
   box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease-in-out;
   letter-spacing: 1px;
   margin-top: 15px;
   text-transform: uppercase;
}

/* Hover effect for the button */
.review-button:hover {
   background-color: #f5a623; /* Lighter orange */
   transform: scale(1.1);
   box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

/* Button active state */
.review-button:active {
   transform: scale(1.05);
   box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

/* Responsiveness */
@media (max-width: 768px) {
   .review-text {
      font-size: 18px;
   }

   .review-button {
      font-size: 16px;
      padding: 12px 25px;
   }
}



/* review 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;
    gap: 10px;
    margin-left: 20px;
}

.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 ***/






/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../img/testimonial_background.png');
    opacity: 0.35;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

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

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Testimonial End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

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

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

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

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

.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 ***/

/* Theme-based background colors for pricing items */
.bg-ocean {
    background: #006994 !important;
}

.bg-deep-ocean {
    background: #004c6d !important;
}

/* Package box sizing and layout */
.pricing-item {
    min-height: 600px; /* Set fixed minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem !important;
}

/* Content sections within package box */
.pricing-item .pb-3 {
    flex: 0 0 auto; /* Header section won't grow */
}

.pricing-item .py-4 {
    flex: 1 1 auto; /* Content section will grow to fill space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Button container */
.pricing-item .btn-container {
    flex: 0 0 auto; /* Button section won't grow */
    margin-top: 1rem;
}

/* Food package specific adjustments */
.pricing-item .row {
    height: 100%;
    margin: 0;
}

/* Ensure consistent spacing */
.pricing-item h2 {
    margin-bottom: 1rem !important;
}

.pricing-item h3 {
    margin-bottom: 1rem !important;
}

.pricing-item p {
    margin-bottom: 0.75rem !important;
}

/* Maintain equal width for all columns */
.col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
}

@media (max-width: 991px) {
    .pricing-item {
        min-height: 500px; /* Adjust height for smaller screens */
    }
    
    .col-lg-4 {
        width: 100%;
    }
}

/* Social media icons */
.team-icon .btn-square {
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.team-icon .btn-square:hover {
    background: #00a0dc;
    border-color: #00a0dc;
}

.team-icon .btn-square:hover i {
    color: #ffffff;
}

/* Contact button */
.btn-primary {
    background: #00a0dc;
    border: none;
}

.btn-primary:hover {
    background: #0088bc;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    
    .navbar-brand img {
        max-height: 45px;
    }
}

/* Navigation spacing and styling */
.navbar-nav {
    gap: 20px; /* Adds consistent spacing between nav items */
}

.navbar-light .navbar-nav .nav-link {
    padding: 25px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect with underline */
.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 20px;
    left: 50%;
    background: #00a0dc;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Adjust spacing for mobile */
@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 10px;
    }
    
    .navbar-light .navbar-nav .nav-link {
        padding: 10px;
    }
    
    .navbar-light .navbar-nav .nav-link::after {
        bottom: 5px;
    }
}

/* Logo sizing */
.navbar-brand img {
    max-height: 60px;
    margin-right: 20px; /* Add space after logo */
}

/* Social icons spacing */
.team-icon {
    gap: 10px; /* Space between social icons */
    margin-left: 20px; /* Space before social icons */
}

/* Header Styling */
.nav-bar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2px 0;
}

/* Logo */
.main-logo {
    height: 70px;
    width: auto;
}

/* Navigation Menu */
.navbar-nav {
    gap: 30px;
}

.nav-item.nav-link {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item.nav-link:hover,
.nav-item.nav-link.active {
    color: #00a0dc;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #333333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00a0dc;
}

/* Contact Button */
.contact-btn {
    background: #00a0dc;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background: #0088bc;
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 15px;
        padding: 20px 0;
    }

    .header-right {
        margin-top: 15px;
        justify-content: center;
    }

    .social-icons {
        margin-right: 15px !important;
    }
}

/* Active Link Indicator */
.nav-item.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    top:4vh;
    left: 4vw;
    width: 100%;
    height: 2px;
    background: #00a0dc;
}

/* Contact button / Get Started button */
.btn-primary.flex-shrink-0 {
    padding: 8px 20px !important;  /* Smaller padding */
    font-size: 14px !important;    /* Smaller font size */
    height: 36px;                  /* Fixed height */
    line-height: 20px;             /* Adjust line height */
    margin-left: 15px;             /* Add some spacing from social icons */
}

/* Hover state */
.btn-primary.flex-shrink-0:hover {
    transform: translateY(-1px);    /* Subtle lift effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .btn-primary.flex-shrink-0 {
        margin: 10px 0;
        width: auto;
        display: inline-block;
    }
}

/* Package points alignment */
.pricing-item .py-4 {
    text-align: left;
    padding-left: 30px !important;
}

.pricing-item .py-4 p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px !important;
}

.pricing-item .py-4 p i {
    width: 24px;
    margin-top: 4px;
    text-align: center;
}

/* Food package specific alignment */
.pricing-item .row {
    text-align: left;
}

.pricing-item .row h5 {
    text-align: center;
    margin-bottom: 15px !important;
}

.pricing-item .row p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px !important;
    padding-left: 10px;
}

.pricing-item .row p i {
    width: 24px;
    margin-top: 4px;
    text-align: center;
}

/* Button alignment */
.pricing-item .btn-container {
    text-align: center;
    margin-top: 20px;
}

/* Header alignment */
.pricing-item .pb-3 {
    text-align: center;
}

/* Consistent spacing */
.pricing-item {
    display: flex;
    flex-direction: column;
}

.pricing-item .py-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.message {
    display: none;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    width: 100%; /* Ensures the message div takes full width */
}

.success {
    background-color: #3cbeee;
    color: white;
}

.error {
    background-color: #dc3545;
    color: white;
}

.contact-form {
    width: 100%;
}
/***FAQ Start ***/


/* Accordion container */
.accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.faq-title {
    width: 100%;
    background: #f9f9f9;
    color: #333;
    padding: 16px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    transition: background-color 0.3s ease;
}

.faq-title:hover {
    background-color: #e0f7fa;
}

.faq-title::after {
    content: "\002B";
    font-size: 24px;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s ease;
}

.accordion-item.active .faq-title::after {
    content: "\2212";
}

.accordion-body {
    background: #fff;
    padding: 24px;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active {
    background-color: #e0f7fa;
    border-left: 6px solid #007bff;
}

/* FAQ Section Layout */
.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.faq-content {
    flex: 1;
}

.faq-image {
    flex-basis: 45%;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 16px;
        padding: 14px;
    }

    .accordion-body {
        font-size: 15px;
        padding: 18px;
    }

    .faq-container {
        flex-direction: column;
        align-items: center;
    }

    .faq-image {
        flex-basis: 100%;
        margin-top: 20px;
    }
}
