/********** Template CSS **********/

:root {
    --bs-primary: #0b5b58;
    --page-bg: #f0f8ff; /* AliceBlue */
    --card-bg: #fafcff;
}

.text-primary {
    color: var(--bs-primary) !important;
}



body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--page-bg);
}

.bg-white {
    background-color: var(--card-bg) !important;
}

.top-bar {
        background-color: #0b5b58;   /* Water Blue Color */
        color: #fff;
        font-size: 14px;
        padding: 13px 0;
    }

    /*top bar*/
    
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .left-info span {
        margin-right: 15px;
    }
    
    .company-name {
        font-weight: 600;
    }
    
    .right-social a {
        color: #fff;
        margin-left: 10px;
        font-size: 14px;
        transition: 0.3s;
    }
    
    @media (max-width: 991.98px) {
        .top-bar {
            font-size: 12px;
        }
        .top-bar .container {
            flex-direction: column;
            text-align: center;
        }
        .left-info span {
            margin-bottom: 5px;
        }
    }
    .right-social a:hover {
        color: #ffd166;
    }



h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.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;
}


/*** Navbar ***/
.sticky-top {
    top: 0;
    transition: .5s;
}

.navbar {
    padding: 10px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}
#head{
    margin-left: 0 !important;
}

.navbar .navbar-nav .nav-link {
    margin: 0 15px;
    padding: 0px 0;
    outline: none;
    color: var(--bs-primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    background: transparent;
    transition: 5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #10243e;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transition: width 0.4s ease;
}

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

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

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #eee;
    }
    .navbar .navbar-nav {
        align-items: center;
    }
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
    .navbar-collapse .d-flex.align-items-center {
        flex-direction: column;
    }
    .navbar-collapse .nav-social-icons {
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
#navBookNow {
    margin-left: 25px;
}
.nav-social-icons {
    display: flex;
    align-items: center;
}
.nav-social-icons a {
    width: 34px;
    height: 34px;
    background: #fff;
    color: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    transition: all 0.4s ease;
    border: 1px solid var(--bs-primary);
    font-size: 14px;
    text-decoration: none;
}
.nav-social-icons a:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}


/*** Hero Header ***/
.hero-header {
    margin-top: 0;
    padding-top: 150px;
    background-image: linear-gradient(rgba(10, 14, 26, 0.658), rgba(15, 23, 42, .5)), url(../img/fetch\ \(1\).jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}
.hero-header .display-1 {
    font-size: 85px;

}

.hero-header .hero-subtitle {
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding-top: 120px;
    }
    .navbar .navbar-nav .nav-link::after {
        display: none;
    }
    .nav-social-icons {
        margin: 15px 0;
        justify-content: center;
    }
    #navBookNow {
        margin-left: 0;
    }
}

 .btn-read-more {
            transition: all 0.3s ease;
            border-radius: 30px;
            font-weight: 600;
        }
        .btn-read-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(250, 244, 244, 0.1);
        }

.hero-header .breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-header .breadcrumb-item a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-header .breadcrumb-item a:hover {
    color: var(--bs-primary);
}
.hero-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
    color: rgba(255, 255, 255, 0.5);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 
.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}

/*** About ***/

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/home-3.jpg) top left no-repeat;
    background-size: contain;
}


/*** services ***/

    .premium-section {
            background-image:linear-gradient(rgba(250, 252, 255, .5), rgba(250, 252, 255, .5)), url('../img/serv-20.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 80px 20px;
            text-align: center;
        }

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #003366;
}

.section-subtitle {
    margin-bottom: 50px;
    color: #555;
}

.boat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.boat-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    position: relative;
}

.boat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.boat-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.boat-content {
    padding: 20px;
}

.boat-content h3 {
    color: #003366;
    margin-bottom: 10px;
}

.boat-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-weight: bold;
    color: #008080;
    margin-bottom: 15px;
}

.book-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #0077b6, #00b4d8);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: linear-gradient(45deg, #023e8a, #0096c7);
}



/*** premium Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}
        #premium-service,
        #service-section {
            background: linear-gradient(rgba(255, 255, 255, 0.973), rgba(255, 255, 255, 0.993)), url(img/servicebg-4) center center no-repeat;
            background-size: cover;
            background-attachment: fixed;
        }

/*** Our Team ***/
.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial-section {
    background: linear-gradient(rgba(252, 252, 252, 0.897), rgba(255, 255, 255, 0.938)), url(../img/re4.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.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;
}
    
.about-sec {
    background-size: cover;
}

#about-sec {
    background: var(--card-bg);
    padding:20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    align-self: center;
}

#about-sec:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.about-sec img {
            border-radius: 15px;
            box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        }
 .about-sec .col-6:last-child img {
            border-radius: 15px 15px 0 0;
        }
        .about-sec .bg-primary {
            border-radius: 0 0 15px 15px;
        }
         .floating-buttons {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 99;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .floating-menu {
            display: none;
        }

        .floating-buttons .btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            font-size: 24px;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        .floating-buttons .btn:last-child {
            margin-bottom: 10px;
        }

        .floating-buttons .btn.btn-success {
            background-color: #25D366;
            border-color: #25D366;
        }

        .floating-buttons .btn.btn-success:hover {
            background-color: #1DAE54;
            border-color: #1DAE54;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(86, 91, 94, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(86, 91, 94, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(86, 91, 94, 0);
            }
        }

        @media (max-width: 768px) {
            .floating-buttons {
                right: 20px;
                bottom: 20px;
            }
            .floating-buttons .btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
                margin-bottom: 10px;
            }
        }


 #icon-bar {
            background: rgba(255, 255, 255, 0.9);
            padding: 1.5rem;
            border-radius: .5rem;
            margin-top: 65px;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        @media (max-width: 991.98px) {
            #icon-bar {
                margin-top: 2rem;
            }
        }


  .chat-window {
            position: fixed;
            bottom: 140px;
            right: 15px;
            width: 320px;
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            z-index: 9999;
            display: none;
            overflow: hidden;
        }
        .chat-header {
            background: var(--bs-primary);
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chat-body {
            height: 300px;
            padding: 15px;
            overflow-y: auto;
            background: #f8f9fa;
        }
        .chat-footer {
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }


        /**reservation**/
        .reservation-form-body {
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0,0,0,0.03);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
        }

        .reservation-form-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #0077b6, #00b4d8);
        }

        .reservation-form-body .form-control,
        .reservation-form-body .form-select {
            background-color: #f8f9fa;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 1rem 0.75rem;
            transition: all 0.3s ease;
        }

        .reservation-form-body .form-control:focus,
        .reservation-form-body .form-select:focus {
            background-color: #fff;
            border-color: #0077b6;
            box-shadow: 0 0 0 0.25rem rgba(13, 107, 104, 0.15);
            box-shadow: 0 0 15px rgba(13, 107, 104, 0.1);
            transform: translateY(-2px);
        }

        .reservation-form-body .btn-primary {
            border-radius: 8px;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 6px rgba(13, 107, 104, 0.2);
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 15px;
            background: linear-gradient(45deg, #0077b6, #023e8a);
            border: none;
            box-shadow: 0 5px 15px rgba(13, 107, 104, 0.3);
        }

        .reservation-form-body .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(13, 107, 104, 0.3);
            box-shadow: 0 8px 20px rgba(13, 107, 104, 0.4);
            background: linear-gradient(45deg, #023e8a, #0077b6);
        }

        .reservation-sidebar {
            background: linear-gradient(160deg, #0077b6 0%, #023e8a 100%);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .reservation-sidebar p {
            transition: transform 0.3s;
        }

        .reservation-sidebar p:hover {
            transform: translateX(5px);
        }

        .reservation-sidebar p i {
            background: rgba(255,255,255,0.15);
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 12px !important;
            font-size: 12px;
        }

        .reservation-sidebar::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .reservation-sidebar h3, 
        .reservation-sidebar h4, 
        .reservation-sidebar h5 {
            color: #fff !important;
        }

        .reservation-sidebar .btn-light {
            color: var(--bs-primary);
            font-weight: bold;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .faq-item {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 5px solid #0077b6;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: var(--card-bg);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .faq-item h5 {
            color: #0077b6;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .faq-item h5::before {
            content: '\f059';
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
            opacity: 0.8;
        }

        .reservation-bg {
            background:  center center no-repeat;
            background-size: cover;
            background-attachment: fixed;
        }

      

        /*** Gallery ***/
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .gallery-item img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }

        .hero-section{
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1587502536263-3e7d2c3c3e21') center/cover no-repeat;
    height:350px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
}

.hero-section h1{
    font-size:42px;
    font-weight:700;
}

.booking-card{
    margin-top:-80px;
}

@media (max-width: 991.98px) {
    .booking-card {
        margin-top: 2rem;
    }
}

.summary-box{
    background:#0077b6;
    color:white;
    padding:20px;
    border-radius:10px;
}

.highlight{
    color:#0077b6;
    font-weight:600;
}

/*** Story Section ***/
.story-section {
    background: linear-gradient(rgba(240, 248, 255, 0.95), rgba(240, 248, 255, 0.9)), url(../img/rivbg10.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.story-section p {
    color: #555;
    line-height: 1.8;
}

.story-section .fa-check {
    background: rgba(11, 91, 88, 0.1);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

/*** Star Rating ***/
.star-rating i {
    font-size: 25px;
    color: #ddd;
    cursor: pointer;
    transition: 0.3s;
}

/*** Review Section ***/
.review-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.review-form-card {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 15px !important;
}

.review-form-card .form-control {
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
}

.review-form-card .form-control:focus {
    background-color: #fff;
    box-shadow: none;
    border-color: var(--bs-primary);
}

.review-form-card .btn-primary {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.price-summary-card {
    background-color: #f8faff;
    border: 1px solid #e1e8ed;
    border-radius: 15px;
}

.why-book-card {
    border: none;
    border-radius: 15px;
    background: var(--card-bg);
    border-top: 4px solid var(--bs-primary);
}

/* Animations & Hover Effects */
@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(11, 91, 88, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(11, 91, 88, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 91, 88, 0); }
}

.btn-pulse {
    animation: pulse-border 2s infinite;
}

.feature-item {
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.feature-item:hover i {
    transform: scale(1.2) rotate(10deg);
    transition: transform 0.3s ease;
}

#sevice {
    background: linear-gradient(rgba(240, 248, 255, 0.95), rgba(240, 248, 255, 0.9)), url(../img/rivbg4.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

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

.destination-item:hover img {
    transform: scale(1.1);
}

.hero-subtitle {
    background: var(--card-bg);
    color: var(--bs-primary);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-weight: 600;
    letter-spacing: 1px;
}

.cuisine-section {
    background: linear-gradient(rgba(240, 248, 255, 0.95), rgba(240, 248, 255, 0.9)), url(../img/rivbg5.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.cuisine-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.cuisine-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.cuisine-item:hover .btn-square {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

/* Inclusions Section Hover */
#inclusions-section .service-item {
    border-radius: 10px;
    transition: all 0.4s ease;
}

#inclusions-section .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

#inclusions-section .service-item:hover i {
    transform: scale(1.15) rotate(-10deg);
    transition: transform 0.4s ease;
}

/* New Blog Style */
.blog-section {
    background: linear-gradient(rgba(240, 248, 255, 0.95), rgba(240, 248, 255, 0.9)), url(../img/rivbg1.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.blog-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-item .blog-img img {
    border-radius: 15px 15px 0 0;
    transition: transform 0.4s ease;    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.blog-item .blog-img .position-absolute {
    transition: background-color 0.3s;
}

.blog-item .blog-img .position-absolute:hover {
    background-color: #003366 !important;
}

.blog-item .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-item h4 {
    color: #003366;
    transition: color 0.3s;
}

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

.blog-item p {
    flex-grow: 1;
    color: #555;
}

.blog-item .text-uppercase {
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.blog-item .text-uppercase::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 2px;
    right: 0;
    background: var(--bs-primary);
    transition: width 0.3s ease;
}

.blog-item:hover .text-uppercase::after {
    width: 100%;
    left: 0;
    background: var(--bs-primary);
}

/* Universal Fixed Background */
.bg-fixed-image {
    background: linear-gradient(rgba(240, 248, 255, 0.95), rgba(240, 248, 255, 0.9)), url(../img/rivbg10.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Career Page Card Style */
.career-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* New Contact Page Style */
.contact-section {
    background-color: whitesmoke;
    background-size: cover;
    background-attachment: fixed;
}

.contact-info-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.4s ease;
}

.contact-info-item:hover .icon {
    background: #003366;
    transform: scale(1.1) rotate(-15deg);
}

.contact-info-item h5 {
    margin-bottom: 8px;
}

.contact-info-item p {
    color: #555;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper .form-control {
    background-color: #f3f7f6;
    border: 1px solid #e0e9e8;
    border-radius: 8px;
    min-height: 55px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    background-color: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(11, 91, 88, 0.15);
}

/* Booking Popup */
.booking-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 32, 31, 0.8);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(5px);
}

.booking-popup.show-popup {
    display: flex;
    opacity: 1;
}

.booking-popup-content {
    background: #fff;
    border-radius: 15px;
    width: 95%;
    max-width: 900px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transform: scale(0.7);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.booking-popup.show-popup .booking-popup-content {
    transform: scale(1);
}

.btn-close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 10;
}

.btn-close-popup:hover {
    color: var(--bs-primary);
    background: #f0f8ff;
    transform: rotate(90deg);
}

.booking-popup-content .form-control,
.booking-popup-content .form-select {
    background-color: #f3f7f6;
    border: 1px solid #e0e9e8;
    border-radius: 8px;
    height: 55px;
    transition: all 0.3s ease;
}

.booking-popup-content .form-control:focus,
.booking-popup-content .form-select:focus {
    background-color: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(11, 91, 88, 0.15);
}

.booking-popup-content .form-floating .form-select {
    padding-right: 2.5rem; /* Adjust to prevent text from overlapping the dropdown arrow */
}

.booking-popup-content .btn-primary {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(11, 91, 88, 0.2);
    transition: all 0.3s ease;
    padding: 15px;
    text-transform: uppercase;
}

.booking-popup-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(11, 91, 88, 0.3);
}

.booking-popup-content #bookingThankYou i {
    color: #28a745;
}

/* Thank You Message Style in Popup */
.booking-popup .thank-you-message {
    padding: 40px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f8faff;
    border-radius: 15px;
    animation: fade-in 0.5s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-popup .thank-you-message i {
    animation: pop-in 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.booking-popup .thank-you-message h4,
.booking-popup .thank-you-message p {
    animation: fade-in-up 0.5s both;
}

.booking-popup .thank-you-message h4 { animation-delay: 0.2s; }
.booking-popup .thank-you-message p { animation-delay: 0.4s; }

@keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo Image Utilities */
.logo-img{
    max-height:50px;
    width:auto;
}

@media (max-width: 768px){
    .logo-img{
        max-height:40px;
    }
}

/* Hero Video Background for Home Page */
.page-header-home {
    background: none !important;
    position: relative;
    overflow: hidden;
    padding-top: 30px; /* Reduce top gap for home page hero */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.page-header-contact {
    background-image: linear-gradient(rgba(10, 14, 26, 0.658), rgba(15, 23, 42, .5)), url(../img/fetch\ \(1\).jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#head {
    width: 150px;
    height: 65px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

/* =========================================
   MOBILE RESPONSIVE STYLES
   ========================================= */
@media (max-width: 768px) {
    /* Typography */
    .display-1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    p { font-size: 1rem; }

    /* Top Bar */
    .top-bar {
        display: none !important;
    }

    /* Navbar */
    .navbar-brand img {
        max-height: 40px;
        width: auto;
    }
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    #navBookNow {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    /* Spacing */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Hero Section */
    .hero-header {
        padding-top: 5rem !important;
        padding-bottom: 3rem !important;
    }
    .hero-header .text-center.text-lg-start {
        text-align: center !important;
    }
    
    .header-carousel {
        padding: 30px 45px 30px 0;
    }

    /* Reduce header size on inner pages for mobile */
    .hero-header:not(.page-header-home) {
        padding-bottom: 80px !important;
    }
    .hero-header:not(.page-header-home) .display-1 {
        font-size: 2.8rem;
    }
    
    /* Popup */
    .booking-popup-content {
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .booking-popup-content .col-lg-7 {
        padding: 2rem !important;
    }

    /* Chat & Floating Buttons */
    .chat-window {
        width: 90%;
        right: 5%;
        bottom: 90px;
    }
    .floating-buttons {
        right: 15px;
        bottom: 20px;
    }

    /* Contact Page */
    .contact-form-wrapper {
        padding: 20px;
    }

    /* Reduce Index Page Head specifically */
    .page-header-home {
        padding-top: 4rem !important;
        padding-bottom: 2rem !important;
    }
    .page-header-home .display-1 {
        font-size: 5.0rem !important;
        line-height: 1.1 !important;
    }
    .page-header-home .hero-subtitle {
        font-size: 1rem !important;
        padding: 0.5rem 1.5rem !important;
    }
    .page-header-home .btn-book-now {
        padding: 0.6rem 2rem !important;
        margin-top: 1rem !important;
        width: 200px !important; 
        border-radius: 15px;
        transition: all 0.3s ease;
        animation: pulse-border 2s infinite;
    }
    .page-header-home .btn-book-now:hover {
        transform: scale(1.05);
        background: #fff !important;
        color: var(--bs-primary) !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
}
