h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

.navbar {
  box-shadow: none !important;
}

.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-title {
  font-size: 1.5rem;
  font-weight: bolder;
}

.price-box {
  background: hsla(0, 0%, 96%, 1);
  border: 1px solid hsla(0, 0%, 85%, 1);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
  border-radius: 3rem;
}

.price_category {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price_category .currency {
  background-color: #F5F5F5;
  height: 50px;
  width: 100%;
  padding-left: 20px;
  padding-right: 50px;
  border-radius: 3rem;
  font-weight: bold;
  color: black;
}

.price_category .currency:focus {
  outline: none;
}

.main-container {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsla(0, 0%, 100%, 1);
  box-shadow: 0px 4px 30px 0px hsla(0, 0%, 95%, 1);
}

.main-image-display {
  height: 410px;
  border-radius: 1rem;
  overflow: hidden;
}

.main-image-display img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery {
  position: relative;
}

.gallery-carousel > img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-carousel > img:hover {
  transform: scale(1.05);
}

/* .gallery-carousel .fa-chevron-left {
  background-color: red;
  position: absolute;
  top: 10;
  left: 0;
} */

.separator {
  height: 1px;
  background-color: lightgray;
  margin-block: 1rem;
}

.detail-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-line > p {
  text-transform: capitalize;
}

#car-details .detail-line {
  margin-block: 0.87rem;
}

.detail-line > p:first-child {
  font-weight: bold;
  color: black;
}

.detail-line > p:last-child {
  color: #6185a5;
}

.info-button,
.offer-button {
  background: red;
  width: 100%;
  outline: none;
  border: none;
  color: white;
  padding-block: 1rem;
  border-radius: 0.5rem;
  font-weight: bolder;
  font-size: 1rem;
  transition: all 0.3s;
}

.info-button:hover,
.offer-button:hover {
  opacity: 0.7;
}

.offer-button {
  background-color: black;
}

.feature-container {
  margin: 20px auto;
}

.offer-button:disabled {
  background-color: #ccc;
}

.feature-option {
  background: hsla(0, 0%, 96%, 1);
  border: 1px solid hsla(0, 0%, 85%, 1);
  height: 50px;
  padding-inline: 15px;
  border-radius: 3rem;

  display: flex;
  align-items: center;
}

.feature-option-icon {
  height: 20px;
  width: 20px;
  background-color: red;
  border-radius: 50%;

  margin-right: 0.5rem;

  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-option-icon i {
  font-size: 10px;
  color: white;
}

.feature-option > span {
  color: black;
  font-size: 0.9rem;
}

.form-container {
  background-color: #f2f6ff; /* light blue background */
  margin: 20px auto;
}

.offer-form h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.form-group label {
  font-weight: bold;
  color: black;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-textarea textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 1rem;
  outline: none;
}

.form-textarea {
  margin-bottom: 15px;
}

.form-textarea label {
  margin-bottom: 5px;
  font-weight: bold;
  color: black;
}

.form-group input[type="radio"] {
  /* margin-right: 5px; */
}

.contact-options {
  display: flex;
  gap: 20px;
  align-items: center;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group textarea {
  resize: none;
}

.nav-tabs {
  border-radius: 10px !important;
  padding: 8px !important;
  overflow: hidden !important;
  border: none !important;
  background-color: white !important;
}

.form-nav-link {
  border: none !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
  border-radius: 10px !important;
}

.form-nav-link:hover {
  background-color: transparent !important;
  /* opacity: 0.2 !important; */
}

.form-nav-item .active {
  background-color: red !important;
  color: white !important;
}
