
        

        .car-card {
            background-color: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .car-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(231, 6, 6, 0.1);
        }

        .car-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .car-card .card-body {
            padding: 1rem;
        }

        .car-card h5 {
            margin: 0;
        }

        .launch-date {
            color: #a0a0a0;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
        }

        .btn-dark-outline {
            background-color: transparent;
            border: 1px solid #666;
            color: #fff;
            transition: 0.3s;
        }

        .btn-dark-outline:hover {
            background-color: #ffffff15;
            border-color: #fff;
        }

        .car-container {
    width: 100%;
    height: 220px;
    background-image: url('images/audi-001.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    border-radius: 12px 12px 0 0;
}
