
.cars{
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.mcar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* responsive grid */
    gap: 20px;
    padding: 40px;
    
}

.carsi {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.carsi:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.carsi img {
    width: 100%;
    height: 200px; /* uniform image height */
    object-fit: cover; /* keeps proportions without stretching */
}

.carsi p:first-of-type {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 15px 15px 5px;
    color: #222; /* title darker */
}

.carsi p:last-of-type {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 15px 15px;
    color: #555; /* lighter subtitle */
}
