    .custom-btn {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    margin-right: 5px;
}

.book-btn {
    background-color: #28a745; /* Green */
}
.button-container {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }
    .custom-btn {
        flex: 1;
        text-align: center;
        padding: 10px;
        margin: 0 5px;
    }
    .lead{
        color: black;
    }
    @media (max-width: 768px) {
    #contact-us .row {
        flex-direction: column;
    }

    #contact-us .col-md-5,
    #contact-us .col-md-6 {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }

    #contact-us h2 {
        font-size: 24px;
    }

    #contact-us h4 {
        font-size: 20px;
    }

    #contact-us p {
        font-size: 16px;
    }

    #contact-us input,
    #contact-us textarea {
        font-size: 16px;
    }

    .custom-btn {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        background-color: #6baeff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 10px;
    }
}

.bus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.bus-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.bus-item img.tall {
    height: 208px;
    /* object-fit: contain; */
}


.bus-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 480px) {
    #contact-us {
        padding: 20px 10px;
    }

    .custom-btn {
        width: 100%;
        text-align: center;
    }
}@media (max-width: 768px) {
    .bus-item {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .bus-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

    .list-group-item.active {
        font-weight: bold;
        border-color: #006E74 ;
    }

    .book-now-btn {
    background-color: #006E74;
    color: white;
    transition: background-color 0.3s ease;
    border: none;
}

.book-now-btn:hover {
    background-color: #00868e; 
    color: white;
}