* {
  margin: 0;
  padding: 0;
}

.navbar-brand {
  padding-left: 150px;
}

.nav-item .nav-link {
  text-transform: uppercase;
}

.navSearchDiv {
  background-color: red;
  padding: 30px;
}

.nav-link.active {
  color: red !important;
  font-weight: bold;
  border-bottom: 2px solid red;
}

.carousel-indicators button {
  background-color: transparent !important;
  border: 1px solid black !important;
  border-radius: 50%;
  width: 10px !important;
  height: 10px !important;
}

.carousel-indicators button.active {
  background-color: red !important;
}

.navbarr {
  margin-top: 30px;
  margin-bottom: 30px;
}

.navbarr ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0;
}

.navbarr ul li a {
  color: black;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.navbarr ul li a.active {
  color: black;
}

.navbarr ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 2px;
}

.boxes {
  margin-top: 20px;
  background: rgb(231, 230, 228);
  padding: 40px 0;
}

.box {
  background-color: white;
  overflow: hidden;
  height: 100px;
}

.box:hover {
  transform: scale(1.03);
}

.iconDiv {
  padding: 20px;
  background-color: black;
  color: white;
  width: 60px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box .dealer:hover {
  background-color: red;
  color: black;
}

.sectwoimg {
  width: 80%;
  display: block;
  margin: 0 auto;
}

 footer {
      background-color: #1d1d1d;
      color: white;
      padding: 40px 20px;
    }
    .footer-logo img {
      width: 80px;
    }
    .footer-heading {
      font-weight: bold;
      margin-top: 20px;
      margin-bottom: 10px;
    }
    .footer a {
      color: #ccc;
      text-decoration: none;
    }
    .footer a:hover {
      color: white;
      text-decoration: underline;
    }
    .footer hr {
      border-color: #444;
    }
    .social-icons a {
      color: white;
      margin-right: 10px;
      font-size: 18px;
    }
    .whatsapp-connect {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #1d1d1d;
      color: white;
      border-radius: 30px;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
    }

@media (max-width: 992px) {
  .navbar-brand {
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .navbarr ul {
    flex-direction: column;
    gap: 20px;
  }
}