/* ===== General Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== Navbar ===== */
nav.ayan {
  background: #222;
  padding: 12px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ayan a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.ayan a:hover {
    color: orange;
}

.ayan i {
    vertical-align: middle;
}

.checked {
    color: orange;
}

/* ===== Filter Bar ===== */
.filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.filter-bar input[type="text"], 
.filter-bar select {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

.filter-bar input[type="text"]:focus, 
.filter-bar select:focus {
    border-color: orange;
}

/* ===== Vehicles Grid ===== */
.vehicle-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px 40px 20px;
}

.card {
    background-color: #f5ccea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h2 {
    padding: 10px 0 5px 0;
    font-size: 18px;
}

.card .details {
    padding-bottom: 15px;
    font-size: 14px;
    color: #555;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
    }
}

body.vec {
  background: linear-gradient(135deg, #eaccf2, #dfe9f3);
 
}
