*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    
   
}
.logo-img{
    margin-bottom: 40px;
}

.car-details {
    text-align: center;
    padding: 50px 0;
    margin-top: 2rem;
    ;
}

.car-details .container {
    max-width: 1200px;
   
    margin: 0 auto;
    padding: 0 20px;
}

.car-details h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 20px;
}

.car-info {
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;  /* Center vertically */
    gap: 50px;  /* Space between image and table */
    margin-bottom: 30px;
    flex-wrap: wrap;  /* Allow wrapping for responsive design */
   
}
  


.car-images{
    width: 25% !important;  /* Set image width */
    height: auto;  /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    display: block;
    cursor: pointer;
    transition: .7s ease-in-out; 
    border: 4px double  #73a00b;
}

.car-images:hover{
    width: 25% !important;
    height:auto ;
    transform: scale(1.4);
    cursor: pointer;
    border: 1.5px solid rgb(36, 34, 34);
    border-radius: 10px;
}

.car-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    
}

.car-table th, .car-table td {
    padding: 12px;
    border: 2px solid #2c2b2b;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    transition: box-shadow 0.3s ease;
    border: 2px solid ;
}

.car-table th {
    background-color: #73a00b ;
    font-weight: bold;
    color: white;
    font-size: 18px;
    font-weight: bolder;
    font-family: sans-serif;
    font-style: italic;
}

.car-table td {
    background-color: #73a00b ;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: sans-serif;
    font-style: italic;
}

.btn-buy {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-buy:hover {
    background-color: #0056b3;
}
