.package-item img {
    width: 100%; /* Ensures the image takes the full width of its container */
    height: 200px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensures the image covers the area, cropping as necessary */
}


.image-container {
    /* Adjust the height and width as needed */
    width: 100%; /* Ensures the container takes the full width */
    height: 300px; /* Fixed height for all image containers */
    overflow: hidden; /* Hide overflow to maintain aspect ratio */
    position: relative; /* To position child elements */
}

.image-container img {
    /* Ensure the image covers the container */
    width: 100%;
    height: 100%; /* Set to fill the container height */
    object-fit: cover; /* Ensures the image covers the container */
    object-position: center; /* Center the image within the container */
}

.bg-white {
    /* Ensure background is solid for text contrast */
    background-color: white;
}

.hero-header {
    background-size: cover;
    background-position: center;
    height: 70vh; /* Adjust as needed */
}

.team-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-item img {
    transition: transform 0.3s;
}

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



/* gallery.css */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 250px; /* Set a fixed height for all gallery items */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area */
    transition: transform 0.3s ease-in-out;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 15px 15px;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}












.destination-image {
    display: block;
    width: 100%; /* Full width of the card */
    height: 250px; /* Fixed height for all images */
    object-fit: cover; /* Maintains aspect ratio */
    object-position: center; /* Centers the image */
}

img {
    height: auto;
    max-width: 100%; /* Prevents overflow */
}



.destination-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.destination-card a {
    text-decoration: none; /* Removes underline from links */
}

.btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3; /* Change to a darker shade on hover */
    color: white; /* Maintain contrast on hover */
}



.booking-form {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
}

.booking-form .form-label {
    font-weight: bold; /* Bold labels */
}

.booking-form .form-control {
    border-radius: 5px; /* Rounded input fields */
}

.booking-form button {
    font-size: 18px; /* Increase button text size */
    font-weight: bold; /* Bold button text */
}


.affiliated-img {
    width: 70%;
    height: 70px;
    object-fit: contain; /* Preserves the full content of the image without cropping */
    border-radius: 5px;
}


.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

.testimonial-message {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}
