* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


body {
  background-color: #0d0d0d;
  color: white;
  font-family: 'Inter', sans-serif;
}

.form-control,
.form-select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
}

.form-control::placeholder {
  color: #d7d7d7;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-bottom: 1px solid #f0ad4e;
}

.btn-send {
  border: 1px solid #f0ad4e;
  color: white;
  padding: 8px 22px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background-color: #f0ad4e;
  color: black;
}

.card-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;
}

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

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



/* content for left and right side */

.left-text h1 {
  font-size: 35px;
  line-height: 1.4;
  font-weight: 500;
}

.right-text p {
  font-size: 15px;
  color: #dcdcdc;
  line-height: 1.8;
}


/* container-car*/

.container-car {
  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;
}


/*content*/


.content {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0e1313;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
}

.subhead {
  color: #c9a86a;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
}

.head {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 48px;
}

.types {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.type {
  flex: 1 1 calc(50% - 2rem);
  min-width: 280px;
}

.type h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}

.type p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
}

/* content img */


.customer-section {
  background-color: #000;
  padding: 50px 0;
  color: white;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  justify-content: center;
}

.car-img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.same2 {
  padding: 10px;
  gap: 10px;
}

.review-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.review-text p {
  font-size: 16px;
  line-height: 1.6;
}

@media (Max-width:854px) {
  .customer-section {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
  }
}

/* footer content */

.footer {
  background-color: #0e1311;
  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;
}

.footer a {
text-decoration: none;
color: #fff;
text-align: start;
}