.left h1{
  text-align: center;
}

.container-car {
  background-color: #111;
  color: white;
  padding: 40px;
}

.container-car1 {
  background-color: #111;
  color: white;
  padding: 40px;
}

.car-model {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.car-model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

.car-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.car-model:hover .car-overlay {
  opacity: 1;
}

.car-overlay h4 {
  color: #f0ad4e;
}

.car-overlay h5 {
  margin-bottom: 10px;
  font-size: 24px;
}

.car-overlay p {
  font-size: 16px;
  margin-bottom: 15px;
}

        /* footer content */

        .footer {
            background-color: #070908;
            color: #fff;
            padding: 60px 0;
        }

        .footer h5 {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer .luxedrive {
            color: #d4a75e;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .footer .call {
            color: #d4a75e;
            margin-top: 20px;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
            letter-spacing: 2px;
            font-size: 14px;
            color: #ccc;
        }

        .footer ul li:hover {
            color: #fff;
            cursor: pointer;
        }

        .footer p {
            color: #bbb;
            font-size: 15px;
            line-height: 1.6;
        }