/********** Template CSS **********/
:root {
    --primary: #2818b6;
    --secondary: #3a4df0;
    --light: #F5F5F5;
    --dark: #14141F;
    --pink: #FF00BF;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
    
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/* Target the image inside the specific container */
.position-relative img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Optional: Adjust the min-height for smaller screens */
@media (max-width: 576px) {
    .col-lg-6 {
        min-height: 200px; /* Adjust the min-height for smaller screens */
    }
}


/* Apply hover effect */
.position-relative:hover img {
    transform: scale(1.1); /* Zoom in slightly */
    opacity: 0.8; /* Slightly fade the image */
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensures consistent height */
    border-radius: 15px; /* Adds rounded corners to all boxes */
}

.service-item:hover {
    background: var(--primary);
    transform: translateY(-5px); /* Adds a hover lift effect */
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}



/*** Destination ***/
.destination img {
    transition: .5s;
    border-radius: 15px; /* Adds rounded corners to all images */
}

.destination a {
    border-radius: 15px; /* Ensures the parent container matches the image rounding */
    overflow: hidden; /* Clips content within rounded corners */
    display: block;
    position: relative;
}

.destination a:hover img {
    transform: scale(1.1);
}

.destination .bg-white {
    border-radius: 10px; /* Adds rounded corners to the text box */
    padding: 5px 10px; /* Optional: Adds inner padding for better spacing */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for emphasis */
}




/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    
    
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}
.container-fluid {
    padding: 0 15px; /* Adjust padding if needed */
}

.row {
    margin: 0; /* Ensure row takes full width */
}

.package-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    
}


@media (max-width: 768px) {
    .d-flex small {
        padding: 10px; /* Reduce padding for smaller screens */
        margin-bottom: 10px; /* Add space between items */
    }

    .d-flex i {
        font-size: 18px; /* Adjust icon size */
    }
}



/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f6f9; /* Light grey background */
    margin: 0;
    padding: 20px;
}

.booking {
    max-width: 600px;
    margin: auto;
    background-color: #fff; /* White background for the form */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Subtle shadow around form */
    padding: 40px;
    color: #333; /* Dark text color for readability */
}

/* Scoped Styles for Booking Form */
.booking h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}


/* Form Styles */
.form-floating {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: box-shadow 0.3s;
    background-color: #f9f9f9;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow to inputs */
}

.form-control:focus {
    box-shadow: 0 0 8px rgba(40, 24, 182, 0.5); /* Blue shadow for focus state */
    outline: none;
}


.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: #2818b6; /* Label color changes to blue */
}

/* Traveler Section */
.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.traveler-row {
    padding: 12px 0;
}

.traveler-btn {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: #ddd;
    color: #2818b6;
    border: 1px solid #ccc;
    transition: background-color 0.3s, transform 0.2s;
}

.traveler-btn:hover {
    background-color: #2818b6;
    color: white;
    transform: scale(1.1);
}

/* Button Styles for Booking */
/* Button Styles for Booking */
.btn-book-now {
    background-color: #2818b6; /* Deep blue button color */
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1;
    transition: background-color 0.3s, transform 0.2s;
    color: white;
    cursor: pointer;
}

/* Remove the default focus border effect */
.btn-book-now:focus {
    outline: none; /* Remove the default focus outline */
    box-shadow: 0 0 5px rgba(40, 24, 182, 0.5); /* Custom blue focus shadow */
    border: 1px solid transparent; /* Remove or set transparent border */
}

.btn-book-now:hover {
    background-color: #1f1491; /* Darker blue when hovered */
    transform: scale(1.05);
}


.btn-book-now:hover {
    background-color: #1f1491;
    transform: scale(1.05);
}

/* Textarea Styles */
textarea {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 1rem;
    transition: box-shadow 0.3s;
    background-color: #f9f9f9;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

textarea:focus {
    box-shadow: 0 0 8px rgba(40, 24, 182, 0.5);
    outline: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .booking {
        padding: 30px;
    }

    h1 {
        font-size: 2rem;
    }

    .form-control, textarea {
        padding: 12px;
    }

    .btn-book-now {
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }

    .form-control, textarea {
        padding: 10px;
    }

    .btn-book-now {
        padding: 10px;
        font-size: 0.8rem;
    }
}



/* Button Styles */
.btn-primary {
    background-color: #2818b6; /* Deep blue button color */
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    position: relative; /* For the shiny effect */
    overflow: hidden; /* Make sure the shine doesn't overflow the button */
    transition: background-color 0.3s, transform 0.2s;
}

/* Shiny effect */
.btn-primary:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 1s infinite;
    pointer-events: none; /* Prevent interaction with the shiny effect */
}

/* Shiny animation */
@keyframes shine {
    0% {
        left: -150%;
        top: -150%;
    }
    50% {
        left: 100%;
        top: 100%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

/* Hover effect */
.btn-primary:hover {
    background-color: #1f1491; /* Darker blue when hovered */
    transform: scale(1.05);
}

/* Focus effect */
.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(40, 24, 182, 0.5); /* Blue focus shadow */
}

/* Active effect (when the button is clicked) */
.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 0 15px rgba(40, 24, 182, 0.5); /* Add more emphasis on active state */
}




/*** Team ***/
.team-item {
    border-radius: 15px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    overflow: hidden; /* Prevents images from spilling out of their container */
}

.team-item img {
    width: 100%; /* Ensures responsiveness */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover; /* Maintains the aspect ratio while filling the space */
    transition: .5s; /* Smooth transition for hover effect */
}

.team-item:hover img {
    transform: scale(1.1); /* Enlarges the image slightly on hover */
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}







/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

/* Add smooth transition for all images */
.col-lg-3 .row img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect: Slight zoom and shadow */
.col-lg-3 .row img:hover {
    transform: scale(1.1); /* Zoom in slightly */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow for a pop effect */
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .msme-image {
    display: block;
    margin: 50px auto 0 auto; /* Centers the image horizontally */
    width: 50%; /* Adjust image size */
    height: auto; /* Maintain aspect ratio */
}


.text-primary {
    color: var(--primary) !important;
}

/***Home Read more Animation***/
.content-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

/* Shown content */
.content-visible {
    max-height: 1000px; /* Set to a value large enough to accommodate the content */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

/* Package Hidden content initially */
.itinerary-details.hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.itinerary-details.open {
    max-height: 800px; /* Set a large enough value to accommodate content */
    opacity: 1;
    overflow: visible;
}

/* Shown content */
.content-visible {
    max-height: 1000px; /* Set to a value large enough to accommodate the content */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}


/* Itinerary Details */
.itinerary-details {
    overflow: hidden; /* Ensure content is contained */
    border-top: 1px solid #ddd; /* Optional: Add a separator */
    padding: 0 10px; /* Ensure proper spacing */
}

/* Individual Day Items */
.itinerary-item {
    cursor: pointer;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visibility */
    transition: background-color 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
}

.itinerary-item:hover {
    background-color: #e9ecef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Elevate on hover */
}

.day-heading {
    font-weight: bold;
    margin: 0;
    font-size: 18px; /* Slightly larger for better readability */
    color: #0d6efd;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.day-heading::before {
    content: "📍"; /* Add an icon before each heading */
    font-size: 18px; /* Match heading size */
    color: #0d6efd; /* Matches theme color */
}

/* Day Details (Collapsed and Expanded) */
/* Day Details (Collapsed and Expanded) */
.day-details {
    padding: 10px 20px; /* Adjust padding for better spacing */
    color: #6c757d;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.8s ease-in-out, max-height 0.8s ease-in-out;
    border-left: 3px solid #0d6efd;
    background-color: #f8f9fa;
    margin-left: 10px;
}

.day-details.open {
    opacity: 1;
    max-height: 800px; /* Adjust for content */
}



/* Scrollable behavior for mobile devices */
@media (max-width: 768px) {
    .day-details.open {
        max-height: 300px; /* Limit height for scrolling */
        overflow-y: auto; /* Enable vertical scrolling */
    }

    .itinerary-item {
        padding: 12px; /* Slightly adjust for mobile */
    }

    .day-heading {
        font-size: 16px; /* Adjust font size for mobile */
    }

    .day-details p {
        font-size: 14px; /* Adjust font size for better readability on mobile */
    }
}

/* Style for paragraphs with bullets */
.day-details p {
    position: relative;
    padding-left: 20px; /* Space for bullet */
    margin-bottom: 10px; /* Space between paragraphs */
}

.day-details p::before {
    content: "•"; /* Bullet point */
    position: absolute;
    left: 0;
    top: 0;
    color: #0d6efd; /* Themed bullet color */
    font-size: 1.2em; /* Adjust bullet size */
    line-height: 1.2; /* Align bullet with text */
}

/* Fade-in animation for smooth content reveal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px; /* Distance from the bottom of the screen */
    left: 20px; /* Distance from the right side of the screen */
    width: 60px; /* Button width */
    height: 60px; /* Button height */
    background-color: #25d366; /* WhatsApp green */
    color: #fff; /* Icon color */
    border-radius: 50%; /* Circular shape */
    display: flex; /* Center-align icon */
    justify-content: center; /* Center-align horizontally */
    align-items: center; /* Center-align vertically */
    text-decoration: none; /* Remove underline */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Default subtle shadow */
    z-index: 1000; /* Stay on top */
    animation: floatWithShadow 2s infinite ease-in-out; /* Floating animation */
    transition: transform 0.3s ease-in-out; /* Smooth scale effect on hover */
}

/* Hover Effect */
.floating-whatsapp:hover {
    transform: scale(1.2); /* Slightly bigger when hovered */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Icon Inside the Button */
.floating-whatsapp i {
    font-size: 40px; /* Icon size */
    transition: font-size 0.3s ease-in-out; /* Smooth animation for size */
}

/* Floating Animation */
@keyframes floatWithShadow {
    0% {
        transform: translateY(0); /* Start at original position */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Default shadow */
    }
    50% {
        transform: translateY(-10px); /* Float up */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    }
    100% {
        transform: translateY(0); /* Return to original position */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Strong shadow when down */
    }
}

/* Make Icon Bigger When Moving Down */
.floating-whatsapp:hover i {
    font-size: 35px; /* Increase icon size on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px; /* Slightly smaller on mobile */
        height: 50px;
        bottom: 35px;
        right: 15px;
    }

    .floating-whatsapp i {
        font-size: 34px; /* Adjust icon size */
    }
}

.asterisk {
    display: block; /* Makes each item appear on a new line */
    margin-left: 20px; /* Indentation for better visibility */
}


/* Prevent text selection and change cursor to not-allowed */
body {
    -webkit-user-select: none; /* Disable text selection for Safari */
    -moz-user-select: none; /* Disable text selection for Firefox */
    -ms-user-select: none; /* Disable text selection for Internet Explorer */
    user-select: none; /* Disable text selection for modern browsers */
}

/* Optionally, apply this to specific elements if needed */
.protected-text {
    -webkit-user-select: none; /* Disable text selection for Safari */
    -moz-user-select: none; /* Disable text selection for Firefox */
    -ms-user-select: none; /* Disable text selection for Internet Explorer */
    user-select: none; /* Disable text selection for modern browsers */
    cursor: not-allowed; /* Change cursor to 'not-allowed' */
}

/*back to top*/
.back-to-top {
    position: fixed;
    bottom: 30px; /* Distance from the bottom of the screen */
    right: 20px; /* Distance from the right side of the screen */
    width: 50px; /* Button width */
    height: 50px; /* Button height */}

    /* Icon Inside the Button */
.back-to-top i {
    font-size: 28px; /* Icon size */
    transition: font-size 0.3s ease-in-out; /* Smooth animation for size */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .back-to-top {
        width: 50px; /* Slightly smaller on mobile */
        height: 50px;
        bottom: 35px;
        right: 15px;
    }

    .back-to-top i {
        font-size: 28px; /* Adjust icon size */
    }
}

/* Custom styles for the gallery */
.img-fluid {
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Custom styles for the gallery */
.gallery-img {
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Normal hover effect */
.gallery-img:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

/* Simulate the hover effect when the page loads */
.gallery-img.initial-hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

/*nav gallery*/
.img-fixed {
    width: 100%;
    height: 60px;
    object-fit: cover;
}


/*body of destination*/

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section img {
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: .5s ; /* Smooth zoom effect */
}

.section-content {
    width: 55%;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
/* Zoom-in effect on hover */
        .section img:hover {
            transform: scale(1.1); /* Zoom in by 10% */
        }

        /* Terms & Conditions Styling */
.container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color:#14141F;
}

.container h4 {
    color: #007bff; /* Blue heading */
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.bg-light {
    background-color: #f8f9fa;
    line-height: 1.8;
}

.bg-light p {
    font-size: 1.1rem;
    color: #555;
}

.bg-light a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.bg-light a:hover {
    text-decoration: underline;
}

.shadow-sm {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

strong {
    font-weight: 600;
}

/* Cancellation Policy Styling */
.table {
    border-collapse: collapse;
}

.table td, .table th {
    border: 1px solid #ddd !important; /* Add lines between all cells */
    padding: 15px;
    vertical-align: middle;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis for overflow */
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9; /* Alternating row colors */
}

.table tbody tr:hover {
    background-color: #f1f1f1; /* Hover effect */
}

.table thead {
    background-color: #007bff;
    color: white;
}

.table-responsive {
    overflow-x: auto; /* Ensure table is responsive on smaller screens */
    -webkit-overflow-scrolling: touch;
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9; /* Light background for contrast */
}

/* Feedback tab container */
/* Feedback tab container */
.feedback-box {
    position: fixed;
    right: 0; /* Fix to the right side of the screen */
    top: 40%; /* Vertically centered */
    z-index: 1000;
    animation: shake 2s infinite; /* Add shaking animation */
}

/* Feedback tab */
.feedback-box .tab {
    background-color: #6c5ce7; /* Vibrant purple */
    color: white;
    padding: 12px 8px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    writing-mode: vertical-rl; /* Vertical text */
    transform: rotate(180deg);
    border-radius: 0 5px 5px 0; /* Rounded edges */
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Hover effect for the tab */
.feedback-box .tab:hover {
    background-color: #4e44b2; /* Darker purple on hover */
    transform: rotate(180deg); /* Ensure it remains rotated */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

/* Shaking animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
}


/* Feedback form */
.feedback-form {
    display: none; /* Initially hidden */
    position: fixed;
    top: 30%; /* Slightly above center */
    right: 70px; /* Position left of the tab */
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    padding: 25px;
    width: 380px;
    max-height: 450px; /* Set max height for scrollability */
    overflow-y: auto; /* Scrollable content */
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideIn 0.4s ease; /* Smooth slide-in animation */
}

/* Slide-in animation for the form */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Triangle pointer */
.feedback-form::before {
    content: '';
    position: absolute;
    top: -10px; /* Slightly above the form */
    right: 20px; /* Adjusted for aesthetics */
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #f9f9f9 transparent; /* Triangle pointing down */
}

/* Form Title */
.feedback-form h2 {
    margin: 0 0 15px;
    text-align: center;
    color: #333;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Form labels */
.feedback-form label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
    font-size: 14px;
    font-weight: bold;
}

/* Input and textarea styling */
.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

/* Input focus effect */
.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: #6c5ce7; /* Highlight color */
    outline: none;
    box-shadow: 0 0 5px rgba(108, 92, 231, 0.5); /* Subtle glow */
}

/* Submit Button */
.feedback-form button {
    background-color: #6c5ce7; /* Vibrant purple */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Submit Button Hover Effect */
.feedback-form button:hover {
    background-color: #4e44b2; /* Darker shade on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Word Count Display */
.feedback-form #wordCountDisplay {
    font-size: 12px;
    color: #777;
    text-align: right;
    margin-top: -10px;
}

/* Responsive Design */
@media (max-width: 500px) {
    .feedback-form {
        width: 90%; /* Adjust width for smaller screens */
        right: 5%; /* Keep some margin from the right */
    }
}


/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.modal button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.modal button:hover {
    background-color: #0056b3;
}




.download-share-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15px; /* Moves the icons slightly upwards */
    position: relative;
}

.icon-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Adjusting individual icon positions */
.icon-wrapper img {
    width: 35px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect for individual icons */
.icon-wrapper img:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

