/*=========================================
        HIGHLAND NORTHEAST TAXI SECTION
=========================================*/

.taxi-section{
    padding:80px 0;
    background:#f7f9fc;
}

/*=========================================
            SECTION HEADING
=========================================*/

.taxi-heading{
    background:#0056b3;
    border-radius:12px;
    padding:50px 40px;
    text-align:center;
    margin-bottom:50px;
}

.taxi-heading span{
    display:block;
    color:#ff9800;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:12px;
}

.taxi-heading h2{
    color:#ffffff;
    font-size:42px;
    font-weight:700;
    text-transform:uppercase;
    margin:0 0 20px;
    line-height:1.2;
}

.taxi-heading p{
    max-width:820px;
    margin:0 auto;
    color:#eef5ff;
    font-size:17px;
    line-height:30px;
}

/*=========================================
              VEHICLE CARD
=========================================*/

.vehicle-card{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .3s ease;
    margin-bottom:30px;
    border:1px solid #eeeeee;
}

.vehicle-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/*=========================================
             VEHICLE IMAGE
=========================================*/

.vehicle-image{
    text-align:center;
    padding:10px 15px 0;
    margin-bottom:10px;
}

.vehicle-image img{
    max-width:100%;
    max-height:170px;      /* Adjust as needed */
    width:auto;
    height:auto;
    display:block;
    margin:0 auto;
}

/*=========================================
               TAG
=========================================*/

.vehicle-tag{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin:20px 0 15px 20px;
}

/*=========================================
            CARD CONTENT
=========================================*/

.vehicle-content{
    padding:10px 20px 20px;
}

.vehicle-content h3{
    text-align:center;
    color:#0056b3;
    font-size:22px;
    font-weight:700;
    margin:0 0 15px;
}

.vehicle-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.vehicle-content ul li{
    padding:10px 0;
    color:#666666;
    font-size:15px;
    border-bottom:1px solid #eeeeee;
}

.vehicle-content ul li:last-child{
    border-bottom:none;
}

/*=========================================
             BUTTON
=========================================*/

.vehicle-btn{
    display:block;
    text-align:center;
    margin-top:25px;
    background:#0056b3;
    color:#ffffff;
    padding:14px 20px;
    border-radius:6px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.vehicle-btn:hover{
    background:#ff9800;
    color:#ffffff;
    text-decoration:none;
}

/*=========================================
             RESPONSIVE
=========================================*/

@media (max-width:991px){

.taxi-heading{
    padding:40px 25px;
}

.taxi-heading h2{
    font-size:34px;
}

.vehicle-image img{
    height:200px;
}

}

@media (max-width:767px){

.taxi-section{
    padding:60px 0;
}

.taxi-heading{
    padding:35px 20px;
}

.taxi-heading span{
    font-size:13px;
}

.taxi-heading h2{
    font-size:28px;
}

.taxi-heading p{
    font-size:15px;
    line-height:26px;
}

.vehicle-content{
    padding:20px;
}

.vehicle-content h3{
    font-size:20px;
}

.vehicle-image img{
    height:auto;
}

.vehicle-btn{
    padding:12px;
}

}