.page-header {
    background: url(../images/Fleets_packag.png);
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}
.page-header-detail{
    background: url(../images/All-packages.png);
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}


.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 2;
}

.page-header__inner h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.thm-breadcrumb {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.thm-breadcrumb li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
}

.thm-breadcrumb li a {
    color: #fff;
}

.thm-breadcrumb li span {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.package-card {
    border-radius: 15px;
    height: 100%; /* Ensure all cards in a row have the same height */
    display: flex;
    flex-direction: column;
}

.package-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Start from top */
    align-items: center;
    padding: 30px 20px;
    flex-grow: 1;
}

.card-title{
    color: var(--accent-yellow);
    font-size: 32px;
    font-weight: 700;
}
.package-card .card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-card .package-img-container {
    height: 180px; /* Fixed height for image container */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.package-card .package-img-container img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.package-card .card-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: inherit;
}

.package-card .btn {
    margin-top: auto; /* Push button to bottom */
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: capitalize;
}

.bg-yellow {
    background-color: #ffd533 !important;
    color: #000 !important; /* Ensure black text on yellow background */
}

.bg-dark {
    background-color: #1a1d20 !important;
    color: #fff !important;
}

.packages-grid {
    margin-top: 50px;
    margin-bottom: 50px;
}



.package-detail-card {
    border: 3px solid #ffd533;
    box-shadow: 0 4px 8px rgb(242, 238, 13);
    border-radius: 15px;
}

.package-detail-card .original-price {
    text-decoration: line-through;
    color: #dc3545;
    font-size: 18px;
    font-weight: 600;
}

.package-detail-card .current-price {
    font-size: 24px;
    font-weight: 700;
    color: #ffd533;
}

.vehicle-image-container {
    position: relative;
    text-align: center;
}

.vehicle-image-bg {
    position: absolute;
    top: 50%;
    left: 67%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 45%;
}

.vehicle-image-main {
    position: relative;
    z-index: 2;
    width: 80%;
    margin-top: 65px;
}


.vehicle-title {
    font-family: 'Bayon', sans-serif;
    position: absolute;
    top: 30px; /* adjust this value */
    left: 40px;
    transform: none;
    z-index: 3;
    color: var(--accent-yellow);
    font-size: 50px;
    font-weight: 600;
}

.vehicle-capacity {
    position: relative;
    padding-top: 40px;
    z-index: 3;
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.package-description p {
    border-bottom: 2px solid #ffd533;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.package-description p:last-child {
    border-bottom: none;
}