.hero-section {
    background-color: #8a7a63;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.content-section {
    background-color: #fff !important;
    padding: 30px 0 60px;
}

.category-tabs {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
}

.category-tab {
    background-color: transparent;
    color: #333;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-tab.active {
    background-color: #d5a76b;
    color: white;
    border-radius: 5px;
}

.category-tab:hover:not(.active) {
    background-color: #f5f5f5;
}

#vehicles-container {
    justify-content: space-evenly;
}

.vehicle-item {
    margin-top: 30px;
    margin-bottom: 30px;
}

.vehicle-card {
    background-color: #EFEFEF;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.vehicle-header img {
    width: 70%;
    height: 180px;
    object-fit: cover;
}

.vehicle-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.vehicle-header {
    padding-bottom: 0;
    flex: 1;
    display: flex;
    justify-content: center;
}

.vehicle-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-badge {
    background-color: #d5a76b;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 5px;
    margin-top: 5px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

.tag-badge {
    background-color: #8a7a63;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 12px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
}

.book-now-btn {
    background-color: transparent;
    color: #000;
    border: none;
    font-weight: 600;
    /* float: right; */
    margin: 15px;
    margin-top: 0;
    display: flex;
    align-items: center;
    align-self: flex-end;
}

.book-now-btn .arrow {
    background-color: #d5a76b;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 14px;
    transform: rotate(-45deg);
}

.nav-arrows {
    display: flex;
    align-items: center;
}

.nav-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: #d5a76b;
    color: white;
}

.nav-arrow.active {
    background-color: #d5a76b;
    color: white;
}

.fleet-illustration {
    text-align: center;
}

.categories-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.category-tabs-container {
    overflow: hidden;
    width: 100%;
    margin-right: 90px;
    /* Space for arrows */
}

.category-tabs {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
    justify-content: flex-start;
    /* Align tabs to the left */
    width: max-content;
    /* Allow tabs to expand naturally */
}

.nav-arrows {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.nav-arrow {
    cursor: pointer;
    padding: 0.5rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 2;
    transition: all 0.3s ease;
}

.nav-arrow:hover:not(.disabled) {
    background-color: #d5a76b;
    color: white;
}

.nav-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-arrow {
    margin-right: 1rem;
}

.next-arrow {
    margin-left: 1rem;
}