.elementor-84 .elementor-element.elementor-element-3a9b644{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-84 .elementor-element.elementor-element-d80f9e1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-84 .elementor-element.elementor-element-c5aa51a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-84 .elementor-element.elementor-element-697d479{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6f11042 */body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f9fc;
  color: #222;
}

.vehicle-section {
  padding: 60px 20px;
  background-color: #f5f9fc;
}

.vehicle-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.vehicle-text {
  flex: 1;
  max-width: 600px;
}

.vehicle-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.highlight {
  color: #e60000;
}

.vehicle-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.vehicle-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  min-width: 130px;
}

.stat-box h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin: 0;
}

.stat-box p {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0 0;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, #002366, #e60000);
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.vehicle-image {
  flex: 1;
  max-width: 500px;
}

.vehicle-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Optional: Mobile responsiveness */
@media (max-width: 768px) {
  .vehicle-container {
    flex-direction: column;
    text-align: center;
  }

  .vehicle-text, .vehicle-image {
    max-width: 100%;
  }

  .vehicle-stats {
    justify-content: center;
  }
  
  .vehicle-listing {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.filters {
  display: flex;
  gap: 10px;
}

.filter {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.filter.active {
  background: linear-gradient(to right, #002366, #e60000);
  color: #fff;
  border: none;
}

.search input {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 250px;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f380d6b *//* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #1e1e1e;
  padding: 2rem;
}

/* Vehicle section layout */
.vehicle-section {
  max-width: 1200px;
  margin: 0 auto;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card styles */
.vehicle-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-5px);
}

/* Top badge and rating */
.card-top {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.badge {
  background-color: #d90000;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
}

.rating {
  background-color: #ffebc6;
  color: #000;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Image section */
.card-image {
  height: 150px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  color: #999;
  font-size: 1rem;
  font-style: italic;
}

/* Body of card */
.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tag {
  background-color: #eee;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #333;
  display: inline-block;
  width: fit-content;
}

.card-body h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #1e1e1e;
}

/* Specs */
.specs {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #555;
}

.specs span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.features span {
  background-color: #f0f0f0;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* Buttons */
.card-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.btn {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.test-drive {
  background: linear-gradient(to right, #001f91, #d90000);
  color: white;
}

.view-details {
  background: #f4f4f4;
  color: #333;
}

.test-drive:hover {
  opacity: 0.9;
}

.view-details:hover {
  background-color: #ddd;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5f78115 */body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
}

.why-tvs-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #f0f4f8;
}

.why-tvs-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #222;
}

.highlight {
  color: #d90000;
}

.subheading {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.why-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2rem;
  color: #00338d;
  margin-bottom: 1rem;
  border: 2px solid #00338d;
  width: 48px;
  height: 48px;
  line-height: 44px;
  border-radius: 50%;
  display: inline-block;
}

.why-card h3 {
  margin: 0.5rem 0;
  color: #111;
}

.why-card p {
  font-size: 0.9rem;
  color: #444;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5345abe */body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
}

.why-tvs-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #f0f4f8;
}

.why-tvs-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #222;
}

.highlight {
  color: #d90000;
}

.subheading {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.why-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2rem;
  color: #00338d;
  margin-bottom: 1rem;
  border: 2px solid #00338d;
  width: 48px;
  height: 48px;
  line-height: 44px;
  border-radius: 50%;
  display: inline-block;
}

.why-card h3 {
  margin: 0.5rem 0;
  color: #111;
}

.why-card p {
  font-size: 0.9rem;
  color: #444;
}/* End custom CSS */