body {
    font-family: Gill Sans, Gill Sans MT, Calibri, sans-serif;
    background-color: #f8f9fa;
    font-size: large;
}

.text-primary {
    color: #470d85 !important;
}

.btn-primary {
    background-color: #470d85 !important;
    color: #fff !important;
    border: none;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background-color: #0056b3 !important;
    color: #fff !important;
}

.btn-outline-primary {
    border-color: #470d85 !important;
    color: #470d85 !important;
}

.btn-outline-light:hover {
    background-color: transparent !important;
}

/* Transparent Navbar */
.navbar-transparent {
    background-color: rgba(0, 0, 0, 0.4) !important;
    /* Semi-transparent dark */
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand img {
    width: 200px;
}

/* Navbar on scroll */
.navbar-scrolled {
    background-color: #ffffff !important;
    /* White background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand,
.navbar-scrolled .dropdown-toggle,
.navbar-scrolled .btn-outline-light {
    color: #343a40 !important;
    /* Dark text for white background */
}

.navbar-transparent .nav-link,
.navbar-transparent .navbar-brand,
.navbar-transparent .dropdown-toggle,
.navbar-transparent .btn-outline-light {
    color: #ffffff !important;
    /* White text for transparent background */
}

.navbar-scrolled .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
}

.navbar-scrolled .dropdown-item {
    color: #343a40;
}

.navbar-scrolled .dropdown-item:hover {
    background-color: #f8f9fa;
}


/* Hero Section - Carousel Customizations */
/* Hero Slider */
.carousel-item {
    height: 100vh;
    /* Full viewport height */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Dark overlay for better text visibility */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Caption styling */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 800px;
}

.carousel-caption h5 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    color: #f8f9fa;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}


.card-img-top {
    transition: transform 0.5s ease;
    will-change: transform;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}


/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card:hover img {
    transform: scale(105%);
}

.card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #470d85;
    margin-top: 15px;
}

.price small {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.testimonial-card .lead {
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
}

.testimonial-card .h5 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 5px;
}

.testimonial-card .text-muted {
    font-size: 0.9rem;
}

/* Blog Card */
.blog-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 25px;
}

.blog-card .badge {
    font-size: 0.8em;
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-card .h5 {
    font-weight: 600;
    color: #343a40;
    margin-top: 10px;
    line-height: 1.4;
}

.blog-card .text-muted {
    font-size: 0.9rem;
}

/* Call to Action Button */
.btn-plan-trip {
    background-image: linear-gradient(to right, #007bff, #0056b3);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-plan-trip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
    color: white;
    /* Keep text white on hover */
}

/* Footer */
footer {
    background-color: #343a40;
    color: #e9ecef;
    padding: 50px 0 30px;
    font-size: 0.95rem;
}

footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 25px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #007bff;
}

footer .social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #007bff;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    margin-top: 30px;
}

/* Fullscreen testimonial slides */
#testimonialSlider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* hide off-screen slides */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 100%;
    /* start off screen right */
    width: 100%;
    background: #fff;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

.testimonial-slide.active {
    left: 0;
    /* slide into view */
    opacity: 1;
    position: relative;
    /* keep it in place */
}

.testimonial-slide.exit-left {
    left: -100%;
    /* slide out to left */
    opacity: 0;
}

.plan-trip-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    z-index: 1;
    height: 350px;
}

/* Background image with dark overlay */
.plan-trip-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/bg.jpg') center/cover no-repeat;
    filter: brightness(0.5);
    z-index: -1;
}


/* Call-to-action button */
.btn-plan-trip {
    background: #470d85;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-plan-trip:hover {
    background: #0f57a5;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-banner {
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-banner h1 {
    font-size: 3rem;
    font-weight: bold;
}

.breadcrumb {
    background: transparent;
    margin-top: 10px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.blog-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.blog-title p {
    font-size: 1rem;
    color: #6c757d;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-top: 30px;
    color: #470d85;
    border-left: 4px solid #470d85;
    padding-left: 10px;
}

.blog-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.blog-image {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .card img {
        height: 180px;
    }

    .testimonial-card img {
        width: 70px;
        height: 70px;
    }
}