    /* ------------------------------
   Root Variables & Base Styles
------------------------------ */
    :root {
        --brand: #2a9d8f;
        --accent: #1b7a63;
        --green: #198754;
        --green-dark: #146c43;
        --yellow: #ffc107;
    }

    body {
        font-family: "Poppins", sans-serif;
    }

    h2.section-title {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        color: var(--green);
        margin-bottom: 40px;
    }


    .pt-6 {
        padding-top: 6rem !important;
    }

    /* ------------------------------
   Navbar
------------------------------ */
    /* Premium Navbar */
    .premium-navbar {
        background: linear-gradient(90deg, #10693c, #1aa05b);
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .premium-navbar .navbar-brand {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        color: #fff !important;
        display: flex;
        align-items: center;
    }

    .premium-navbar .navbar-brand i {
        font-size: 1.6rem;
        color: var(--yellow);
    }

    .premium-navbar .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 500;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease;
        border-radius: 8px;
    }

    .premium-navbar .nav-link:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .btn-call {
        background: #fff;
        color: #10693c;
        border-radius: 8px;
        padding: 0.45rem 1rem;
        transition: all 0.3s ease;
    }

    .btn-call:hover {
        background: var(--yellow);
        color: #000;
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
    }

    .btn-enquire {
        background: var(--yellow);
        color: #000;
        border-radius: 8px;
        padding: 0.45rem 1rem;
        transition: all 0.3s ease;
    }

    .btn-enquire:hover {
        background: #ffcd39;
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
    }


    /* ------------------------------
   Hero Section
------------------------------ */
    .hero {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
            url("../img/hero.jpg") center/cover no-repeat;
        min-height: 60vh;
        color: #fff;
        display: flex;
        align-items: center;
    }

    @media (min-width: 992px) {
        .hero {
            min-height: 70vh;
        }
    }

    /* ------------------------------
   Buttons
------------------------------ */
    .btn-enquire {
        background-color: var(--green);
        color: #fff;
        font-weight: 600;
        white-space: nowrap;
    }

    .btn-enquire:hover {
        background-color: var(--green-dark);
    }

    /* ------------------------------
   Card Hover Effects
------------------------------ */
    .card-hover {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    /* ------------------------------
   Subline
------------------------------ */
    .subline {
        color: #6c757d;
        font-size: 0.9rem;
    }

    .subline i {
        color: var(--brand);
        margin-right: 0.25rem;
    }

    /* ------------------------------
   Services Section
------------------------------ */
    .service-card {
        border-radius: 1rem;
        transition: all 0.3s ease;
        background: #fff;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: "";
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #28a745, #5dd39e);
        opacity: 0.1;
        transition: top 0.4s ease;
        z-index: 0;
    }

    .service-card:hover::before {
        top: 0;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .service-card i {
        color: #28a745;
        background: rgba(40, 167, 69, 0.1);
        padding: 15px;
        border-radius: 50%;
        font-size: 2rem;
        z-index: 1;
        position: relative;
    }

    .service-card h5 {
        margin-top: 15px;
        font-weight: 600;
        color: #222;
    }

    .service-card p {
        color: #6c757d;
        font-size: 0.95rem;
    }

    /* ------------------------------
   Fleet Section
------------------------------ */
    /* Smooth hover effect */
    .fleet-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .fleet-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .fleet-btn-premium {
        flex: 1;
        padding: 10px 15px;
        font-weight: 600;
        border-radius: 50px;
        font-size: 14px;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fleet-btn-call {
        background: linear-gradient(45deg, #0072ff, #00c6ff);
        color: #fff;
    }

    .fleet-btn-call:hover {
        background: linear-gradient(45deg, #0056d2, #0095d9);
    }

    .fleet-btn-book {
        background: linear-gradient(45deg, #ff512f, #dd2476);
        color: #fff;
    }

    .fleet-btn-book:hover {
        background: linear-gradient(45deg, #e03e1f, #b81c63);
    }

    .fleet-btn-chat {
        background: linear-gradient(45deg, #25d366, #128c7e);
        color: #fff;
    }

    .fleet-btn-chat:hover {
        background: linear-gradient(45deg, #1ebe57, #0e6e5d);
    }

    .fleet-btn-premium i {
        margin-right: 5px;
        font-size: 16px;
    }


    /* Card image better presentation */
    .card-img-top {
        object-fit: cover;
        height: 220px;
    }


    /* ------------------------------
   Destination Cards
------------------------------ */
    .destination-card {
        border-radius: 18px;
        overflow: hidden;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .destination-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .destination-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .destination-card:hover img {
        transform: scale(1.05);
    }

    /* Premium badge with glass effect */
    .premium-badge {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(6px);
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 6px 14px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }

    /* Gradient text for headings */
    .text-gradient {
        background: linear-gradient(45deg, #28a745, #20c997);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .horizontal-scroll {
        display: flex;
        gap: 0.75rem;
        /* spacing between badges */
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        /* optional: some padding so scrollbar doesn’t overlap */
    }

    /* Optional: hide scrollbar for Webkit browsers */
    .horizontal-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .horizontal-scroll::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
    }

    /* Package icons premium style */
    .package-icons .col {
        border: 1px solid #eee;
        padding: 10px;
        border-radius: 10px;
        font-size: 0.8rem;
        background: #fff;
        transition: all 0.3s ease;
    }

    .package-icons i {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        margin-bottom: 5px;
        border-radius: 50%;
        background: linear-gradient(135deg, #28a745, #20c997);
        color: white;
        font-size: 1.2rem;
    }

    .package-icons .col:hover {
        background: #f8fdf9;
        transform: translateY(-2px);
    }

    /* Gradient Buttons */
    .btn-gradient-primary {
        background: linear-gradient(135deg, #007bff, #00b4d8);
        border: none;
        color: white;
    }

    .btn-gradient-danger {
        background: linear-gradient(135deg, #dc3545, #ff5c75);
        border: none;
        color: white;
    }

    .btn-gradient-success {
        background: linear-gradient(135deg, #28a745, #20c997);
        border: none;
        color: white;
    }

    .btn-gradient-primary:hover,
    .btn-gradient-danger:hover,
    .btn-gradient-success:hover {
        opacity: 0.9;
    }


    /* ------------------------------
   Gallery
------------------------------ */
    .gallery-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }

    .gallery-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease-in-out;
    }

    /* in mobile view */
    @media (max-width: 768px) {
        .gallery-card img {
            height: 100px;
        }
    }

    .gallery-card:hover img {
        transform: scale(1.05);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        text-align: center;
        padding: 8px 0;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }

.hover-zoom {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

    /* ------------------------------
   Why Choose Us Cards
------------------------------ */
    .why-card {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .why-card i {
        color: var(--green);
    }

    .why-card p {
        font-size: 0.95rem;
        color: #555;
    }

    /* ------------------------------
   Testimonials
------------------------------ */
    .testimonial-card {
        border: 2px solid var(--green);
        border-radius: 12px;
        padding: 20px;
        background: #fff;
        height: 100%;
        position: relative;
        transition: all 0.3s ease;
    }

    .testimonial-card h6 {
        margin-top: 8px;
        /* adjust as needed */
    }

    .quote-icon {
        font-size: 28px;
        color: var(--green);
        position: absolute;
        top: -14px;
        left: 20px;
        background: #fff;
        padding: 0 6px;
    }

    .swiper-pagination-bullet {
        background: var(--green);
        opacity: 0.4;
    }

    .swiper-pagination-bullet-active {
        background: var(--green);
        opacity: 1;
    }

    /* ------------------------------
   FAQ
------------------------------ */
    #faq {
        padding: 60px 20px;
    }

    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .accordion-button {
        background-color: #ffffff;
        color: #212529;
        font-weight: 600;
        font-size: 18px;
        padding: 16px 24px;
        transition: background-color 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
        background-color: #e9f7ef;
        color: var(--green);
    }

    .accordion-body {
        background-color: #ffffff;
        padding: 20px 24px;
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

    /* ------------------------------
   Contact Section
------------------------------ */
    #contact {
        background-color: #e0f1e3;
        border-radius: 12px;
        box-shadow: 8px 20px rgba(0, 0, 0, 0.05);
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    #contactForm .form-label {
        font-weight: 600;
        color: #333;
    }

    #contactForm .form-control,
    #contactForm .form-select {
        border-radius: 8px;
        border: 1px solid #ced4da;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    #contactForm .form-control:focus,
    #contactForm .form-select:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    }

    #contactForm textarea {
        resize: none;
    }

    #contactForm .btn-success {
        font-size: 18px;
        font-weight: 600;
        border-radius: 50px;
        transition: background-color 0.3s ease;
    }

    #contactForm .btn-success:hover {
        background-color: #218838;
    }

    .ratio iframe {
        border-radius: 12px;
        border: 2px solid var(--green);
    }

    /* ------------------------------
   Footer & Sticky CTA
------------------------------ */
    footer {
        background: #0f1720;
        color: #fff;
        padding: 2rem 0;
    }


    /* ------------------------------
   Utility
------------------------------ */
    .lazy {
        filter: blur(0.5px);
    }

    /* Sticky CTA Bar - Premium Look */
    .sticky-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        overflow: hidden;
        animation: slideUp 0.4s ease-out;
        z-index: 9999;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .sticky-cta-bar .cta-btn {
        flex: 1;
        padding: 10px 0;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        transition: all 0.3s ease;
    }

    .sticky-cta-bar .cta-btn i {
        font-size: 20px;
        transition: transform 0.2s ease;
    }

    /* Button Colors - Gradient Premium Look */
    .cta-btn.call {
        background: linear-gradient(135deg, #007bff, #0056b3);
    }

    .cta-btn.book {
        background: linear-gradient(135deg, #ff4b5c, #c71d2a);
    }

    .cta-btn.chat {
        background: linear-gradient(135deg, #25d366, #128c7e);
    }

    /* Hover Effect */
    .sticky-cta-bar .cta-btn:hover {
        opacity: 0.9;
    }

    .sticky-cta-bar .cta-btn:hover i {
        transform: scale(1.1);
    }

    /* Slide-up animation */
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }