.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    height: 60%;
}
.slide-content h1 {
    padding-top: 4rem;
    font-size: 8rem;
    margin: 0;
    font-weight: bold;
}

.slide-content h2 {
    font-size: 5.3rem;
    margin: 0;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.5rem;
    margin: 10px 0;
}


/* Responsive Design */
@media (max-width: 780px) {
    .header{
        height: 80%;
    }
    .slide-content {
        width: 90%;
    }

    .slide-content h2 {
        font-size: 3rem;
        margin: 0;
        font-weight: bold;
    }

    .slide-content h1 {
        padding-top: 4rem;
        font-size: 2rem;
        margin: 0;
        font-weight: bold;
    }
    .slide-content p {
        font-size: 0.875rem;
    }

    
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media(min-width: 992px){
    .slide-content h1 {
        padding-top: 4rem;
        font-size: 7rem;
        margin: 0;
        font-weight: bold;
    }
    .slide-content h2 {
        font-size: 5rem;
        margin: 0;
        font-weight: bold;
    }
}
@media(max-width: 992px){
    .slide-content h1 {
        padding-top: 1rem;
        font-size: 6rem;
        margin: 0;
        font-weight: bold;
    }
    .slide-content h2 {
        font-size: 3.9rem;
        padding-top: 0px;
        margin: 0;
        font-weight: bold;
    }
}


@media (max-width: 500px){
    .City-to-City-btn{
        font-size: 3.5rem !important;
    }
    .header-inner {
        padding-top: 9rem;
    }
    .section-head h2 {
        font-size: 3rem;
    }
    .text-lg {
        font-size: 1.5rem;
    }
    .navbar-brand img{
        width: 100px;
    }
    .navbar{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 11%;
        padding: 3.2rem 0;
        z-index: 999;
    }
}

@media (max-width: 450px){
    .navbar-collapse{
        width: 50%;
    }
}

/* ======================= gallery ======================= */

.gallery-section {
    padding: 20px;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 40px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-container img {
    width: 100%;
    object-fit: cover;
    height: 600px;
    display: block;
    border-radius: 8px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .gallery-container img{
        height: 350px;
    }
    .gallery-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .gallery-container img{
        height: 450px;
    }
    .gallery-item {
        flex: 1 1 calc(100% - 20px);
    }
}