body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}
.slider-container {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}
.swiper-slide {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

}
.trip-head img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.trip-details {
    padding: 15px;
    text-align: center;
}
.trip-details h4 {
    margin: 10px 0;
}
.trip-details a {
    display: inline-block;
    padding: 10px 20px;
    background: orange;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.trip-details a:hover {
    background: #0056b3;
}
.swiper-wrapper {
    transition-timing-function: ease-in-out !important;  /* Smooth animation */
}
